| | |
| | | return AjaxResult.success(approveProcessService.getApproveById(approveGetAndUpdateVo.getId())); |
| | | } |
| | | |
| | | @GetMapping("/stockIn/orderInfo") |
| | | @ApiOperation(value = "入库审批-关联订单信息") |
| | | public AjaxResult getStockInOrderInfo(@RequestParam("approveId") String approveId) { |
| | | return AjaxResult.success(approveProcessService.getStockInOrderInfo(approveId)); |
| | | } |
| | | |
| | | @GetMapping("/stockIn/productList") |
| | | @ApiOperation(value = "入库审批-关联产品明细") |
| | | public AjaxResult getStockInProductList(@RequestParam("approveId") String approveId) { |
| | | return AjaxResult.success(approveProcessService.getStockInProductList(approveId)); |
| | | } |
| | | |
| | | /** |
| | | * 更新审批 |
| | | * @param approveGetAndUpdateVo |