zss
2023-09-25 44a9b4729e058e75dfba2892803038ee91963d77
inventory-server/src/main/java/com/yuanchu/mom/Task/SyncOrder.java
@@ -29,8 +29,6 @@
    private static final String IMPORT_POL_RECEIVE = "http://192.168.20.47:8081/ErpServices/PurchaseReceiptService/importPolReceive";
    private static final String IFS_UPDATE="http://192.168.20.47:8081/ErpServices/PurchaseReceiptService/importPolReceive";
    private static final Map<String, String> GET_TOKEN_HEADER = new HashMap<>(2);
    private static final Map<String, Object> USER_INFO = new HashMap<>(4);
@@ -115,24 +113,5 @@
                .body(JsonUtil.jsonToString(importPolReceiveMap))
                .header("content-type", "application/json")
                .execute().body();
    }
    public static void main(String[] args) {
        BatchInfo batchInfo = new BatchInfo();
        batchInfo.setOrderNo("260984");
        batchInfo.setReleaseNo("1");
        batchInfo.setLineNo("1");
        batchInfo.setPartNo("A0190008000400");
        batchInfo.setLotBatchNo("*");
        batchInfo.setLocationNo("QC01");
        batchInfo.setQtyToReceive(1);
        batchInfo.setQtyToInspect(0);
        batchInfo.setReceiveCase("接收到来料区");
        List<BatchInfo> batchInfos = Arrays.asList(batchInfo);
        System.out.println(importPolReceive(batchInfos));
    }
    public static void ifsUpdate(){
    }
}