From d9e9b938894192695de7914cf9ed9d58dad350f9 Mon Sep 17 00:00:00 2001 From: 20918 <2091823062@qq.com> Date: Wed, 15 May 2024 14:51:52 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B6=89=E5=AF=86=E6=96=87=E4=BB=B6=E6=8E=A5?= =?UTF-8?q?=E6=94=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../filemanager/TdFileExtractController.java | 100 ++++++++++++++ .../filemanager/TdFileReceiveController.java | 22 +-- .../templates/system/fileextract/edit.html | 77 +++++++++++ .../system/fileextract/fileextract.html | 126 ++++++++++++++++++ .../templates/system/fileprovide/add.html | 60 +++++---- .../templates/system/fileprovide/detail.html | 71 +++++----- .../templates/system/filereceive/edit.html | 2 +- .../system/filereceive/filereceive.html | 5 +- .../system/mapper/TdFileReceiveMapper.java | 2 + .../system/service/ITdFileReceiveService.java | 7 + .../impl/TdFileReceiveServiceImpl.java | 5 + .../mapper/system/TdFileReceiveMapper.xml | 5 + 12 files changed, 407 insertions(+), 75 deletions(-) create mode 100644 ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/filemanager/TdFileExtractController.java create mode 100644 ruoyi-admin/src/main/resources/templates/system/fileextract/edit.html create mode 100644 ruoyi-admin/src/main/resources/templates/system/fileextract/fileextract.html diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/filemanager/TdFileExtractController.java b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/filemanager/TdFileExtractController.java new file mode 100644 index 0000000..728f537 --- /dev/null +++ b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/filemanager/TdFileExtractController.java @@ -0,0 +1,100 @@ +package com.ruoyi.web.controller.system.filemanager; + +import com.ruoyi.common.annotation.Log; +import com.ruoyi.common.core.controller.BaseController; +import com.ruoyi.common.core.domain.AjaxResult; +import com.ruoyi.common.core.page.TableDataInfo; +import com.ruoyi.common.enums.BusinessType; +import com.ruoyi.common.utils.poi.ExcelUtil; +import com.ruoyi.system.domain.TdFileReceive; +import com.ruoyi.system.service.ISysDeptService; +import com.ruoyi.system.service.ITdFileReceiveService; +import org.apache.shiro.authz.annotation.RequiresPermissions; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Controller; +import org.springframework.ui.ModelMap; +import org.springframework.web.bind.annotation.*; + +import java.util.ArrayList; +import java.util.List; + +/** + * 涉密文件提取Controller + */ +@Controller +@RequestMapping("/system/fileextract") +public class TdFileExtractController extends BaseController { + private String prefix = "system/fileextract"; + @Autowired + private ITdFileReceiveService tdFileReceiveService; + @Autowired + private ISysDeptService deptService; + + + @RequiresPermissions("system:fileextract:view") + @GetMapping() + public String fileextract(ModelMap mmap) + { + mmap.put("sysuser",getSysUser()); + return prefix + "/fileextract"; + } + + /** + * 查询涉密文件接收列表 + */ + @RequiresPermissions("system:fileextract:list") + @PostMapping("/list") + @ResponseBody + public TableDataInfo list(TdFileReceive tdFileReceive) + { + startPage(); + List tdFileReceives = tdFileReceiveService.selectTdFileReceiveByReceiveDepart(deptService.selectDeptById(getSysUser().getDeptId()).getDeptName()); + List tdFileReceiveList = new ArrayList<>(); + for (TdFileReceive tdFileReceivelist : tdFileReceives){ + if (tdFileReceivelist.getReceiveState().equals("1")){ + tdFileReceiveList.add(tdFileReceivelist); + } + } + return getDataTable(tdFileReceiveList); + } + + /** + * 导出涉密文件接收列表 + */ + @RequiresPermissions("system:fileextract:export") + @Log(title = "涉密文件接收", businessType = BusinessType.EXPORT) + @PostMapping("/export") + @ResponseBody + public AjaxResult export(TdFileReceive tdFileReceive) + { + List list = tdFileReceiveService.selectTdFileReceiveList(tdFileReceive); + ExcelUtil util = new ExcelUtil(TdFileReceive.class); + return util.exportExcel(list, "涉密文件接收数据"); + } + + /** + * 涉密文件提取 + */ + @RequiresPermissions("system:fileextract:edit") + @GetMapping("/edit/{receiveId}") + public String edit(@PathVariable("receiveId") Long receiveId, ModelMap mmap) + { + TdFileReceive tdFileReceive = tdFileReceiveService.selectTdFileReceiveByReceiveId(receiveId); + mmap.put("tdFileReceive", tdFileReceive); + mmap.put("user",getSysUser()); + return prefix + "/edit"; + } + + /** + * 保存涉密文件提取 + */ + @RequiresPermissions("system:fileextract:edit") + @Log(title = "涉密文件接收", businessType = BusinessType.UPDATE) + @PostMapping("/edit") + @ResponseBody + public AjaxResult editSave(TdFileReceive tdFileReceive) + { + return toAjax(tdFileReceiveService.updateTdFileReceive(tdFileReceive)); + } + +} diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/filemanager/TdFileReceiveController.java b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/filemanager/TdFileReceiveController.java index 80400a5..f9bfd1b 100644 --- a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/filemanager/TdFileReceiveController.java +++ b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/filemanager/TdFileReceiveController.java @@ -2,7 +2,6 @@ package com.ruoyi.web.controller.system.filemanager; import java.util.List; -import com.ruoyi.common.core.domain.entity.SysDept; import com.ruoyi.system.service.ISysDeptService; import org.apache.shiro.authz.annotation.RequiresPermissions; import org.springframework.beans.factory.annotation.Autowired; @@ -24,7 +23,7 @@ import com.ruoyi.common.core.page.TableDataInfo; /** * 涉密文件接收Controller - * + * * @author ruoyi * @date 2024-05-14 */ @@ -36,11 +35,14 @@ public class TdFileReceiveController extends BaseController @Autowired private ITdFileReceiveService tdFileReceiveService; + @Autowired + private ISysDeptService deptService; @RequiresPermissions("system:filereceive:view") @GetMapping() - public String filereceive() + public String filereceive(ModelMap mmap) { + mmap.put("sysuser",getSysUser()); return prefix + "/filereceive"; } @@ -53,8 +55,8 @@ public class TdFileReceiveController extends BaseController public TableDataInfo list(TdFileReceive tdFileReceive) { startPage(); - List list = tdFileReceiveService.selectTdFileReceiveList(tdFileReceive); - return getDataTable(list); + List tdFileReceives = tdFileReceiveService.selectTdFileReceiveByReceiveDepart(deptService.selectDeptById(getSysUser().getDeptId()).getDeptName()); + return getDataTable(tdFileReceives); } /** @@ -64,9 +66,9 @@ public class TdFileReceiveController extends BaseController @Log(title = "涉密文件接收", businessType = BusinessType.EXPORT) @PostMapping("/export") @ResponseBody - public AjaxResult export(TdFileReceive tdFileReceive) + public AjaxResult export() { - List list = tdFileReceiveService.selectTdFileReceiveList(tdFileReceive); + List list = tdFileReceiveService.selectTdFileReceiveByReceiveDepart(deptService.selectDeptById(getSysUser().getDeptId()).getDeptName()); ExcelUtil util = new ExcelUtil(TdFileReceive.class); return util.exportExcel(list, "涉密文件接收数据"); } @@ -93,7 +95,7 @@ public class TdFileReceiveController extends BaseController } /** - * 修改涉密文件接收 + * 涉密文件接收 */ @RequiresPermissions("system:filereceive:edit") @GetMapping("/edit/{receiveId}") @@ -106,7 +108,7 @@ public class TdFileReceiveController extends BaseController } /** - * 修改保存涉密文件接收 + * 保存涉密文件接收 */ @RequiresPermissions("system:filereceive:edit") @Log(title = "涉密文件接收", businessType = BusinessType.UPDATE) @@ -128,4 +130,6 @@ public class TdFileReceiveController extends BaseController { return toAjax(tdFileReceiveService.deleteTdFileReceiveByReceiveIds(ids)); } + + } diff --git a/ruoyi-admin/src/main/resources/templates/system/fileextract/edit.html b/ruoyi-admin/src/main/resources/templates/system/fileextract/edit.html new file mode 100644 index 0000000..588121a --- /dev/null +++ b/ruoyi-admin/src/main/resources/templates/system/fileextract/edit.html @@ -0,0 +1,77 @@ + + + + + + + +
+
+ + +
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+
+ + + + + diff --git a/ruoyi-admin/src/main/resources/templates/system/fileextract/fileextract.html b/ruoyi-admin/src/main/resources/templates/system/fileextract/fileextract.html new file mode 100644 index 0000000..3065b49 --- /dev/null +++ b/ruoyi-admin/src/main/resources/templates/system/fileextract/fileextract.html @@ -0,0 +1,126 @@ + + + + + + +
+
+
+
+
+
    +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • +  搜索 +  重置 +
  • +
