Browse Source

库位校验逻辑修改

master_hella_20240701
赵雪冰 1 year ago
parent
commit
06c4955216
  1. 4
      win-module-wms/win-module-wms-biz/src/main/java/com/win/module/wms/util/JobUtils.java

4
win-module-wms/win-module-wms-biz/src/main/java/com/win/module/wms/util/JobUtils.java

@ -517,7 +517,7 @@ public class JobUtils {
} }
//DBT---DBT2---LI 校验入库库位类型是否一致 //DBT---DBT2---LI 校验入库库位类型是否一致
public boolean ifInFromLocationType(String plocationCode, BusinesstypeDO businesstypeDO) { public boolean ifInToLocationType(String plocationCode, BusinesstypeDO businesstypeDO) {
AreabasicDO areabasicDO = areabasicService.selectAreabasicDOByCode(plocationCode); AreabasicDO areabasicDO = areabasicService.selectAreabasicDOByCode(plocationCode);
boolean ifInLocationType = false; boolean ifInLocationType = false;
if (areabasicDO != null) { if (areabasicDO != null) {
@ -537,7 +537,7 @@ public class JobUtils {
} }
//DBT---DBT2---LO 校验出库库位类型是否一致 //DBT---DBT2---LO 校验出库库位类型是否一致
public boolean ifInToLocationType(String plocationCode, BusinesstypeDO businesstypeDO) { public boolean ifInFromLocationType(String plocationCode, BusinesstypeDO businesstypeDO) {
AreabasicDO areabasicDO = areabasicService.selectAreabasicDOByCode(plocationCode); AreabasicDO areabasicDO = areabasicService.selectAreabasicDOByCode(plocationCode);
boolean ifOutLocationType = false; boolean ifOutLocationType = false;
if (areabasicDO != null) { if (areabasicDO != null) {

Loading…
Cancel
Save