Commit be146fc5 by huluobin

hr check

parent 9d52c47a
......@@ -303,7 +303,7 @@ public class CostController {
@GetMapping("/check/hrCheck")
@ApiOperation("行政审核通过")
public CostResult<Void> hrCheck(@RequestParam String costNo,
@RequestParam Integer userid) {
@RequestParam Integer userid) {
CostContext costContext = new CostContext(costNo, userid);
costContext.setCostState(hrCheckState);
costContext.handle();
......@@ -313,8 +313,8 @@ public class CostController {
@GetMapping("/check/hrCheckRefuse")
@ApiOperation("行政审核驳回")
public CostResult<Void> hrCheckRefuse(@RequestParam String costNo,
@RequestParam Integer userid,
@RequestParam String rejectReason) {
@RequestParam Integer userid,
@RequestParam String rejectReason) {
CostContext costContext = new CostContext(costNo, userid);
costContext.setCostState(hrCheckState);
costContext.refuse(rejectReason);
......@@ -322,7 +322,7 @@ public class CostController {
}
@ApiOperation("删除费用单")
@PostMapping("/deleted")
@PostMapping("/list/deleted")
public CostResult<Void> deleted(@RequestParam String costNo) {
costService = CostServiceFactory.getCostService(costNo);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment