From 63edade94bb54e20e622098ce096a66e7cb641cf Mon Sep 17 00:00:00 2001 From: Administrator <1144154118@qq.com> Date: 星期五, 11 八月 2023 17:29:33 +0800 Subject: [PATCH] 巡检计划日历下指定天数打卡记录 --- ard-work/src/main/java/com/ruoyi/app/patrolplan/controller/ArdAppPatrolplanController.java | 177 ++++++++++++++++++++++++++++++++++++++++++++++++++-------- 1 files changed, 151 insertions(+), 26 deletions(-) diff --git a/ard-work/src/main/java/com/ruoyi/app/patrolplan/controller/ArdAppPatrolplanController.java b/ard-work/src/main/java/com/ruoyi/app/patrolplan/controller/ArdAppPatrolplanController.java index 7f4369b..0c428c8 100644 --- a/ard-work/src/main/java/com/ruoyi/app/patrolplan/controller/ArdAppPatrolplanController.java +++ b/ard-work/src/main/java/com/ruoyi/app/patrolplan/controller/ArdAppPatrolplanController.java @@ -1,13 +1,32 @@ package com.ruoyi.app.patrolplan.controller; +import java.text.ParseException; import java.util.List; +import java.util.Map; +import javax.annotation.Resource; import javax.servlet.http.HttpServletResponse; +import com.alibaba.fastjson2.JSONObject; +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; import com.github.pagehelper.PageHelper; import com.github.pagehelper.PageInfo; +import com.ruoyi.alarmpoints.well.domain.ArdAlarmpointsWell; +import com.ruoyi.alarmpoints.well.service.IArdAlarmpointsWellService; +import com.ruoyi.app.patrolplan.domain.ArdAppPatrolpoint; +import com.ruoyi.app.patrolplan.domain.ArdAppPatrolpointRecord; +import com.ruoyi.app.patrolplan.domain.param.ArdAppPatrolpointRecordParam; +import com.ruoyi.app.patrolplan.service.IArdAppPatrolpointRecordService; +import com.ruoyi.app.patrolplan.service.IArdAppPatrolpointService; +import com.ruoyi.app.patrolplan.service.IArdAppPatroluserService; +import com.ruoyi.common.core.domain.entity.SysUser; +import com.ruoyi.common.utils.SecurityUtils; +import com.ruoyi.common.utils.spring.SpringUtils; +import com.ruoyi.system.service.ISysDeptService; +import com.ruoyi.system.service.ISysUserService; import com.ruoyi.utils.result.Results; import io.swagger.annotations.Api; import io.swagger.annotations.ApiOperation; +import jdk.nashorn.internal.ir.annotations.Reference; import org.springframework.security.access.prepost.PreAuthorize; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.GetMapping; @@ -41,14 +60,40 @@ @Autowired private IArdAppPatrolplanService ardAppPatrolplanService; + @Resource + IArdAppPatrolpointService ardAppPatrolpointService; + + @Resource + IArdAppPatroluserService ardAppPatroluserService; + + @Resource + ISysUserService sysUserService; + + @Resource + ISysDeptService sysDeptService; + + @Resource + IArdAlarmpointsWellService wellService; + + @Resource + IArdAppPatrolpointRecordService recordService; + /** * 鏌ヨapp宸℃璁″垝鍒楄〃 */ @PreAuthorize("@ss.hasPermi('app:appPatrolplan:list')") @GetMapping("/list") - @ApiOperation("鏌ヨ鍏ㄩ儴宸℃鍒楄〃") + @ApiOperation("鏌ヨ鍏ㄩ儴宸℃鍒楄〃鍙婃悳绱㈢瓫閫�") public Results list(ArdAppPatrolplan ardAppPatrolplan) { + String userId = SecurityUtils.getUserId(); + ardAppPatrolplan.setUserId(userId); + if(ardAppPatrolplan.getPageNum()==null || ardAppPatrolplan.getPageNum() == 0){ + ardAppPatrolplan.setPageNum(1); + } + if(ardAppPatrolplan.getPageSize()==null || ardAppPatrolplan.getPageSize() == 0){ + ardAppPatrolplan.setPageSize(10); + } PageHelper.startPage(ardAppPatrolplan.getPageNum(),ardAppPatrolplan.getPageSize()); List<ArdAppPatrolplan> list = ardAppPatrolplanService.selectArdAppPatrolplanList(ardAppPatrolplan); return Results.succeed(new PageInfo<>(list)); @@ -60,6 +105,7 @@ @PreAuthorize("@ss.hasPermi('app:appPatrolplan:export')") @Log(title = "app宸℃璁″垝", businessType = BusinessType.EXPORT) @PostMapping("/export") + @ApiOperation("瀵煎嚭鍏ㄩ儴宸℃鍒楄〃") public void export(HttpServletResponse response, ArdAppPatrolplan ardAppPatrolplan) { List<ArdAppPatrolplan> list = ardAppPatrolplanService.selectArdAppPatrolplanList(ardAppPatrolplan); @@ -68,35 +114,25 @@ } /** - * 鑾峰彇app宸℃璁″垝璇︾粏淇℃伅 + * 鏍规嵁宸℃ID鏌ヨ鍏磋叮鐐� */ - @PreAuthorize("@ss.hasPermi('app:appPatrolplan:query')") - @GetMapping(value = "/{patroEndTime}") - public AjaxResult getInfo(@PathVariable("patroEndTime") String patroEndTime) + @PreAuthorize("@ss.hasPermi('app:appPatrolplan:wellByPlanId')") + @GetMapping(value = "wellByPlanId/{id}") + @ApiOperation("鏍规嵁宸℃ID鏌ヨ鍏磋叮鐐�") + public Results wellByPlanId(@PathVariable String id) { - return success(ardAppPatrolplanService.selectArdAppPatrolplanByPatroEndTime(patroEndTime)); + return ardAppPatrolpointService.wellByPlanId(id); } /** - * 鏂板app宸℃璁″垝 + * 鏍规嵁宸℃ID鏌ヨ宸℃浜� */ - @PreAuthorize("@ss.hasPermi('app:appPatrolplan:add')") - @Log(title = "app宸℃璁″垝", businessType = BusinessType.INSERT) - @PostMapping - public AjaxResult add(@RequestBody ArdAppPatrolplan ardAppPatrolplan) + @PreAuthorize("@ss.hasPermi('app:appPatrolplan:userByPlanId')") + @GetMapping(value = "userByPlanId/{id}") + @ApiOperation("鏍规嵁宸℃ID鏌ヨ宸℃浜哄憳") + public Results userByPlanId(@PathVariable String id) { - return toAjax(ardAppPatrolplanService.insertArdAppPatrolplan(ardAppPatrolplan)); - } - - /** - * 淇敼app宸℃璁″垝 - */ - @PreAuthorize("@ss.hasPermi('app:appPatrolplan:edit')") - @Log(title = "app宸℃璁″垝", businessType = BusinessType.UPDATE) - @PutMapping - public AjaxResult edit(@RequestBody ArdAppPatrolplan ardAppPatrolplan) - { - return toAjax(ardAppPatrolplanService.updateArdAppPatrolplan(ardAppPatrolplan)); + return ardAppPatroluserService.userByPlanId(id); } /** @@ -104,9 +140,98 @@ */ @PreAuthorize("@ss.hasPermi('app:appPatrolplan:remove')") @Log(title = "app宸℃璁″垝", businessType = BusinessType.DELETE) - @DeleteMapping("/{patroEndTimes}") - public AjaxResult remove(@PathVariable String[] patroEndTimes) + @DeleteMapping("/{id}") + @ApiOperation("鍒犻櫎app宸℃璁″垝") + //public Results remove(@PathVariable String id) + public AjaxResult remove(@PathVariable String id) { - return toAjax(ardAppPatrolplanService.deleteArdAppPatrolplanByPatroEndTimes(patroEndTimes)); + //return ardAppPatrolplanService.deleteArdApp(id); + return toAjax(ardAppPatrolplanService.deleteArdApp(id)); } + + @PreAuthorize("@ss.hasPermi('app:appPatrolplan:allPlanUser')") + @PostMapping("allPlanUser") + @ApiOperation("鏌ヨ鏉冮檺涓嬪叏閮ㄤ汉鍛樺拰鍏磋叮鐐�") + public Results allPlanUser() + { + JSONObject jsonObject = new JSONObject(); + String userId = SecurityUtils.getUserId(); + //鏍规嵁userId鏌ヨ閮ㄩ棬Id + SysUser sysUser = sysUserService.selectUserById(userId); + //鏍规嵁褰撳墠deptId鎴栬�呭綋鍓嶅強鎵�灞炰笅绾х殑鎵�鏈塪eptId + List<Long> deptList = sysDeptService.deptIdBySub(sysUser.getDeptId()); + //鏍规嵁deptId鍒楄〃鑾峰彇鍒版墍鏈夌敤鎴� + List<SysUser> sysUserList = sysUserService.userByDeptList(deptList); + jsonObject.put("user",sysUserList); + //鏍规嵁deptId鍒楄〃鑾峰彇鍒版墍鏈夊叴瓒g偣 + List<ArdAlarmpointsWell> wellList = wellService.wellByDeptList(deptList); + jsonObject.put("well",wellList); + return Results.succeed(jsonObject); + } + + /** + * 鏂板app宸℃璁″垝鍙婁汉鍛樼偣浣� + */ + @PreAuthorize("@ss.hasPermi('app:appPatrolplan:insertArdAppPatrolplan')") + @Log(title = "app宸℃璁″垝", businessType = BusinessType.INSERT) + @PostMapping("/insertArdAppPatrolplan") + @ApiOperation("鏂板app宸℃璁″垝鍙婁汉鍛樼偣浣�") + public AjaxResult addArdAppPatrolplan(@RequestBody Map<String,Object> para) + { + return toAjax(ardAppPatrolplanService.insertArdAppPatrolplan(para)); + } + + /** + * 鏌ヨ鍗曟潯鏁版嵁 + */ + @PreAuthorize("@ss.hasPermi('app:appPatrolplan:oneById')") + @PostMapping("/oneById/{id}") + @ApiOperation("鏌ヨ鍗曟潯鏁版嵁") + public Results oneById(@PathVariable String id) + { + return ardAppPatrolplanService.oneById(id); + } + + /** + * 淇敼app宸℃璁″垝 + */ + @PreAuthorize("@ss.hasPermi('app:appPatrolplan:edit')") + @Log(title = "app宸℃璁″垝", businessType = BusinessType.UPDATE) + @ApiOperation("淇敼鍗曟潯鏁版嵁") + @PutMapping("upd") + public Results edit(@RequestBody Map<String,Object> para) + { + return ardAppPatrolplanService.updateArdAppPatrolplan(para); + } + + /** + * 宸℃鎵撳崱 + */ + @PreAuthorize("@ss.hasPermi('app:appPatrolplan:record')") + @ApiOperation("宸℃鎵撳崱") + @PostMapping("record") + public Results edit(@RequestBody ArdAppPatrolpointRecord ardAppPatrolpointRecord) { + return recordService.record(ardAppPatrolpointRecord); + } + + /** + * 宸℃鏃ュ巻 + */ + @PreAuthorize("@ss.hasPermi('app:appPatrolplan:recordMonth')") + @ApiOperation("绠$悊绔�--宸℃鏃ュ巻") + @PostMapping("recordMonth") + public Results recordMonth(@RequestBody ArdAppPatrolpointRecordParam ardAppPatrolpointRecordParam) throws ParseException { + return recordService.recordMonth(ardAppPatrolpointRecordParam); + } + + /** + * 宸℃鏃ュ巻 + */ + @PreAuthorize("@ss.hasPermi('app:appPatrolplan:recordMonth')") + @ApiOperation("绠$悊绔�--鐐瑰嚮鏃ュ巻鑾峰彇璇ヨ褰曚笅浜哄憳鎵撳崱璁板綍") + @PostMapping("recordDetails") + public Results recordDetails(@RequestBody ArdAppPatrolpointRecordParam ardAppPatrolpointRecordParam) throws ParseException { + return recordService.recordDetails(ardAppPatrolpointRecordParam); + } + } -- Gitblit v1.9.3