缺量补单问题

wms_pzh
anthonyywj2 3 years ago
parent 44a61ea77e
commit de89880fa6

@ -348,7 +348,7 @@ public class InvProductsTrService {
preiInList.add(warehouseEntity);
} else if (warehouseEntity.getSerialNo() == null) { //无序列号(多级包装无序列号的已在上一步被排除),补齐数量
int lea = count - invCount;
warehouseEntity.setCount(lea / (warehouseEntity.getCount())); //
warehouseEntity.setCount(lea / (actCount)); //
preiInList.add(warehouseEntity);
}
}
@ -393,7 +393,7 @@ public class InvProductsTrService {
inList.add(warehouseEntity);
} else if (warehouseEntity.getSerialNo() == null) { //无序列号(多级包装无序列号的已在上一步被排除),补齐数量
int lea = count - invCount;
warehouseEntity.setCount(lea / (warehouseEntity.getCount())); //
warehouseEntity.setCount(lea / (actCount)); //
inList.add(warehouseEntity);
}
}
@ -463,7 +463,7 @@ public class InvProductsTrService {
prePutList.add(warehouseEntity);
} else if (warehouseEntity.getSerialNo() == null) { //无序列号(多级包装无序列号的已在上一步被排除),补齐数量
int lea = count - invCount;
warehouseEntity.setCount(lea / (warehouseEntity.getCount())); //
warehouseEntity.setCount(lea / (actCount)); //
prePutList.add(warehouseEntity);
}
}

Loading…
Cancel
Save