Compare commits
No commits in common. "6676fd071773163d1f29883f2e20184b5da2bfc0" and "b357f622098e5973696e24be3484da2aeb1d1084" have entirely different histories.
6676fd0717
...
b357f62209
|
|
@ -201,9 +201,8 @@ public class TaskExecutor {
|
||||||
}
|
}
|
||||||
for (AppPendingStorage pendingStorage : appPendingStorages) {
|
for (AppPendingStorage pendingStorage : appPendingStorages) {
|
||||||
// 插入库存
|
// 插入库存
|
||||||
String stockId = IdUtils.fastSimpleUUID();
|
|
||||||
AppStock appStock = new AppStock();
|
AppStock appStock = new AppStock();
|
||||||
appStock.setStockId(stockId);
|
appStock.setStockId(IdUtils.fastSimpleUUID());
|
||||||
appStock.setListId(pendingStorage.getListId());
|
appStock.setListId(pendingStorage.getListId());
|
||||||
appStock.setVehicleId(pendingStorage.getVehicleNo());
|
appStock.setVehicleId(pendingStorage.getVehicleNo());
|
||||||
appStock.setLocationId(task.getDestination());
|
appStock.setLocationId(task.getDestination());
|
||||||
|
|
@ -231,7 +230,7 @@ public class TaskExecutor {
|
||||||
if(pendingStorage.getStorageType().compareTo(2) == 0) {
|
if(pendingStorage.getStorageType().compareTo(2) == 0) {
|
||||||
PmsInFeedBack pmsInFeedBack = new PmsInFeedBack();
|
PmsInFeedBack pmsInFeedBack = new PmsInFeedBack();
|
||||||
PmsInComplete pmsInComplete = new PmsInComplete();
|
PmsInComplete pmsInComplete = new PmsInComplete();
|
||||||
pmsInComplete.setCrmOrder(stockId);
|
pmsInComplete.setCrmOrder(pendingStorage.getListId());
|
||||||
pmsInComplete.setSapCode("2290");
|
pmsInComplete.setSapCode("2290");
|
||||||
pmsInComplete.setInArea("TPLK");
|
pmsInComplete.setInArea("TPLK");
|
||||||
pmsInComplete.setInLocation("6001");
|
pmsInComplete.setInLocation("6001");
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user