空拖出库请求体添加出库站台
This commit is contained in:
parent
b82d89d214
commit
1b83ecb362
|
|
@ -114,6 +114,8 @@ public class AppPendingStorageController extends BaseController
|
|||
return toAjax(appPendingStorageService.addAppEmptyPmsOrderIn(vehicleNo));
|
||||
}
|
||||
|
||||
|
||||
|
||||
@PostMapping("/addOtherList")
|
||||
public AjaxResult addOtherList(@RequestBody OtherStockInRequest otherStockInRequest) {
|
||||
return toAjax(appPendingStorageService.addAppListPmsOrderIn(otherStockInRequest));
|
||||
|
|
|
|||
|
|
@ -19,6 +19,16 @@ public class TaskOutRequest {
|
|||
*/
|
||||
private String remark;
|
||||
|
||||
private String stand;
|
||||
|
||||
public String getStand() {
|
||||
return stand;
|
||||
}
|
||||
|
||||
public void setStand(String stand) {
|
||||
this.stand = stand;
|
||||
}
|
||||
|
||||
public String getGoodsId() {
|
||||
return goodsId;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -225,7 +225,7 @@ public class TaskExecutor {
|
|||
AppTaskBak appTaskBak = new AppTaskBak();
|
||||
appTaskBak.setTaskId(task.getTaskId());
|
||||
appTaskBak.setTaskStatus(task.getTaskStatus());
|
||||
appTaskBak.setRemark(task.getRemark());
|
||||
appTaskBak.setRemark(updateRemark.getRemark());
|
||||
appTaskBak.setTaskType(task.getTaskType());
|
||||
appTaskBak.setTaskPriority(task.getTaskPriority());
|
||||
appTaskBak.setVehicleId(task.getVehicleId());
|
||||
|
|
|
|||
|
|
@ -147,7 +147,7 @@ public class AppPendingStorageServiceImpl implements IAppPendingStorageService
|
|||
appPendingStorage.setOrderId(appPendingStorageRequest.getListId());
|
||||
appPendingStorage.setRecordId(UUID.randomUUID().toString());
|
||||
appPendingStorage.setGoodsCode(appPendingStorageRequest.getGoodsId());
|
||||
appPendingStorage.setStatus(2);
|
||||
appPendingStorage.setStatus(0);
|
||||
appPendingStorage.setStorageType(1);
|
||||
appPendingStorage.setCreatePerson("test");
|
||||
appPendingStorage.setCustomerId(appPendingStorageRequest.getCustomerName());
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user