|
@@ -33,11 +33,12 @@ public class ReimbursementController {
|
|
|
* 报销审核
|
|
|
* @param id
|
|
|
* @param flag yes 审核通过 no 审核失败
|
|
|
+ * @param comment 审批意见
|
|
|
* @return
|
|
|
*/
|
|
|
@GetMapping("reimAudit")
|
|
|
- public ResponseEntity reimAudit(String id, String flag) {
|
|
|
- Map<String, Object> resultMap = this.reimbursementService.reimAudit(id, flag, "bmzr");
|
|
|
+ public ResponseEntity reimAudit(String id, String flag, String comment) {
|
|
|
+ Map<String, Object> resultMap = this.reimbursementService.reimAudit(id, flag, "bmzr", comment);
|
|
|
return ResponseEntity.ok (resultMap);
|
|
|
}
|
|
|
|
|
@@ -48,7 +49,7 @@ public class ReimbursementController {
|
|
|
*/
|
|
|
@GetMapping("reimReapply")
|
|
|
public ResponseEntity reimReapply(String id) {
|
|
|
- Map<String, Object> resultMap = this.reimbursementService.reimAudit(id, "yes", "modifyApply");
|
|
|
+ Map<String, Object> resultMap = this.reimbursementService.reimAudit(id, "yes", "modifyApply", null);
|
|
|
return ResponseEntity.ok (resultMap);
|
|
|
}
|
|
|
|