parent
5a9d0ba0f6
commit
d9e9b93889
@ -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<TdFileReceive> tdFileReceives = tdFileReceiveService.selectTdFileReceiveByReceiveDepart(deptService.selectDeptById(getSysUser().getDeptId()).getDeptName());
|
||||||
|
List<TdFileReceive> 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<TdFileReceive> list = tdFileReceiveService.selectTdFileReceiveList(tdFileReceive);
|
||||||
|
ExcelUtil<TdFileReceive> util = new ExcelUtil<TdFileReceive>(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));
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,77 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="zh" xmlns:th="http://www.thymeleaf.org" >
|
||||||
|
<head>
|
||||||
|
<th:block th:include="include :: header('涉密文件提取')" />
|
||||||
|
<th:block th:include="include :: datetimepicker-css" />
|
||||||
|
</head>
|
||||||
|
<body class="white-bg">
|
||||||
|
<div class="wrapper wrapper-content animated fadeInRight ibox-content">
|
||||||
|
<form class="form-horizontal m" id="form-filereceive-edit" th:object="${tdFileReceive}">
|
||||||
|
<input name="receiveId" th:field="*{receiveId}" type="hidden">
|
||||||
|
<input name="receiveState" th:value="'1'" class="form-control" type="hidden">
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="col-sm-3 control-label">文件编号:</label>
|
||||||
|
<div class="col-sm-8">
|
||||||
|
<input name="fileId" readonly th:field="*{fileId}" class="form-control" type="text">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="col-sm-3 control-label">文件名称:</label>
|
||||||
|
<div class="col-sm-8">
|
||||||
|
<input name="fileName" readonly th:field="*{fileName}" class="form-control" type="text">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="col-sm-3 control-label">发文单位:</label>
|
||||||
|
<div class="col-sm-8">
|
||||||
|
<input name="provideDepart" readonly th:field="*{provideDepart}" class="form-control" type="text">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="col-sm-3 control-label">发文日期:</label>
|
||||||
|
<div class="col-sm-8">
|
||||||
|
<input name="provideDate" readonly th:value="${#dates.format(tdFileReceive.provideDate, 'yyyy-MM-dd')}" class="form-control" placeholder="yyyy-MM-dd" type="text">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="col-sm-3 control-label">接收单位:</label>
|
||||||
|
<div class="col-sm-8">
|
||||||
|
<input name="receiveDepartid" readonly th:field="*{receiveDepartid}" class="form-control" type="text">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="col-sm-3 control-label">提取人员:</label>
|
||||||
|
<div class="col-sm-8">
|
||||||
|
<input name="extractUserid" th:value="${user.userName}" readonly class="form-control" type="text">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="col-sm-3 control-label">提取日期:</label>
|
||||||
|
<div class="col-sm-8">
|
||||||
|
<input name="extractDate" readonly class="form-control" placeholder="yyyy-MM-dd" type="text">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
<th:block th:include="include :: footer" />
|
||||||
|
<th:block th:include="include :: datetimepicker-js" />
|
||||||
|
<script th:inline="javascript">
|
||||||
|
var prefix = ctx + "system/fileextract";
|
||||||
|
$("#form-filereceive-edit").validate({
|
||||||
|
focusCleanup: true
|
||||||
|
});
|
||||||
|
|
||||||
|
function submitHandler() {
|
||||||
|
if ($.validate.form()) {
|
||||||
|
$.operate.save(prefix + "/edit", $('#form-fileextract-edit').serialize());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
$("input[name='extractDate']").val($.common.dateFormat(new Date(),"yyyy-MM-dd"));
|
||||||
|
$("input[name='extractDate']").datetimepicker({
|
||||||
|
format: "yyyy-mm-dd",
|
||||||
|
minView: "month",
|
||||||
|
autoclose: true
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -0,0 +1,126 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="zh" xmlns:th="http://www.thymeleaf.org" xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
|
||||||
|
<head>
|
||||||
|
<th:block th:include="include :: header('涉密文件提取列表')" />
|
||||||
|
</head>
|
||||||
|
<body class="gray-bg">
|
||||||
|
<div class="container-div">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-sm-12 search-collapse">
|
||||||
|
<form id="formId">
|
||||||
|
<div class="select-list">
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<label>文件编号:</label>
|
||||||
|
<input type="text" name="fileId"/>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<label>文件名称:</label>
|
||||||
|
<input type="text" name="fileName"/>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<label>发文单位:</label>
|
||||||
|
<input type="text" name="provideDepart"/>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<label>提取状态:</label>
|
||||||
|
<select name="extractState" th:with="type=${@dict.getType('sys_file_extract')}">
|
||||||
|
<option value="">所有</option>
|
||||||
|
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option>
|
||||||
|
</select>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a class="btn btn-primary btn-rounded btn-sm" onclick="$.table.search()"><i class="fa fa-search"></i> 搜索</a>
|
||||||
|
<a class="btn btn-warning btn-rounded btn-sm" onclick="$.form.reset()"><i class="fa fa-refresh"></i> 重置</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="btn-group-sm" id="toolbar" role="group">
|
||||||
|
<a class="btn btn-warning" onclick="$.table.exportExcel()" shiro:hasPermission="system:fileextract:export">
|
||||||
|
<i class="fa fa-download"></i> 导出
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-sm-12 select-table table-striped">
|
||||||
|
<table id="bootstrap-table"></table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<th:block th:include="include :: footer" />
|
||||||
|
<script th:inline="javascript">
|
||||||
|
var editFlag = [[${@permission.hasPermi('system:fileextract:edit')}]];
|
||||||
|
var removeFlag = [[${@permission.hasPermi('system:fileextract:remove')}]];
|
||||||
|
var receiveStateDatas = [[${@dict.getType('sys_file_receive')}]];
|
||||||
|
var extractStateDatas = [[${@dict.getType('sys_file_extract')}]];
|
||||||
|
var destoryStateDatas = [[${@dict.getType('sys_destory_state')}]];
|
||||||
|
var prefix = ctx + "system/fileextract";
|
||||||
|
|
||||||
|
$(function() {
|
||||||
|
var options = {
|
||||||
|
url: prefix + "/list",
|
||||||
|
createUrl: prefix + "/add",
|
||||||
|
updateUrl: prefix + "/edit/{id}",
|
||||||
|
removeUrl: prefix + "/remove",
|
||||||
|
exportUrl: prefix + "/export",
|
||||||
|
modalName: "涉密文件提取",
|
||||||
|
columns: [{
|
||||||
|
checkbox: true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
field: 'receiveId',
|
||||||
|
title: '接收编号',
|
||||||
|
visible: false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
field: 'fileId',
|
||||||
|
title: '文件编号'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
field: 'fileName',
|
||||||
|
title: '文件名称'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
field: 'provideDepart',
|
||||||
|
title: '发文单位'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
field: 'provideDate',
|
||||||
|
title: '发文日期'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
field: 'receiveDepartid',
|
||||||
|
title: '接收单位'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
field: 'extractState',
|
||||||
|
title: '提取状态',
|
||||||
|
formatter: function(value, row, index) {
|
||||||
|
return $.table.selectDictLabel(extractStateDatas, value);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
field: 'extractUserid',
|
||||||
|
title: '提取人员'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
field: 'extractDate',
|
||||||
|
title: '提取日期'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: '操作',
|
||||||
|
align: 'center',
|
||||||
|
formatter: function(value, row, index) {
|
||||||
|
var actions = [];
|
||||||
|
actions.push('<a class="btn btn-success btn-xs ' + editFlag + '" href="javascript:void(0)" onclick="$.operate.edit(\'' + row.receiveId + '\')"><i class="fa fa-edit"></i>提取</a> ');
|
||||||
|
//actions.push('<a class="btn btn-danger btn-xs ' + removeFlag + '" href="javascript:void(0)" onclick="$.operate.remove(\'' + row.receiveId + '\')"><i class="fa fa-remove"></i>删除</a>');
|
||||||
|
return actions.join('');
|
||||||
|
}
|
||||||
|
}]
|
||||||
|
};
|
||||||
|
$.table.init(options);
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
</html>
|
Loading…
Reference in new issue