|
|
@@ -302,7 +302,7 @@ public class FsStoreOrderServiceImpl implements IFsStoreOrderService {
|
|
|
|
|
|
//ERP 类型到服务的映射
|
|
|
private Map<Integer, IErpOrderService> erpServiceMap;
|
|
|
-
|
|
|
+ @Autowired
|
|
|
private IFsStoreOrderScrmService orderScrmService;
|
|
|
@PostConstruct
|
|
|
public void initErpServiceMap() {
|
|
|
@@ -2235,9 +2235,9 @@ public class FsStoreOrderServiceImpl implements IFsStoreOrderService {
|
|
|
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
+ logger.info("dto对象:{}", dto);
|
|
|
List<FsStoreOrderScrm> orders2 = orderScrmService.selectFsStoreOrderListByDeliveryId(dto.getLogisticCode());
|
|
|
- if (orders != null) {
|
|
|
+ if (orders2 != null) {
|
|
|
for (FsStoreOrderScrm order : orders2) {
|
|
|
logger.info("订单信息:" + JSONUtil.toJsonStr(order));
|
|
|
logger.info("运单号:" + dto.getLogisticCode());
|