|
@@ -93,8 +93,8 @@ public class ProcurementDomesticCustomerCreditController extends DefaultBaseCont |
|
@@ -93,8 +93,8 @@ public class ProcurementDomesticCustomerCreditController extends DefaultBaseCont |
|
93
|
* 变更评审资料
|
93
|
* 变更评审资料
|
|
94
|
*/
|
94
|
*/
|
|
95
|
@ApiOperation("变更评审资料")
|
95
|
@ApiOperation("变更评审资料")
|
|
96
|
- @HasPermission({""})
|
|
|
|
97
|
- @PutMapping
|
96
|
+ @HasPermission({"procure-manage:domestic-trade:achange"})
|
|
|
|
97
|
+ @PostMapping("/changeReview")
|
|
98
|
public InvokeResult<Void> changeReview(@Valid @RequestBody UpdateProcurementDomesticCustomerCreditVo vo) {
|
98
|
public InvokeResult<Void> changeReview(@Valid @RequestBody UpdateProcurementDomesticCustomerCreditVo vo) {
|
|
99
|
|
99
|
|
|
100
|
procurementDomesticCustomerCreditService.changeReview(vo);
|
100
|
procurementDomesticCustomerCreditService.changeReview(vo);
|
|
@@ -121,7 +121,8 @@ public class ProcurementDomesticCustomerCreditController extends DefaultBaseCont |
|
@@ -121,7 +121,8 @@ public class ProcurementDomesticCustomerCreditController extends DefaultBaseCont |
|
121
|
*/
|
121
|
*/
|
|
122
|
@ApiOperation("根据ID查询变更审核的数据")
|
122
|
@ApiOperation("根据ID查询变更审核的数据")
|
|
123
|
@ApiImplicitParam(value = "id", name = "id", paramType = "query", required = true)
|
123
|
@ApiImplicitParam(value = "id", name = "id", paramType = "query", required = true)
|
|
124
|
- @HasPermission({"procure-manage:domestic-trade:approve", "procure-manage:domestic-trade:review"})
|
124
|
+ @HasPermission({"procure-manage:domestic-trade:approve", "procure-manage:domestic-trade:review"
|
|
|
|
125
|
+ , "procure-manage:domestic-trade:approvechange", "procure-manage:domestic-trade:reviewchange"})
|
|
125
|
@GetMapping("/getExamineById")
|
126
|
@GetMapping("/getExamineById")
|
|
126
|
public InvokeResult<ProcurementDomesticCustomerCredit> getExamineById(@NotBlank(message = "id不能为空!") String id) {
|
127
|
public InvokeResult<ProcurementDomesticCustomerCredit> getExamineById(@NotBlank(message = "id不能为空!") String id) {
|
|
127
|
|
128
|
|