|
@@ -6,21 +6,26 @@ import com.ruoyi.ams.asn.service.IWmsDocAsnHeaderService;
|
|
import com.ruoyi.ams.erp.domain.ErpBarcodes;
|
|
import com.ruoyi.ams.erp.domain.ErpBarcodes;
|
|
import com.ruoyi.ams.erp.mapper.ErpBarcodesMapper;
|
|
import com.ruoyi.ams.erp.mapper.ErpBarcodesMapper;
|
|
import com.ruoyi.ams.erp.service.IErpBarcodesService;
|
|
import com.ruoyi.ams.erp.service.IErpBarcodesService;
|
|
-import com.ruoyi.ams.inv.domain.InvLotAtt;
|
|
|
|
import com.ruoyi.ams.order.domain.WmsDocOrderDetails;
|
|
import com.ruoyi.ams.order.domain.WmsDocOrderDetails;
|
|
import com.ruoyi.ams.order.domain.WmsDocOrderHeader;
|
|
import com.ruoyi.ams.order.domain.WmsDocOrderHeader;
|
|
-import com.ruoyi.ams.order.service.IWmsDocOrderDetailsService;
|
|
|
|
import com.ruoyi.ams.order.service.IWmsDocOrderHeaderService;
|
|
import com.ruoyi.ams.order.service.IWmsDocOrderHeaderService;
|
|
-import com.ruoyi.base.constant.Constant;
|
|
|
|
|
|
+import com.ruoyi.base.domain.BaseSku;
|
|
|
|
+import com.ruoyi.base.domain.vo.CodeSkuRelationshipVO;
|
|
|
|
+import com.ruoyi.base.service.IBaseSkuService;
|
|
|
|
+import com.ruoyi.base.service.IBaseSkuTypeService;
|
|
|
|
+import com.ruoyi.base.service.ICodeSkuRelationshipService;
|
|
import com.ruoyi.common.core.domain.AjaxResult;
|
|
import com.ruoyi.common.core.domain.AjaxResult;
|
|
import com.ruoyi.common.utils.DateUtils;
|
|
import com.ruoyi.common.utils.DateUtils;
|
|
import com.ruoyi.common.utils.StringUtils;
|
|
import com.ruoyi.common.utils.StringUtils;
|
|
-import io.jsonwebtoken.lang.Assert;
|
|
|
|
|
|
+import org.apache.commons.collections4.CollectionUtils;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.stereotype.Service;
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
|
import java.math.BigDecimal;
|
|
import java.math.BigDecimal;
|
|
import java.util.List;
|
|
import java.util.List;
|
|
|
|
+import java.util.Map;
|
|
|
|
+import java.util.function.Function;
|
|
|
|
+import java.util.stream.Collectors;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 条码扫描记录表Service业务层处理
|
|
* 条码扫描记录表Service业务层处理
|
|
@@ -37,6 +42,15 @@ public class ErpBarcodesServiceImpl implements IErpBarcodesService {
|
|
@Autowired
|
|
@Autowired
|
|
private IWmsDocOrderHeaderService wmsDocOrderHeaderService;
|
|
private IWmsDocOrderHeaderService wmsDocOrderHeaderService;
|
|
|
|
|
|
|
|
+ @Autowired
|
|
|
|
+ private IBaseSkuService baseSkuService;
|
|
|
|
+
|
|
|
|
+ @Autowired
|
|
|
|
+ private IBaseSkuTypeService baseSkuTypeService;
|
|
|
|
+
|
|
|
|
+ @Autowired
|
|
|
|
+ private ICodeSkuRelationshipService codeSkuRelationshipService;
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* 查询条码扫描记录表
|
|
* 查询条码扫描记录表
|
|
*
|
|
*
|
|
@@ -56,7 +70,21 @@ public class ErpBarcodesServiceImpl implements IErpBarcodesService {
|
|
*/
|
|
*/
|
|
@Override
|
|
@Override
|
|
public List<ErpBarcodes> selectErpBarcodesList(ErpBarcodes erpBarcodes) {
|
|
public List<ErpBarcodes> selectErpBarcodesList(ErpBarcodes erpBarcodes) {
|
|
- return erpBarcodesMapper.selectErpBarcodesList(erpBarcodes);
|
|
|
|
|
|
+ List<ErpBarcodes> erpBarcodesList = erpBarcodesMapper.selectErpBarcodesList(erpBarcodes);
|
|
|
|
+ if (CollectionUtils.isEmpty(erpBarcodesList)) return erpBarcodesList;
|
|
|
|
+ List<CodeSkuRelationshipVO> codeSkuRelationshipList = codeSkuRelationshipService.selectCodeSkuRelationshipVOList(erpBarcodesList.stream().map(ErpBarcodes::getBarcode).collect(Collectors.toList()));
|
|
|
|
+ if (CollectionUtils.isEmpty(codeSkuRelationshipList)) return erpBarcodesList;
|
|
|
|
+ Map<String, String> codeSkuMap = codeSkuRelationshipList.stream().collect(Collectors.toMap(CodeSkuRelationshipVO::getSn, CodeSkuRelationshipVO::getSku));
|
|
|
|
+ List<BaseSku> baseSkuList = baseSkuService.queryActiveSkuList(codeSkuRelationshipList.stream().map(CodeSkuRelationshipVO::getSku).collect(Collectors.toList()));
|
|
|
|
+ Map<String, BaseSku> baseSkuMap = baseSkuList.stream().collect(Collectors.toMap(BaseSku::getSku, Function.identity()));
|
|
|
|
+ erpBarcodesList.forEach(item -> {
|
|
|
|
+ String sku = codeSkuMap.get(item.getBarcode());
|
|
|
|
+ BaseSku baseSku = baseSkuMap.get(sku);
|
|
|
|
+ item.setSku(sku);
|
|
|
|
+ item.setModel(baseSku.getModel());
|
|
|
|
+ item.setDesc1(baseSku.getDesc1());
|
|
|
|
+ });
|
|
|
|
+ return erpBarcodesList;
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -147,7 +175,7 @@ public class ErpBarcodesServiceImpl implements IErpBarcodesService {
|
|
erpBarcodesS.setBarcode(sn);
|
|
erpBarcodesS.setBarcode(sn);
|
|
ErpBarcodes erpBarcodesG = this.selectErpBarcodesByModel(erpBarcodesS);
|
|
ErpBarcodes erpBarcodesG = this.selectErpBarcodesByModel(erpBarcodesS);
|
|
if (erpBarcodesG != null) {
|
|
if (erpBarcodesG != null) {
|
|
- this.untieRecordErpBarcodeList(erpNo, palletNo, erpName, sn);
|
|
|
|
|
|
+ this.untieRecordErpBarcodeList(erpNo, palletNo, erpName, sn, boxNo);
|
|
return AjaxResult.success("");
|
|
return AjaxResult.success("");
|
|
}
|
|
}
|
|
// 插入新的
|
|
// 插入新的
|
|
@@ -186,7 +214,7 @@ public class ErpBarcodesServiceImpl implements IErpBarcodesService {
|
|
erpBarcodesS.setBarcode(sn);
|
|
erpBarcodesS.setBarcode(sn);
|
|
ErpBarcodes erpBarcodesG = this.selectErpBarcodesByModel(erpBarcodesS);
|
|
ErpBarcodes erpBarcodesG = this.selectErpBarcodesByModel(erpBarcodesS);
|
|
if (erpBarcodesG != null) {
|
|
if (erpBarcodesG != null) {
|
|
- this.untieRecordErpBarcodeList(erpNo, palletNo, details.getdEdi07(), sn);
|
|
|
|
|
|
+ this.untieRecordErpBarcodeList(erpNo, palletNo, details.getdEdi07(), sn, boxNo);
|
|
return AjaxResult.success("");
|
|
return AjaxResult.success("");
|
|
}
|
|
}
|
|
ErpBarcodes erpBarcodes = new ErpBarcodes();
|
|
ErpBarcodes erpBarcodes = new ErpBarcodes();
|
|
@@ -210,7 +238,7 @@ public class ErpBarcodesServiceImpl implements IErpBarcodesService {
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
- private AjaxResult untieRecordErpBarcodeList(String erpNo, String palletNo, String erpName, String sn) {
|
|
|
|
|
|
+ private AjaxResult untieRecordErpBarcodeList(String erpNo, String palletNo, String erpName, String sn, String boxNo) {
|
|
if (StringUtils.isEmpty(erpName)) {
|
|
if (StringUtils.isEmpty(erpName)) {
|
|
return AjaxResult.success();
|
|
return AjaxResult.success();
|
|
}
|
|
}
|
|
@@ -219,6 +247,7 @@ public class ErpBarcodesServiceImpl implements IErpBarcodesService {
|
|
erpBarcodes.setErpName(erpName);
|
|
erpBarcodes.setErpName(erpName);
|
|
erpBarcodes.setBarcode(sn);
|
|
erpBarcodes.setBarcode(sn);
|
|
erpBarcodes.setUserdefine1("Y");
|
|
erpBarcodes.setUserdefine1("Y");
|
|
|
|
+ erpBarcodes.setBoxNo(boxNo);
|
|
erpBarcodes.setUserdefine5(palletNo);
|
|
erpBarcodes.setUserdefine5(palletNo);
|
|
erpBarcodes.setUserdefine8("N");
|
|
erpBarcodes.setUserdefine8("N");
|
|
this.updateErpBarcodesBySn(erpBarcodes);
|
|
this.updateErpBarcodesBySn(erpBarcodes);
|