空拖出库请求体添加出库站台

This commit is contained in:
葛林强 2025-02-28 08:52:10 +08:00
parent b82d89d214
commit 1b83ecb362
4 changed files with 22 additions and 10 deletions

View File

@ -21,7 +21,7 @@ import com.ruoyi.common.core.page.TableDataInfo;
/** /**
* 入库码盘Controller * 入库码盘Controller
* *
* @author ruoyi * @author ruoyi
* @date 2025-02-22 * @date 2025-02-22
*/ */
@ -114,6 +114,8 @@ public class AppPendingStorageController extends BaseController
return toAjax(appPendingStorageService.addAppEmptyPmsOrderIn(vehicleNo)); return toAjax(appPendingStorageService.addAppEmptyPmsOrderIn(vehicleNo));
} }
@PostMapping("/addOtherList") @PostMapping("/addOtherList")
public AjaxResult addOtherList(@RequestBody OtherStockInRequest otherStockInRequest) { public AjaxResult addOtherList(@RequestBody OtherStockInRequest otherStockInRequest) {
return toAjax(appPendingStorageService.addAppListPmsOrderIn(otherStockInRequest)); return toAjax(appPendingStorageService.addAppListPmsOrderIn(otherStockInRequest));

View File

@ -19,6 +19,16 @@ public class TaskOutRequest {
*/ */
private String remark; private String remark;
private String stand;
public String getStand() {
return stand;
}
public void setStand(String stand) {
this.stand = stand;
}
public String getGoodsId() { public String getGoodsId() {
return goodsId; return goodsId;
} }

View File

@ -225,7 +225,7 @@ public class TaskExecutor {
AppTaskBak appTaskBak = new AppTaskBak(); AppTaskBak appTaskBak = new AppTaskBak();
appTaskBak.setTaskId(task.getTaskId()); appTaskBak.setTaskId(task.getTaskId());
appTaskBak.setTaskStatus(task.getTaskStatus()); appTaskBak.setTaskStatus(task.getTaskStatus());
appTaskBak.setRemark(task.getRemark()); appTaskBak.setRemark(updateRemark.getRemark());
appTaskBak.setTaskType(task.getTaskType()); appTaskBak.setTaskType(task.getTaskType());
appTaskBak.setTaskPriority(task.getTaskPriority()); appTaskBak.setTaskPriority(task.getTaskPriority());
appTaskBak.setVehicleId(task.getVehicleId()); appTaskBak.setVehicleId(task.getVehicleId());

View File

@ -19,7 +19,7 @@ import org.springframework.stereotype.Service;
/** /**
* 入库码盘Service业务层处理 * 入库码盘Service业务层处理
* *
* @author ruoyi * @author ruoyi
* @date 2025-02-22 * @date 2025-02-22
*/ */
@ -31,7 +31,7 @@ public class AppPendingStorageServiceImpl implements IAppPendingStorageService
/** /**
* 查询入库码盘 * 查询入库码盘
* *
* @param recordId 入库码盘主键 * @param recordId 入库码盘主键
* @return 入库码盘 * @return 入库码盘
*/ */
@ -43,7 +43,7 @@ public class AppPendingStorageServiceImpl implements IAppPendingStorageService
/** /**
* 查询入库码盘列表 * 查询入库码盘列表
* *
* @param appPendingStorage 入库码盘 * @param appPendingStorage 入库码盘
* @return 入库码盘 * @return 入库码盘
*/ */
@ -55,7 +55,7 @@ public class AppPendingStorageServiceImpl implements IAppPendingStorageService
/** /**
* 新增入库码盘 * 新增入库码盘
* *
* @param appPendingStorage 入库码盘 * @param appPendingStorage 入库码盘
* @return 结果 * @return 结果
*/ */
@ -68,7 +68,7 @@ public class AppPendingStorageServiceImpl implements IAppPendingStorageService
/** /**
* 修改入库码盘 * 修改入库码盘
* *
* @param appPendingStorage 入库码盘 * @param appPendingStorage 入库码盘
* @return 结果 * @return 结果
*/ */
@ -81,7 +81,7 @@ public class AppPendingStorageServiceImpl implements IAppPendingStorageService
/** /**
* 批量删除入库码盘 * 批量删除入库码盘
* *
* @param recordIds 需要删除的入库码盘主键 * @param recordIds 需要删除的入库码盘主键
* @return 结果 * @return 结果
*/ */
@ -93,7 +93,7 @@ public class AppPendingStorageServiceImpl implements IAppPendingStorageService
/** /**
* 删除入库码盘信息 * 删除入库码盘信息
* *
* @param recordId 入库码盘主键 * @param recordId 入库码盘主键
* @return 结果 * @return 结果
*/ */
@ -147,7 +147,7 @@ public class AppPendingStorageServiceImpl implements IAppPendingStorageService
appPendingStorage.setOrderId(appPendingStorageRequest.getListId()); appPendingStorage.setOrderId(appPendingStorageRequest.getListId());
appPendingStorage.setRecordId(UUID.randomUUID().toString()); appPendingStorage.setRecordId(UUID.randomUUID().toString());
appPendingStorage.setGoodsCode(appPendingStorageRequest.getGoodsId()); appPendingStorage.setGoodsCode(appPendingStorageRequest.getGoodsId());
appPendingStorage.setStatus(2); appPendingStorage.setStatus(0);
appPendingStorage.setStorageType(1); appPendingStorage.setStorageType(1);
appPendingStorage.setCreatePerson("test"); appPendingStorage.setCreatePerson("test");
appPendingStorage.setCustomerId(appPendingStorageRequest.getCustomerName()); appPendingStorage.setCustomerId(appPendingStorageRequest.getCustomerName());