|
|
|
|
@ -120,7 +120,7 @@ public class PlateGoodsRecordController extends BladeController { |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 批量审核 |
|
|
|
|
* 一级批量审核(核算员) |
|
|
|
|
*/ |
|
|
|
|
@PostMapping("/confirmBatch") |
|
|
|
|
@Operation(summary = "批量审核", description = "") |
|
|
|
|
@ -131,6 +131,18 @@ public class PlateGoodsRecordController extends BladeController { |
|
|
|
|
return R.status(result); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 二级批量审核(厂长,副厂长) |
|
|
|
|
*/ |
|
|
|
|
@PostMapping("/secondConfirmBatch") |
|
|
|
|
@Operation(summary = "批量审核", description = "") |
|
|
|
|
public R secondConfirmBatch(@Parameter(description = "主键集合", required = true) @RequestParam String ids, |
|
|
|
|
@Parameter(description = "审核结果", required = true) @RequestParam Integer approvalStatus, |
|
|
|
|
@Parameter(description = "审批意见", required = true) @RequestParam String approvalMemo) { |
|
|
|
|
Boolean result = goodsRecordService.secondConfirmBatch(Func.toLongList(ids), approvalStatus, approvalMemo); |
|
|
|
|
return R.status(result); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 批量关闭 |
|
|
|
|
*/ |
|
|
|
|
|