Browse Source

栈板初始化

master
常熟吴彦祖 5 months ago
parent
commit
a2aaa69b63
  1. 3
      src/main/java/com/gaotao/modules/automatedWarehouse/service/impl/WcsIntegrationServiceImpl.java

3
src/main/java/com/gaotao/modules/automatedWarehouse/service/impl/WcsIntegrationServiceImpl.java

@ -1103,6 +1103,9 @@ public class WcsIntegrationServiceImpl implements WcsIntegrationService {
Integer wcsPalletType = palletInfo.getWcsPalletType() != null ? palletInfo.getWcsPalletType() : 1;
Integer wcsBasePalletType = palletInfo.getWcsBasePalletType() != null ? palletInfo.getWcsBasePalletType() : 1;
Integer soreType=palletInfo.getWcsSoreType();
if (palletInfo.getSoreType() != null) {
soreType=palletInfo.getSoreType();
}
String autoSort = palletInfo.getAutoSort();
boolean isAutoSort = "Y".equals(autoSort);

Loading…
Cancel
Save