+
+
+
+ + +
+
+
+
+
+ + + + diff --git a/ruoyi-admin/src/main/resources/templates/system/fileprovide/add.html b/ruoyi-admin/src/main/resources/templates/system/fileprovide/add.html index e392283..b65cd32 100644 --- a/ruoyi-admin/src/main/resources/templates/system/fileprovide/add.html +++ b/ruoyi-admin/src/main/resources/templates/system/fileprovide/add.html @@ -4,20 +4,21 @@ +
- +
- +
- +
- +
@@ -35,9 +36,19 @@
- +
+ + +
+
+ +
+ +
+
+
@@ -55,21 +66,15 @@
- -
- -
-
-
- +
- +
- +
- +
@@ -81,34 +86,30 @@
- -
- -
-
-
- +
- +
- +
- +
- +
- +
+
+ diff --git a/ruoyi-admin/src/main/resources/templates/system/fileprovide/detail.html b/ruoyi-admin/src/main/resources/templates/system/fileprovide/detail.html index 41dc90b..d8d94d3 100644 --- a/ruoyi-admin/src/main/resources/templates/system/fileprovide/detail.html +++ b/ruoyi-admin/src/main/resources/templates/system/fileprovide/detail.html @@ -21,9 +21,15 @@
- +
- + +
+
+
+ +
+
@@ -38,10 +44,20 @@
+
- +
+ + +
+
+
+
+ +
+
@@ -61,33 +77,15 @@
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- +
- +
- +
- +
@@ -99,27 +97,21 @@
- -
- -
-
-
- +
- +
- +
- +
- +
- +
@@ -145,6 +137,11 @@ $.operate.save(prefix + "/edit", $('#form-fileprovide-edit').serialize()); } } + $("input[name='provideDate']").datetimepicker({ + format: "yyyy-mm-dd", + minView: "month", + autoclose: true + }); diff --git a/ruoyi-admin/src/main/resources/templates/system/filereceive/edit.html b/ruoyi-admin/src/main/resources/templates/system/filereceive/edit.html index e2aa39c..36c50b9 100644 --- a/ruoyi-admin/src/main/resources/templates/system/filereceive/edit.html +++ b/ruoyi-admin/src/main/resources/templates/system/filereceive/edit.html @@ -1,7 +1,7 @@ - + diff --git a/ruoyi-admin/src/main/resources/templates/system/filereceive/filereceive.html b/ruoyi-admin/src/main/resources/templates/system/filereceive/filereceive.html index e9af521..1904074 100644 --- a/ruoyi-admin/src/main/resources/templates/system/filereceive/filereceive.html +++ b/ruoyi-admin/src/main/resources/templates/system/filereceive/filereceive.html @@ -24,7 +24,10 @@
  • - +
  •  搜索 diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/mapper/TdFileReceiveMapper.java b/ruoyi-system/src/main/java/com/ruoyi/system/mapper/TdFileReceiveMapper.java index 39aa788..18b65a3 100644 --- a/ruoyi-system/src/main/java/com/ruoyi/system/mapper/TdFileReceiveMapper.java +++ b/ruoyi-system/src/main/java/com/ruoyi/system/mapper/TdFileReceiveMapper.java @@ -19,6 +19,8 @@ public interface TdFileReceiveMapper */ public TdFileReceive selectTdFileReceiveByReceiveId(Long receiveId); + public List selectTdFileReceiveByReceiveDepart(String receiveDepart); + /** * 查询涉密文件接收列表 * diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/service/ITdFileReceiveService.java b/ruoyi-system/src/main/java/com/ruoyi/system/service/ITdFileReceiveService.java index 0a742d5..27b7a1e 100644 --- a/ruoyi-system/src/main/java/com/ruoyi/system/service/ITdFileReceiveService.java +++ b/ruoyi-system/src/main/java/com/ruoyi/system/service/ITdFileReceiveService.java @@ -19,6 +19,13 @@ public interface ITdFileReceiveService */ public TdFileReceive selectTdFileReceiveByReceiveId(Long receiveId); + /** + * 根据部门查询接收列表 + * @param receiveDepart + * @return + */ + public List selectTdFileReceiveByReceiveDepart(String receiveDepart); + /** * 查询涉密文件接收列表 * diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/TdFileReceiveServiceImpl.java b/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/TdFileReceiveServiceImpl.java index 0508044..a981f02 100644 --- a/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/TdFileReceiveServiceImpl.java +++ b/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/TdFileReceiveServiceImpl.java @@ -32,6 +32,11 @@ public class TdFileReceiveServiceImpl implements ITdFileReceiveService return tdFileReceiveMapper.selectTdFileReceiveByReceiveId(receiveId); } + @Override + public List selectTdFileReceiveByReceiveDepart(String receiveDepart) { + return tdFileReceiveMapper.selectTdFileReceiveByReceiveDepart(receiveDepart); + } + /** * 查询涉密文件接收列表 * diff --git a/ruoyi-system/src/main/resources/mapper/system/TdFileReceiveMapper.xml b/ruoyi-system/src/main/resources/mapper/system/TdFileReceiveMapper.xml index 65297fe..e44e113 100644 --- a/ruoyi-system/src/main/resources/mapper/system/TdFileReceiveMapper.xml +++ b/ruoyi-system/src/main/resources/mapper/system/TdFileReceiveMapper.xml @@ -48,6 +48,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" where receive_id = #{receiveId} + + insert into td_file_receive