|
@@ -176,7 +176,7 @@ public class PlanQuarterController extends BaseController {
|
|
|
|
|
|
@ApiOperation(value = "提交季度计划")
|
|
|
@PostMapping("/commit")
|
|
|
- @PreAuthorize("@ss.hasPermi('plan:quarter:commit')")
|
|
|
+ //@PreAuthorize("@ss.hasPermi('plan:quarter:commit')")
|
|
|
@Log(title = ModularConstans.planQuarter, businessType = BusinessType.UPDATE)
|
|
|
public AjaxResult commit(@RequestBody PlanQuarterStandardVo quarterStandardVo) {
|
|
|
return quarterService.commit(quarterStandardVo);
|
|
@@ -192,7 +192,7 @@ public class PlanQuarterController extends BaseController {
|
|
|
|
|
|
@ApiOperation(value = "根据id获取季度计划信息")
|
|
|
@PostMapping("/view")
|
|
|
- @PreAuthorize("@ss.hasPermi('plan:quarter:view')")
|
|
|
+ //@PreAuthorize("@ss.hasPermi('plan:quarter:view')")
|
|
|
@Log(title = ModularConstans.planQuarter, businessType = BusinessType.QUERY)
|
|
|
public AjaxResult view(@RequestBody PlanQuarterStandardVo quarterStandardVo) {
|
|
|
return quarterService.view(quarterStandardVo);
|
|
@@ -200,7 +200,7 @@ public class PlanQuarterController extends BaseController {
|
|
|
|
|
|
@ApiOperation(value = "审核季度计划通过")
|
|
|
@PostMapping("/reviewTo")
|
|
|
- @PreAuthorize("@ss.hasPermi('plan:quarter:reviewTo')")
|
|
|
+ //@PreAuthorize("@ss.hasPermi('plan:quarter:reviewTo')")
|
|
|
@Log(title = ModularConstans.planQuarter, businessType = BusinessType.UPDATE)
|
|
|
public AjaxResult reviewTo(@RequestBody PlanQuarterStandardVo quarterStandardVo, HttpServletRequest request) {
|
|
|
LoginUser loginUser = tokenService.getLoginUser(request);
|
|
@@ -210,7 +210,7 @@ public class PlanQuarterController extends BaseController {
|
|
|
|
|
|
@ApiOperation(value = "审核季度计划退回")
|
|
|
@PostMapping("/reviewReturn")
|
|
|
- @PreAuthorize("@ss.hasPermi('plan:quarter:reviewReturn')")
|
|
|
+ //@PreAuthorize("@ss.hasPermi('plan:quarter:reviewReturn')")
|
|
|
@Log(title = ModularConstans.planQuarter, businessType = BusinessType.UPDATE)
|
|
|
public AjaxResult reviewReturn(@RequestBody PlanQuarterStandardVo quarterStandardVo, HttpServletRequest request) {
|
|
|
LoginUser loginUser = tokenService.getLoginUser(request);
|
|
@@ -252,7 +252,7 @@ public class PlanQuarterController extends BaseController {
|
|
|
|
|
|
@ApiOperation(value = "发函催告")
|
|
|
@PostMapping("/sendLetter")
|
|
|
- @PreAuthorize("@ss.hasPermi('plan:quarter:sendLetter')")
|
|
|
+ //@PreAuthorize("@ss.hasPermi('plan:quarter:sendLetter')")
|
|
|
@Log(title = ModularConstans.planQuarter, businessType = BusinessType.UPDATE)
|
|
|
public AjaxResult sendLetter(@RequestBody PlanQuarterStandardVo quarterStandardVo) {
|
|
|
return quarterService.sendLetter(quarterStandardVo);
|