|
@@ -3,6 +3,7 @@ package com.ruoyi.ams.erp.service.impl;
|
|
|
import com.alibaba.fastjson.JSON;
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
|
import com.ruoyi.ams.asn.service.IWmsDocAsnHeaderService;
|
|
|
+import com.ruoyi.ams.erp.domain.ErpBarCodeList;
|
|
|
import com.ruoyi.ams.erp.domain.ErpOrderList;
|
|
|
import com.ruoyi.ams.erp.service.ISyncService;
|
|
|
import com.ruoyi.ams.order.service.IWmsDocOrderHeaderService;
|
|
@@ -14,6 +15,9 @@ import com.ruoyi.base.service.IBaseSkuService;
|
|
|
import com.ruoyi.base.service.IBaseSkuTypeService;
|
|
|
import com.ruoyi.base.service.ICodeSkuRelationshipService;
|
|
|
import com.ruoyi.common.exception.ServiceException;
|
|
|
+import com.ruoyi.common.utils.http.HttpRequest;
|
|
|
+import com.ruoyi.common.utils.http.HttpUtils;
|
|
|
+import lombok.extern.slf4j.Slf4j;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.data.redis.core.RedisTemplate;
|
|
|
import org.springframework.stereotype.Service;
|
|
@@ -24,10 +28,13 @@ import java.util.HashMap;
|
|
|
import java.util.List;
|
|
|
import java.util.Map;
|
|
|
|
|
|
+@Slf4j
|
|
|
@Service
|
|
|
public class SyncServiceImpl implements ISyncService {
|
|
|
|
|
|
-
|
|
|
+ public static final String ERP_SYNC_URL = "http://localhost:8089/warewms/erp/erpWriteData/erpSync";
|
|
|
+ public static final String ERP_WRITE_BACK_URL = "http://192.168.1.46:8089/warewms/erp/erpWriteData/writeData";
|
|
|
+ public static final String ERP_UPDATE_STATUS_URL = "http://192.168.1.46:8089/warewms/erp/erpWriteData/updateOrderStatus";
|
|
|
@Autowired
|
|
|
private IBaseSkuTypeService baseSkuTypeService;
|
|
|
@Autowired
|
|
@@ -60,14 +67,15 @@ public class SyncServiceImpl implements ISyncService {
|
|
|
|
|
|
@Transactional
|
|
|
@Override
|
|
|
- public void syncSku() {
|
|
|
+ public void syncSku() {
|
|
|
// 品号基础表
|
|
|
List<JSONObject> list = (List<JSONObject>) redisTemplate.opsForValue().get("erpProOb");
|
|
|
if (list != null && list.size() > 0) {
|
|
|
for (JSONObject jsonObject : list) {
|
|
|
BaseSkuType skuType = baseSkuTypeService.selectBaseSkuTypeByRemark(jsonObject.getString("imaType"));
|
|
|
if (skuType == null) {
|
|
|
- throw new ServiceException("物料类型不存在");
|
|
|
+ log.error("ERP同步表-物料类型不存在:"+jsonObject.getString("imaType"));
|
|
|
+ return;
|
|
|
}
|
|
|
BaseSku baseSku = new BaseSku();
|
|
|
baseSku.setCustomerId(Constant.CUSTOMER_ID);
|
|
@@ -111,33 +119,45 @@ public class SyncServiceImpl implements ISyncService {
|
|
|
ErpOrderList erpOrderList = JSON.parseObject(code.toJSONString(), ErpOrderList.class);
|
|
|
if (erpOrderList.getInout().equals("1")) {
|
|
|
List<ErpOrderList> current;
|
|
|
- if (inmap.get(erpOrderList.getOrderName() + erpOrderList.getOrderNo()) != null) {
|
|
|
- current = inmap.get(erpOrderList.getOrderName() + erpOrderList.getOrderNo());
|
|
|
+ if (inmap.get(erpOrderList.getOrderName()) != null ) {
|
|
|
+ current = inmap.get(erpOrderList.getOrderName());
|
|
|
} else {
|
|
|
current = new ArrayList<>();
|
|
|
}
|
|
|
current.add(erpOrderList);
|
|
|
- inmap.put(erpOrderList.getOrderName() + erpOrderList.getOrderNo(), current);
|
|
|
+ inmap.put(erpOrderList.getOrderName(), current);
|
|
|
} else {
|
|
|
List<ErpOrderList> current;
|
|
|
- if (outmap.get(erpOrderList.getOrderName() + erpOrderList.getOrderNo()) != null) {
|
|
|
- current = outmap.get(erpOrderList.getOrderName() + erpOrderList.getOrderNo());
|
|
|
+ if (outmap.get(erpOrderList.getOrderName()) != null) {
|
|
|
+ current = outmap.get(erpOrderList.getOrderName());
|
|
|
} else {
|
|
|
current = new ArrayList<>();
|
|
|
}
|
|
|
current.add(erpOrderList);
|
|
|
- outmap.put(erpOrderList.getOrderName() + erpOrderList.getOrderNo(), current);
|
|
|
+ outmap.put(erpOrderList.getOrderName(), current);
|
|
|
}
|
|
|
}
|
|
|
-// System.out.println(JSON.toJSONString(inmap));
|
|
|
for (Map.Entry<String, List<ErpOrderList>> entry : inmap.entrySet()) {
|
|
|
wmsDocAsnHeaderService.addOrUpdateErp(entry.getValue());
|
|
|
}
|
|
|
for (Map.Entry<String, List<ErpOrderList>> entry : outmap.entrySet()) {
|
|
|
wmsDocOrderHeaderService.addOrUpdateErp(entry.getValue());
|
|
|
}
|
|
|
-
|
|
|
redisTemplate.delete("erpOrderList");
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public boolean writeBack(List<ErpBarCodeList> erpBarCodeListList) throws Exception {
|
|
|
+ String jsonString = JSON.toJSONString(erpBarCodeListList);
|
|
|
+ String result = HttpRequest.postData(SyncServiceImpl.ERP_WRITE_BACK_URL, jsonString);
|
|
|
+ return result.equals("200");
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public boolean updaErpOrderStatus(ErpOrderList erpOrderList) throws Exception {
|
|
|
+ String jsonString = JSON.toJSONString(erpOrderList);
|
|
|
+ String result = HttpRequest.postData(SyncServiceImpl.ERP_UPDATE_STATUS_URL, jsonString);
|
|
|
+ return result.equals("200");
|
|
|
+ }
|
|
|
}
|