|
@@ -26,6 +26,7 @@ import com.ruoyi.ams.inv.service.IInvLotLocIdService;
|
|
|
import com.ruoyi.ams.order.domain.WmsDocOrderDetails;
|
|
|
import com.ruoyi.ams.order.domain.WmsDocOrderHeader;
|
|
|
import com.ruoyi.ams.order.dto.WmsDocOrderDTO;
|
|
|
+import com.ruoyi.ams.order.form.ActAllocationDetailsFrom;
|
|
|
import com.ruoyi.ams.order.mapper.WmsDocOrderDetailsMapper;
|
|
|
import com.ruoyi.ams.order.service.IActAllocationDetailsService;
|
|
|
import com.ruoyi.ams.order.service.IWmsDocOrderHeaderService;
|
|
@@ -391,11 +392,11 @@ public class WmsDocAsnHeaderServiceImpl implements IWmsDocAsnHeaderService {
|
|
|
if (stockForm.getAsnNo() != null && stockForm.getAsnNo().size() > 0) {
|
|
|
List<WmsDocAsnDetails> list = wmsDocAsnDetailsMapper.selectDetailsListByAsnNos(stockForm.getAsnNo(), codeSkuRelationshipVO.getSku());
|
|
|
if (list == null || list.size() == 0) {
|
|
|
- return AjaxResult.error("没有可以接收的入库单");
|
|
|
+ return AjaxResult.error("没有可以接收的入库单,产品 :" + codeSkuRelationshipVO.getSku());
|
|
|
} else {
|
|
|
for (WmsDocAsnDetails details : list) {
|
|
|
// 成品条码,扫码新托盘的时候,自动解绑老托盘数据。
|
|
|
- if(codeSkuRelationshipVO.isProduct()) {
|
|
|
+ if (codeSkuRelationshipVO.isProduct()) {
|
|
|
InvLotAtt attQuery = new InvLotAtt();
|
|
|
attQuery.setSku(codeSkuRelationshipVO.getSku());
|
|
|
// attQuery.setLotatt07(stockForm.getPalletNo());
|
|
@@ -437,10 +438,10 @@ public class WmsDocAsnHeaderServiceImpl implements IWmsDocAsnHeaderService {
|
|
|
String asnStatus;
|
|
|
if (details.getExpectedQty().compareTo(details.getReceivedQty().add(current)) == 1) {
|
|
|
//部分接收
|
|
|
- asnStatus = "30";
|
|
|
+ asnStatus = Constant.ASN_STS.STS30.getValue();
|
|
|
} else {
|
|
|
//接收完成
|
|
|
- asnStatus = "40";
|
|
|
+ asnStatus = Constant.ASN_STS.STS40.getValue();
|
|
|
}
|
|
|
//更新入库单接收数量及状态
|
|
|
int result = wmsDocAsnDetailsMapper.updateWmsReceivedQty(details.getAsnNo(), details.getAsnLineNo().intValue(), current, asnStatus);
|
|
@@ -464,8 +465,8 @@ public class WmsDocAsnHeaderServiceImpl implements IWmsDocAsnHeaderService {
|
|
|
detailsQuery.setAsnNo(details.getAsnNo());
|
|
|
List<WmsDocAsnDetails> detailsCheckList = wmsDocAsnDetailsMapper.selectWmsDocAsnDetailsList(detailsQuery);
|
|
|
for (WmsDocAsnDetails d : detailsCheckList) {
|
|
|
- if (!d.getLineStatus().equals("40")) {
|
|
|
- asnStatus = "30";
|
|
|
+ if (!d.getLineStatus().equals(Constant.ASN_STS.STS40.getValue())) {
|
|
|
+ asnStatus = Constant.ASN_STS.STS30.getValue();
|
|
|
break;
|
|
|
}
|
|
|
}
|
|
@@ -478,9 +479,9 @@ public class WmsDocAsnHeaderServiceImpl implements IWmsDocAsnHeaderService {
|
|
|
|
|
|
//生成库存
|
|
|
LotattDTO lotattDTO = new LotattDTO();
|
|
|
- if (codeSkuRelationshipVO.isProduct()) {
|
|
|
+// if (codeSkuRelationshipVO.isProduct()) {
|
|
|
lotattDTO.setLotatt02(stockForm.getSkuSn());
|
|
|
- }
|
|
|
+// }
|
|
|
lotattDTO.setLotatt05("90");
|
|
|
lotattDTO.setLotatt07(stockForm.getPalletNo());
|
|
|
lotattDTO.setLotatt08(details.getAsnNo());
|
|
@@ -525,6 +526,8 @@ public class WmsDocAsnHeaderServiceImpl implements IWmsDocAsnHeaderService {
|
|
|
@Transactional
|
|
|
@Override
|
|
|
public AjaxResult doPa(PaForm paForm) {
|
|
|
+ int flowId = paForm.getFlowId();
|
|
|
+ LoginUser loginUser = SecurityUtils.getLoginUser();
|
|
|
//绑定托盘
|
|
|
String palletNo = paForm.getPalletNo();
|
|
|
WmsBoxInfo wmsBoxInfo = new WmsBoxInfo();
|
|
@@ -533,18 +536,19 @@ public class WmsDocAsnHeaderServiceImpl implements IWmsDocAsnHeaderService {
|
|
|
if (wmsBoxInfo == null) {
|
|
|
throw new ServiceException("托盘不存在");
|
|
|
}
|
|
|
-
|
|
|
- BaseLocationInfo locationTo = baseLocationInfoService.selectBaseLocationInfoByIdOrNo(paForm.getLocationTo(),Constant.WAREHOUSE_ID);
|
|
|
- if (locationTo != null) {
|
|
|
- locationTo.setIsEmpty("N");
|
|
|
- baseLocationInfoService.updateBaseLocationInfo(locationTo);
|
|
|
- }
|
|
|
+ BaseLocationInfo locationTo = baseLocationInfoService.selectBaseLocationInfoByIdOrNo(paForm.getLocationTo(), Constant.WAREHOUSE_ID);
|
|
|
|
|
|
//获取库存当前的托盘位置
|
|
|
InvLotAtt lotAtt = new InvLotAtt();
|
|
|
lotAtt.setLotatt07(paForm.getPalletNo());
|
|
|
List<InvLotLocId> invLotLocIdList = invLotLocIdService.queryInvByInvLotatt(lotAtt);
|
|
|
for (InvLotLocId inv : invLotLocIdList) {
|
|
|
+ // 判断上架的库存是否已经上架
|
|
|
+ BaseLocationInfo baseLocInfo = baseLocationInfoService.selectBaseLocationInfoByIdOrNo(inv.getLocationId(), Constant.WAREHOUSE_ID);
|
|
|
+ if (baseLocInfo.getZoneId().equals(Constant.ZONE_TYPE.ZONE_INV.getValue())) {
|
|
|
+ return AjaxResult.error("库存已经在货架上:" + baseLocInfo.getLocationNo());
|
|
|
+ }
|
|
|
+
|
|
|
InvLotAtt invLotAtt = invLotAttService.selectInvLotAttByLotnum(inv.getLotnum());
|
|
|
invLotAtt.setLotatt12("Y");
|
|
|
invLotAttService.updateInvLotAtt(invLotAtt);
|
|
@@ -554,20 +558,44 @@ public class WmsDocAsnHeaderServiceImpl implements IWmsDocAsnHeaderService {
|
|
|
//invLotLocIdMapper.updateInvLotLocIdLocationId(Long.parseLong(inv.getLocationId()), Long.parseLong(paForm.getLocationTo()));
|
|
|
invLotLocIdMapper.updateInvLotLocIdToByLotnum(inv.getLotnum(), locationTo.getId());
|
|
|
|
|
|
+ // 回库不修改入库单据
|
|
|
+ if (flowId == Constant.FLOW_ID_RSO) {
|
|
|
+ continue;
|
|
|
+ }
|
|
|
+
|
|
|
+ // 修改入库单状态
|
|
|
WmsDocAsnDetails query = new WmsDocAsnDetails();
|
|
|
query.setAsnNo(invLotAtt.getLotatt08());
|
|
|
query.setSku(invLotAtt.getSku());
|
|
|
List<WmsDocAsnDetails> detailsList = wmsDocAsnDetailsMapper.selectWmsDocAsnDetailsList(query);
|
|
|
if (detailsList != null && detailsList.size() > 0) {
|
|
|
for (WmsDocAsnDetails de : detailsList) {
|
|
|
- de.setLineStatus("60");
|
|
|
+ de.setLineStatus(Constant.ASN_STS.STS60.getValue());
|
|
|
wmsDocAsnDetailsMapper.updateWmsDocAsnDetails(de);
|
|
|
}
|
|
|
}
|
|
|
- WmsDocAsnHeader updateStatus = new WmsDocAsnHeader();
|
|
|
- updateStatus.setAsnStatus("99");
|
|
|
- updateStatus.setAsnNo(invLotAtt.getLotatt08());
|
|
|
- wmsDocAsnHeaderMapper.updateWmsDocAsnHeader(updateStatus);
|
|
|
+ //修改头单状态
|
|
|
+ String asnStatus = Constant.ASN_STS.STS99.getValue();
|
|
|
+ WmsDocAsnDetails detailsQuery = new WmsDocAsnDetails();
|
|
|
+ detailsQuery.setAsnNo(invLotAtt.getLotatt08());
|
|
|
+ List<WmsDocAsnDetails> detailsCheckList = wmsDocAsnDetailsMapper.selectWmsDocAsnDetailsList(detailsQuery);
|
|
|
+ for (WmsDocAsnDetails d : detailsCheckList) {
|
|
|
+ if (!d.getLineStatus().equals(Constant.ASN_STS.STS60.getValue())) {
|
|
|
+ asnStatus = Constant.ASN_STS.STS50.getValue();
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ WmsDocAsnHeader headerUpdate = new WmsDocAsnHeader();
|
|
|
+ headerUpdate.setAsnNo(invLotAtt.getLotatt08());
|
|
|
+ headerUpdate.setAsnStatus(asnStatus);
|
|
|
+ headerUpdate.setUpdateBy(loginUser.getUsername());
|
|
|
+ headerUpdate.setUpdateTime(new Date());
|
|
|
+ wmsDocAsnHeaderMapper.updateWmsDocAsnHeader(headerUpdate);
|
|
|
+ }
|
|
|
+
|
|
|
+ if (locationTo != null) {
|
|
|
+ locationTo.setIsEmpty("N");
|
|
|
+ baseLocationInfoService.updateBaseLocationInfo(locationTo);
|
|
|
}
|
|
|
|
|
|
wmsBoxInfo.setLocationId(locationTo.getId());
|
|
@@ -706,7 +734,7 @@ public class WmsDocAsnHeaderServiceImpl implements IWmsDocAsnHeaderService {
|
|
|
details.setdEdi04(erpOrder.getVaild()); //单据状态
|
|
|
details.setdEdi05(erpOrder.getStockId()); //仓库编号
|
|
|
details.setdEdi06(erpOrder.getOrderState()); //是否扫描完成
|
|
|
- details.setdEdi07(erpOrder.getOrderNo()+""); //项次
|
|
|
+ details.setdEdi07(erpOrder.getOrderNo() + ""); //项次
|
|
|
details.setdEdi08(erpOrder.getOrderType()); //erp单据类型
|
|
|
details.setdEdi09(erpOrder.getInout()); //erp出入库类型
|
|
|
wmsDocAsnDetailsMapper.insertWmsDocAsnDetails(details);
|
|
@@ -749,9 +777,9 @@ public class WmsDocAsnHeaderServiceImpl implements IWmsDocAsnHeaderService {
|
|
|
erpBarcodes = new ErpBarcodes();
|
|
|
|
|
|
/*
|
|
|
- * 1,若当前SKU是成品
|
|
|
- * 入库数代表插入多少条扫描记录
|
|
|
- **/
|
|
|
+ * 1,若当前SKU是成品
|
|
|
+ * 入库数代表插入多少条扫描记录
|
|
|
+ **/
|
|
|
boolean isProduct = false;
|
|
|
for (InvLotAtt invLotAtt : serialNumAttributes) {
|
|
|
|