|
|
|
@ -9,15 +9,19 @@ import com.ruoyi.common.core.page.TableDataInfo;
|
|
|
|
|
import com.ruoyi.common.enums.BusinessType;
|
|
|
|
|
import com.ruoyi.system.domain.TdFileProvide;
|
|
|
|
|
import com.ruoyi.system.domain.TdFileReceive;
|
|
|
|
|
import com.ruoyi.system.domain.carrier.TdCarrier;
|
|
|
|
|
import com.ruoyi.system.service.ISysDictDataService;
|
|
|
|
|
import com.ruoyi.system.service.ITdFileProvideService;
|
|
|
|
|
import com.ruoyi.system.service.ITdFileReceiveService;
|
|
|
|
|
import com.ruoyi.system.service.carrier.TdCarrierService;
|
|
|
|
|
import com.ruoyi.web.controller.manager.CarrierManager;
|
|
|
|
|
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 javax.annotation.Resource;
|
|
|
|
|
import java.util.ArrayList;
|
|
|
|
|
import java.util.List;
|
|
|
|
|
import java.util.concurrent.atomic.AtomicReference;
|
|
|
|
@ -31,15 +35,15 @@ import java.util.stream.Collectors;
|
|
|
|
|
public class SysFilenumController extends BaseController {
|
|
|
|
|
private String prefix = "system/fileprovide/filenum";
|
|
|
|
|
|
|
|
|
|
@Autowired
|
|
|
|
|
private ITdFileProvideService tdFileProvideService;
|
|
|
|
|
@Autowired
|
|
|
|
|
private ITdFileReceiveService tdFileReceiveService;
|
|
|
|
|
@Resource
|
|
|
|
|
private CarrierManager carrierManager;
|
|
|
|
|
|
|
|
|
|
@Resource
|
|
|
|
|
private TdCarrierService carrierService;
|
|
|
|
|
|
|
|
|
|
@RequiresPermissions("system:filenum:view")
|
|
|
|
|
@GetMapping()
|
|
|
|
|
public String fileprovide()
|
|
|
|
|
{
|
|
|
|
|
public String fileprovide() {
|
|
|
|
|
return prefix + "/filenum";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -49,25 +53,21 @@ public class SysFilenumController extends BaseController {
|
|
|
|
|
@RequiresPermissions("system:filenum:list")
|
|
|
|
|
@PostMapping("/list")
|
|
|
|
|
@ResponseBody
|
|
|
|
|
public TableDataInfo list(TdFileProvide tdFileProvide)
|
|
|
|
|
{
|
|
|
|
|
public TableDataInfo list(TdCarrier tdCarrier) {
|
|
|
|
|
startPage();
|
|
|
|
|
List<TdFileProvide> list = tdFileProvideService.selectTdFileProvideList(tdFileProvide);
|
|
|
|
|
return getDataTable(list);
|
|
|
|
|
List<TdCarrier> carriers = carrierManager.selectTdCarrierList(tdCarrier);
|
|
|
|
|
return getDataTable(carriers);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 打印界面,根据文件编号区分
|
|
|
|
|
*/
|
|
|
|
|
@RequiresPermissions("system:filenum:print")
|
|
|
|
|
@GetMapping("/print/{fileId}")
|
|
|
|
|
@GetMapping("/print/{id}")
|
|
|
|
|
@Log(title = "文件统计", businessType = BusinessType.PRINT)
|
|
|
|
|
public String print(@PathVariable("fileId") String fileId, ModelMap mmap)
|
|
|
|
|
{
|
|
|
|
|
List<TdFileReceive> tdFileReceives = tdFileReceiveService.selectTdFileReceiveByFileId(fileId);
|
|
|
|
|
TdFileProvide tdFileProvide = tdFileProvideService.selectTdFileProvideByFileId(fileId);
|
|
|
|
|
mmap.put("tdFileReceives", tdFileReceives);
|
|
|
|
|
mmap.put("tdFileProvide", tdFileProvide);
|
|
|
|
|
public String print(@PathVariable("id") String id, ModelMap mmap) {
|
|
|
|
|
TdCarrier tdCarrier = carrierManager.selectTdCarrier(id);
|
|
|
|
|
mmap.put("tdCarrier", tdCarrier);
|
|
|
|
|
mmap.put("sysuser", getSysUser());
|
|
|
|
|
return prefix + "/print";
|
|
|
|
|
}
|
|
|
|
@ -76,8 +76,8 @@ public class SysFilenumController extends BaseController {
|
|
|
|
|
private ISysDictDataService dictDataService;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
*
|
|
|
|
|
* 载体类型统计
|
|
|
|
|
*
|
|
|
|
|
* @return com.ruoyi.common.core.domain.AjaxResult
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
@ -91,8 +91,8 @@ public class SysFilenumController extends BaseController {
|
|
|
|
|
List<Long> yAxisData = new ArrayList<>();
|
|
|
|
|
smType.forEach(xAxis -> {
|
|
|
|
|
AtomicReference<Long> yAxis = new AtomicReference<>(0L);
|
|
|
|
|
Integer count = tdFileProvideService.lambdaQuery()
|
|
|
|
|
.eq(TdFileProvide::getProvideLevel, xAxis.getDictValue())
|
|
|
|
|
Integer count = carrierService.lambdaQuery()
|
|
|
|
|
.eq(TdCarrier::getCarrierLevel, xAxis.getDictValue())
|
|
|
|
|
.count();
|
|
|
|
|
yAxis.set(Long.valueOf(count));
|
|
|
|
|
|
|
|
|
@ -106,8 +106,8 @@ public class SysFilenumController extends BaseController {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
*
|
|
|
|
|
* 载体密级统计
|
|
|
|
|
*
|
|
|
|
|
* @return com.ruoyi.common.core.domain.AjaxResult
|
|
|
|
|
*/
|
|
|
|
|
@PostMapping("/countSecret")
|
|
|
|
@ -119,8 +119,8 @@ public class SysFilenumController extends BaseController {
|
|
|
|
|
List<JSONObject> jsonObjects = new ArrayList<>();
|
|
|
|
|
smType.forEach(xAxis -> {
|
|
|
|
|
AtomicReference<Long> value = new AtomicReference<>(0L);
|
|
|
|
|
Integer count = tdFileProvideService.lambdaQuery()
|
|
|
|
|
.eq(TdFileProvide::getFileSecret, xAxis.getDictValue())
|
|
|
|
|
Integer count = carrierService.lambdaQuery()
|
|
|
|
|
.eq(TdCarrier::getCarrierSecret, xAxis.getDictValue())
|
|
|
|
|
.count();
|
|
|
|
|
value.set(Long.valueOf(count));
|
|
|
|
|
JSONObject jsonObject = new JSONObject();
|
|
|
|
|