PDA上架调整修改

This commit is contained in:
秦鸿展
2026-03-31 09:03:12 +08:00
parent 888a646c3e
commit 71f86798e5
7 changed files with 641 additions and 4 deletions
@@ -51,9 +51,11 @@ public class StockShelfOrderAppApi extends BaseController {
*/
@ApiOperation("获取上架单")
@GetMapping(value = "/getInfo")
public AjaxResult getInfo(Long shelfOrderId)
public AjaxResult getInfo(Long shelfOrderId,
@RequestParam(required = false) Integer shelfStatus)
{
return AjaxResult.success(stockShelfOrderApplicationService.getInfo(shelfOrderId, true));
// 仅 PDA 支持根据明细 shelvesStatus 做筛选:1 待上架(仅1/2)3 已上架(3/4/5)
return AjaxResult.success(stockShelfOrderApplicationService.getInfo(shelfOrderId, true, shelfStatus));
}