文书制作整合部分接口

This commit is contained in:
yuyan02 2025-04-30 18:00:51 +08:00
parent 1d03f8e222
commit cef3d438f0
6 changed files with 5 additions and 6 deletions

View File

@ -76,7 +76,7 @@ const mergePDFs = async () => {
try{
const doneElements = documents.value.filter(item => item.status === 'done');
if(doneElements.length===0){
ElMessage.warning('案件没有文书制作完成!')
ElMessage.warning('没有文书制作完成!')
}else{
const undoElements = documents.value.filter(item => item.status === undefined||item.status !== 'done');
let wwcwsmc=''

View File

@ -46,7 +46,7 @@
<el-table-column label="案件号" prop="caseNum" min-width="200"></el-table-column>
<el-table-column label="案件名称" prop="caseName" min-width="480"></el-table-column>
<el-table-column label="文书数" prop="documentCount" min-width="60"/>
<el-table-column label="文书制作进度" min-width="220">
<el-table-column label="制作进度" min-width="220">
<template #default="{ row }">
<el-progress :text-inside="true" v-if="row.documentProgress<50" :stroke-width="20"
:percentage="row.documentProgress" status="exception"></el-progress>

View File

@ -70,7 +70,7 @@ public class AutoEnforcementPlan extends BaseModel {
@Comment("企业ID列表")
private String enterpriseIds;
/**
* 计划类型1重点检查企业2双重双随机一公开
* 计划类型1重点检查企业2双重双随机一公开清单
*/
@Column(length = 1)
@Comment("计划类型1重点检查企业清单2双重双随机一公开清单")

View File

@ -607,7 +607,7 @@ public class Case extends BaseModel {
private EnforceCheck enforceCheck;
@Transient
private Long documentProgress;// 文书制作进度
private Long documentProgress;// 制作进度
@Transient
private Integer documentCount;// 文书制作完成数

View File

@ -68,7 +68,6 @@ public class EnforcementInfoDto {
private String fillingFlag;//立案
private String planId;//任务id(自动执法计划派发)
private String planType; //任务类型(自动执法计划派发)1重点检查企业清单2双重双随机一公开清单
}

View File

@ -159,7 +159,7 @@ public class EnforcementInfoService {
enforceCheck.setPlanId(enforcementInfoDto.getPlanId());
if ("1".equals(enforcementInfoDto.getPlanType())) { // 重点检查企业清单
enforceCheck.setCheckType("7");
} else if ("2".equals(enforcementInfoDto.getPlanType())) { // 双重双随机一公开清单
} else if ("2".equals(enforcementInfoDto.getPlanType())) { // 2双重双随机一公开清单
enforceCheck.setCheckType("8");
}
} else {