diff --git a/blade-service/logpm-factory/src/main/java/com/logpm/factory/mt/feign/MtOrderMainClinet.java b/blade-service/logpm-factory/src/main/java/com/logpm/factory/mt/feign/MtOrderMainClinet.java index 8bdd1cb29..9d9008fb4 100644 --- a/blade-service/logpm-factory/src/main/java/com/logpm/factory/mt/feign/MtOrderMainClinet.java +++ b/blade-service/logpm-factory/src/main/java/com/logpm/factory/mt/feign/MtOrderMainClinet.java @@ -27,15 +27,15 @@ public class MtOrderMainClinet implements IMtOrderMainClinet { @Override @GetMapping(TOP) public R sendOrderPackageScan(String orderPackageCode, String operationTime, String distributionContactId, String distributionContactCode, String destinationWarehouse) throws NoSuchAlgorithmException, JsonProcessingException { -// return mtFactoryDataService.qianshouScanForNewSystem(orderPackageCode,operationTime,distributionContactId,destinationWarehouse); - return null; + return mtFactoryDataService.qianshouScanForNewSystem(orderPackageCode,operationTime,distributionContactId,destinationWarehouse); +// return null; } @Override @PostMapping(SENDRECEIVEINFOBYNEWSYSTEM) public R sendReceiveInfoByNewSystem(MtReceiveDTO mtReceiveDTO) throws NoSuchAlgorithmException, JsonProcessingException { -// return mtFactoryDataService.sendReceiveInfoByNewSystem(mtReceiveDTO); - return null; + return mtFactoryDataService.sendReceiveInfoByNewSystem(mtReceiveDTO); +// return null; } }