PDA收货详情查询修改
This commit is contained in:
+4
-3
@@ -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));
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user