PDA收货详情查询修改

This commit is contained in:
秦鸿展
2026-03-27 17:32:33 +08:00
parent c6e3cb22f6
commit 97e41ffe1c
3 changed files with 211 additions and 15 deletions
@@ -49,10 +49,11 @@ public class StockReceiptOrderAppApi extends BaseController {
/**
* 获取收货单详细信息
*/
@ApiOperation("获取收货单")
@ApiOperation("获取收货单详细信息")
@GetMapping(value = "/getInfoByApp")
public AjaxResult getInfoByApp(Long receiptOrderId) {
return AjaxResult.success(stockReceiptOrderApplicationService.getInfoByApp(receiptOrderId));
public AjaxResult getInfoByApp(@RequestParam Long receiptOrderId,
@RequestParam(required = false) Integer receiptStatus) {
return AjaxResult.success(stockReceiptOrderApplicationService.getInfoByApp(receiptOrderId, receiptStatus));
}
/**