Commit f5ab3539 authored by 332784038@qq.com's avatar 332784038@qq.com

出货短信发送bug修复

parent 364edcbe
...@@ -1633,9 +1633,11 @@ public class BoxServiceImpl extends AbstractService<BoxMapper, BoxDO> implements ...@@ -1633,9 +1633,11 @@ public class BoxServiceImpl extends AbstractService<BoxMapper, BoxDO> implements
List<Map<String, String>> consignorOrderNoList = sendPhoneMap.get(consignorPhone); List<Map<String, String>> consignorOrderNoList = sendPhoneMap.get(consignorPhone);
this.addSmsSendPhoneInfo(sendPhoneMap, orderNo, orderMap, consignorPhone, consignorOrderNoList); this.addSmsSendPhoneInfo(sendPhoneMap, orderNo, orderMap, consignorPhone, consignorOrderNoList);
OrderConsigneeBackVO orderConsigneeDO = orderBackVO.getConsigneeVO(); OrderConsigneeBackVO orderConsigneeDO = orderBackVO.getConsigneeVO();
String consigneePhone = orderConsigneeDO.getCountryCode() + StrUtil.DASHED + orderConsigneeDO.getPhone(); if (Objects.nonNull(orderConsigneeDO)) {
List<Map<String, String>> consigneeOrderNoList = sendPhoneMap.get(consigneePhone); String consigneePhone = orderConsigneeDO.getCountryCode() + StrUtil.DASHED + orderConsigneeDO.getPhone();
this.addSmsSendPhoneInfo(sendPhoneMap, orderNo, orderMap, consigneePhone, consigneeOrderNoList); List<Map<String, String>> consigneeOrderNoList = sendPhoneMap.get(consigneePhone);
this.addSmsSendPhoneInfo(sendPhoneMap, orderNo, orderMap, consigneePhone, consigneeOrderNoList);
}
} }
BoxDO boxDO = getBox(shipmentId); BoxDO boxDO = getBox(shipmentId);
// 货柜自编号 // 货柜自编号
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment