PDA上架调整修改
This commit is contained in:
+4
-2
@@ -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));
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user