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
List<Map<String, String>> consignorOrderNoList = sendPhoneMap.get(consignorPhone);
this.addSmsSendPhoneInfo(sendPhoneMap, orderNo, orderMap, consignorPhone, consignorOrderNoList);
OrderConsigneeBackVO orderConsigneeDO = orderBackVO.getConsigneeVO();
String consigneePhone = orderConsigneeDO.getCountryCode() + StrUtil.DASHED + orderConsigneeDO.getPhone();
List<Map<String, String>> consigneeOrderNoList = sendPhoneMap.get(consigneePhone);
this.addSmsSendPhoneInfo(sendPhoneMap, orderNo, orderMap, consigneePhone, consigneeOrderNoList);
if (Objects.nonNull(orderConsigneeDO)) {
String consigneePhone = orderConsigneeDO.getCountryCode() + StrUtil.DASHED + orderConsigneeDO.getPhone();
List<Map<String, String>> consigneeOrderNoList = sendPhoneMap.get(consigneePhone);
this.addSmsSendPhoneInfo(sendPhoneMap, orderNo, orderMap, consigneePhone, consigneeOrderNoList);
}
}
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