Merge branch 'wq' of SH-Arbitrate/Arbitrate-Backend into dev
This commit was merged in pull request #106.
This commit is contained in:
+15
-2
@@ -12,6 +12,7 @@ import com.ruoyi.wisdomarbitrate.domain.ArbitrateRecord;
|
||||
import com.ruoyi.wisdomarbitrate.domain.CaseApplication;
|
||||
import com.ruoyi.wisdomarbitrate.domain.SealSignRecord;
|
||||
import com.ruoyi.wisdomarbitrate.domain.vo.SendRoomNoMessageVO;
|
||||
import com.ruoyi.wisdomarbitrate.domain.vo.ToDoCount;
|
||||
import com.ruoyi.wisdomarbitrate.service.ICaseApplicationService;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.security.access.prepost.PreAuthorize;
|
||||
@@ -38,11 +39,23 @@ public class CaseApplicationController extends BaseController {
|
||||
@GetMapping("/list")
|
||||
public TableDataInfo list(CaseApplication caseApplication) {
|
||||
startPage();
|
||||
// List<CaseApplication> list = caseApplicationService.selectCaseApplicationListNew(caseApplication);
|
||||
List<CaseApplication> list = caseApplicationService.selectCaseApplicationList(caseApplication);
|
||||
List<CaseApplication> list = caseApplicationService.selectCaseApplicationListByRole(caseApplication);
|
||||
// List<CaseApplication> list = caseApplicationService.selectCaseApplicationList(caseApplication);
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
||||
/**
|
||||
* 根据角色查询待办数量
|
||||
* @return
|
||||
*/
|
||||
|
||||
@GetMapping("/toDoCount")
|
||||
public AjaxResult toDoCount() {
|
||||
ToDoCount toDoCount = caseApplicationService.selectToDoCount();
|
||||
// List<CaseApplication> list = caseApplicationService.selectCaseApplicationList(caseApplication);
|
||||
return success(toDoCount);
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增立案数据
|
||||
*/
|
||||
|
||||
@@ -0,0 +1,88 @@
|
||||
package com.ruoyi.wisdomarbitrate.domain.vo;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @author wangqiong
|
||||
* @description 待办数量
|
||||
* @date 2023-10-17 09:48
|
||||
*/
|
||||
@Data
|
||||
public class ToDoCount {
|
||||
/**
|
||||
* 立案申请
|
||||
*/
|
||||
private int caseApply;
|
||||
/**
|
||||
* 待立案审查
|
||||
*/
|
||||
private int caseApplyCheck;
|
||||
/**
|
||||
* 待缴费
|
||||
*/
|
||||
private int caseApplyPay;
|
||||
/**
|
||||
* 待缴费确认
|
||||
*/
|
||||
private int caseApplyPayCheck;
|
||||
/**
|
||||
* 待案件质证
|
||||
*/
|
||||
private int caseApplyEvidence;
|
||||
/**
|
||||
* 待组庭审核
|
||||
*/
|
||||
private int caseApplyGroupCheck;
|
||||
/**
|
||||
* 待组庭确定
|
||||
*/
|
||||
private int caseApplyGroupConfirm;
|
||||
/**
|
||||
* 待组庭通知
|
||||
*/
|
||||
// private int caseApplyGroupNotice;
|
||||
/**
|
||||
* 待审核仲裁方式
|
||||
*/
|
||||
private int caseApplyArbitrateWay;
|
||||
/**
|
||||
* 待开庭审理
|
||||
*/
|
||||
private int caseApplyGroupOnline;
|
||||
/**
|
||||
* 待书面审理
|
||||
*/
|
||||
private int caseApplyGroupOffline;
|
||||
/**
|
||||
* 待生成仲裁文书
|
||||
*/
|
||||
private int caseApplyAward;
|
||||
/**
|
||||
* 待核验仲裁文书
|
||||
*/
|
||||
private int caseApplyAwardCheck;
|
||||
/**
|
||||
* 待审核仲裁文书
|
||||
*/
|
||||
private int caseApplyAwardConfirm;
|
||||
/**
|
||||
* 待仲裁文书签名
|
||||
*/
|
||||
private int caseApplyAwardSign;
|
||||
/**
|
||||
* 待仲裁文书用印
|
||||
*/
|
||||
private int caseApplyAwardSeal;
|
||||
/**
|
||||
* 待仲裁文书送达
|
||||
*/
|
||||
private int caseApplyAwardSend;
|
||||
/**
|
||||
* 待案件归档
|
||||
*/
|
||||
private int caseApplyStored;
|
||||
/**
|
||||
* 已归档
|
||||
*/
|
||||
private int caseApplyArchived;
|
||||
}
|
||||
@@ -4,6 +4,7 @@ import com.ruoyi.wisdomarbitrate.domain.Arbitrator;
|
||||
import com.ruoyi.wisdomarbitrate.domain.CaseAffiliate;
|
||||
import com.ruoyi.wisdomarbitrate.domain.CaseApplication;
|
||||
import com.ruoyi.wisdomarbitrate.domain.dto.CaseConfirmPayDTO;
|
||||
import com.ruoyi.wisdomarbitrate.domain.vo.ToDoCount;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
import java.util.List;
|
||||
@@ -60,4 +61,10 @@ public interface CaseApplicationMapper {
|
||||
* @return
|
||||
*/
|
||||
List<CaseApplication> selectDeptHeadCaseApplicationList(@Param("caseApplication") CaseApplication caseApplication, @Param("statusList")List<Integer> caseStatusList);
|
||||
|
||||
ToDoCount selectAdminCaseToDoCount();
|
||||
|
||||
ToDoCount selectDeptHeadCaseToDoCount( @Param("statusList")List<Integer> caseStatusList);
|
||||
|
||||
ToDoCount selectTodoCountByRole(CaseApplication caseApplication);
|
||||
}
|
||||
|
||||
+8
-1
@@ -6,12 +6,13 @@ import com.ruoyi.wisdomarbitrate.domain.ArbitrateRecord;
|
||||
import com.ruoyi.wisdomarbitrate.domain.CaseApplication;
|
||||
import com.ruoyi.wisdomarbitrate.domain.SealSignRecord;
|
||||
import com.ruoyi.wisdomarbitrate.domain.vo.SendRoomNoMessageVO;
|
||||
import com.ruoyi.wisdomarbitrate.domain.vo.ToDoCount;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public interface ICaseApplicationService {
|
||||
List<CaseApplication> selectCaseApplicationList(CaseApplication caseApplication);
|
||||
List<CaseApplication> selectCaseApplicationListNew(CaseApplication caseApplication);
|
||||
List<CaseApplication> selectCaseApplicationListByRole(CaseApplication caseApplication);
|
||||
|
||||
|
||||
int insertcaseApplication(CaseApplication caseApplication);
|
||||
@@ -53,4 +54,10 @@ public interface ICaseApplicationService {
|
||||
AjaxResult creatTrialRecord(ArbitrateRecord arbitrateRecord);
|
||||
|
||||
CaseApplication selectSignSealUrl(CaseApplication caseApplication) throws EsignDemoException;
|
||||
|
||||
/**
|
||||
* 查询待办数量
|
||||
* @return
|
||||
*/
|
||||
ToDoCount selectToDoCount();
|
||||
}
|
||||
|
||||
+57
-1
@@ -29,6 +29,7 @@ import com.ruoyi.common.core.domain.entity.SysUser;
|
||||
import com.ruoyi.common.exception.EsignDemoException;
|
||||
import com.ruoyi.common.exception.ServiceException;
|
||||
import com.ruoyi.system.mapper.SysUserMapper;
|
||||
import com.ruoyi.wisdomarbitrate.domain.vo.ToDoCount;
|
||||
import com.ruoyi.wisdomarbitrate.utils.CaseLogUtils;
|
||||
import com.ruoyi.common.utils.bean.BeanUtils;
|
||||
import com.ruoyi.system.mapper.SysDeptMapper;
|
||||
@@ -99,7 +100,7 @@ public class CaseApplicationServiceImpl implements ICaseApplicationService {
|
||||
* @return
|
||||
*/
|
||||
// @Override
|
||||
public List<CaseApplication> selectCaseApplicationListNew(CaseApplication caseApplication) {
|
||||
public List<CaseApplication> selectCaseApplicationListByRole(CaseApplication caseApplication) {
|
||||
// 获取登录用户
|
||||
LoginUser loginUser = getLoginUser();
|
||||
SysUser user = loginUser.getUser();
|
||||
@@ -151,6 +152,59 @@ public class CaseApplicationServiceImpl implements ICaseApplicationService {
|
||||
|
||||
}
|
||||
@Override
|
||||
public ToDoCount selectToDoCount() {
|
||||
|
||||
// 获取登录用户
|
||||
LoginUser loginUser = getLoginUser();
|
||||
SysUser user = loginUser.getUser();
|
||||
Long userId = user.getUserId();
|
||||
|
||||
// 查询登录人身份证号
|
||||
SysUser sysUser = sysUserMapper.selectUserById(userId);
|
||||
List<SysRole> roles = sysUser.getRoles();
|
||||
// 没有角色不能查看案件列表
|
||||
if(CollectionUtil.isEmpty(roles)){
|
||||
throw new ServiceException("该用户没有角色权限");
|
||||
}
|
||||
CaseApplication caseApplication = new CaseApplication();
|
||||
for (SysRole role : roles) {
|
||||
// 超级管理员和仲裁委(部门长)案件,可查看所有案件 √
|
||||
if(role.getRoleName().equals("超级管理员")
|
||||
){
|
||||
return caseApplicationMapper.selectAdminCaseToDoCount();
|
||||
}
|
||||
// 查看所有案件
|
||||
if(role.getRoleName().equals("仲裁委")
|
||||
||role.getRoleName().equals("部门长")){
|
||||
List<Integer> caseStatusList=new ArrayList<>();
|
||||
caseStatusList.add(CaseApplicationConstants.CONFIRMDED_PENDING_TRIAL);
|
||||
caseStatusList.add(CaseApplicationConstants.SIGN_ARBITRATION);
|
||||
caseStatusList.add(CaseApplicationConstants.ARBITRATED_SEAL);
|
||||
return caseApplicationMapper.selectDeptHeadCaseToDoCount(caseStatusList);
|
||||
}
|
||||
if(role.getRoleName().equals("仲裁员")){
|
||||
caseApplication.setUserId(String.valueOf(userId));
|
||||
}
|
||||
if(role.getRoleName().equals("法律顾问")){
|
||||
// 查询角色有关的用户部门
|
||||
List<Long> deptIds = sysDeptMapper.selectUserDeptListByRoleId(role.getRoleId());
|
||||
caseApplication.setDeptIds(deptIds);
|
||||
}
|
||||
if(StrUtil.isEmpty(caseApplication.getNameId())&&role.getRoleName().equals("申请人")){
|
||||
// 查询角色有关的用户部门
|
||||
caseApplication.setNameId(String.valueOf(sysUser.getDeptId()));
|
||||
}
|
||||
if(role.getRoleName().equals("被申请人")){
|
||||
//
|
||||
caseApplication.setIdCard(String.valueOf(sysUser.getIdCard()));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// 根据条件查询申请人,被申请人,仲裁员,法律顾问案件
|
||||
return caseApplicationMapper.selectTodoCountByRole(caseApplication);
|
||||
}
|
||||
@Override
|
||||
public List<CaseApplication> selectCaseApplicationList(CaseApplication caseApplication) {
|
||||
return caseApplicationMapper.selectAdminCaseApplicationList(caseApplication);
|
||||
|
||||
@@ -1272,6 +1326,8 @@ public class CaseApplicationServiceImpl implements ICaseApplicationService {
|
||||
return caseApplication;
|
||||
}
|
||||
|
||||
|
||||
|
||||
@Override
|
||||
@Transactional
|
||||
public int pendTralSure(CaseApplication caseApplication) {
|
||||
|
||||
+7
-4
@@ -81,7 +81,7 @@ public class WeChatUserServiceImpl implements WeChatUserService {
|
||||
*/
|
||||
public static void setCodeCache(String key, String code)
|
||||
{
|
||||
SpringUtils.getBean(RedisCache.class).setCacheObject(getVerifyCodeCacheKey(key), code, 5,TimeUnit.MILLISECONDS);
|
||||
SpringUtils.getBean(RedisCache.class).setCacheObject(getVerifyCodeCacheKey(key), code, 5,TimeUnit.MINUTES);
|
||||
}
|
||||
|
||||
|
||||
@@ -107,9 +107,12 @@ public class WeChatUserServiceImpl implements WeChatUserService {
|
||||
@Transactional
|
||||
@Override
|
||||
public AjaxResult registerUser(IdentityAuthentication ientityAuthentication) {
|
||||
String codeCache = getCodeCache(ientityAuthentication.getPhone());
|
||||
// 校验短信验证码
|
||||
if(StrUtil.isEmpty(getCodeCache(ientityAuthentication.getPhone()))){
|
||||
return AjaxResult.success("验证码校验失败");
|
||||
if(StrUtil.isEmpty(codeCache)){
|
||||
return AjaxResult.warn("验证码校验失败");
|
||||
}else if(!codeCache.equals(ientityAuthentication.getVerifyCode())){
|
||||
return AjaxResult.warn("验证码校验失败");
|
||||
}
|
||||
SysUser sysUserName=sysUserMapper.selectUserByUserName(ientityAuthentication.getUserName());
|
||||
if(sysUserName!=null){
|
||||
@@ -140,7 +143,7 @@ public class WeChatUserServiceImpl implements WeChatUserService {
|
||||
sysUser.setPassword(SecurityUtils.encryptPassword(ientityAuthentication.getPassWord()));
|
||||
int row = sysUserMapper.insertUser(sysUser);
|
||||
if(row<1) {
|
||||
return AjaxResult.error("注册失败");
|
||||
return AjaxResult.warn("注册失败");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -39,7 +39,14 @@
|
||||
|
||||
<select id="selectCaseApplicationList" parameterType="CaseApplication" resultMap="CaseApplicationResult">
|
||||
select t1.* from(
|
||||
select t.* from(
|
||||
select dinstinct(t.id),t.case_num ,t.case_subject_amount ,t.register_date ,t.arbitrat_method,
|
||||
t.arbitratMethodName,t.case_status,t.caseStatusName,t.hear_date ,t.arbitrat_claims ,
|
||||
t.loan_start_date ,t.loan_end_date ,t.claim_princi_owed ,t.claim_interest_owed ,t.claim_liquid_damag,t.fee_payable ,
|
||||
t.begin_video_date ,t.online_video_person ,t.contract_number ,t.create_by ,t.create_time ,
|
||||
t.update_by ,t.update_time , t.arbitrator_name,t.name,t.application_organ_id,t.application_organ_name as
|
||||
applicantName,
|
||||
t.arbitrator_id,t.identity_num , t.identity_type,t.filearbitra_url
|
||||
from(
|
||||
select c.id ,c.case_num ,c.case_subject_amount ,c.register_date ,c.arbitrat_method ,
|
||||
CASE c.arbitrat_method when 1 then '开庭审理' when 2 then '书面审理'
|
||||
ELSE '无审理方式'
|
||||
@@ -98,19 +105,106 @@
|
||||
#{item}
|
||||
</foreach> )
|
||||
</if>
|
||||
|
||||
<where>
|
||||
<!--申请人-->
|
||||
<if test="nameId != null and nameId != ''">
|
||||
or( ( t.application_organ_id = #{nameId} AND t.identity_type=1
|
||||
and t.case_status in (0,2))
|
||||
)
|
||||
</if>
|
||||
</where>
|
||||
</where>
|
||||
) t1
|
||||
<!-- <where>-->
|
||||
<!-- <!–申请人–>-->
|
||||
<!-- <if test="nameId != null and nameId != ''">-->
|
||||
<!-- and ( t1.application_organ_id = #{nameId} AND t1.identity_type=1-->
|
||||
<!-- and t1.case_status in (0,2)-->
|
||||
<!-- )-->
|
||||
<!-- </if>-->
|
||||
<!-- </where>-->
|
||||
order by t1.create_time desc,t1.case_num desc
|
||||
</select>
|
||||
<select id="selectTodoCountByRole" resultType="com.ruoyi.wisdomarbitrate.domain.vo.ToDoCount">
|
||||
select sum( case when t1.case_status=0 then 1 else 0 end) caseApply,
|
||||
sum( case when t1.case_status=1 then 1 else 0 end) caseApplyCheck,
|
||||
sum( case when t1.case_status=2 then 1 else 0 end) caseApplyPay,
|
||||
sum( case when t1.case_status=3 then 1 else 0 end) caseApplyPayCheck,
|
||||
sum( case when t1.case_status=4 then 1 else 0 end) caseApplyEvidence,
|
||||
sum( case when t1.case_status=5 then 1 else 0 end) caseApplyGroupCheck,
|
||||
sum( case when t1.case_status=6 then 1 else 0 end) caseApplyGroupConfirm,
|
||||
sum( case when t1.case_status=7 then 1 else 0 end) caseApplyArbitrateWay,
|
||||
sum( case when t1.case_status=8 then 1 else 0 end) caseApplyGroupOnline,
|
||||
sum( case when t1.case_status=9 then 1 else 0 end) caseApplyGroupOffline,
|
||||
sum( case when t1.case_status=10 then 1 else 0 end) caseApplyAward,
|
||||
sum( case when t1.case_status=11 then 1 else 0 end) caseApplyAwardCheck,
|
||||
sum( case when t1.case_status=12 then 1 else 0 end) caseApplyAwardConfirm,
|
||||
sum( case when t1.case_status=13 then 1 else 0 end) caseApplyAwardSign,
|
||||
sum( case when t1.case_status=14 then 1 else 0 end) caseApplyAwardSeal,
|
||||
sum( case when t1.case_status=15 then 1 else 0 end) caseApplyAwardSend,
|
||||
sum( case when t1.case_status=16 then 1 else 0 end) caseApplyStored,
|
||||
sum( case when t1.case_status=17 then 1 else 0 end) caseApplyArchived
|
||||
from(
|
||||
select DISTINCT(t.id),t.case_status,t.application_organ_id, t.arbitrator_id,t.identity_num , t.identity_type from(
|
||||
select c.id ,
|
||||
c.case_status,ca.application_organ_id,
|
||||
c.arbitrator_id,ca.identity_num , ca.identity_type
|
||||
from case_application c
|
||||
LEFT JOIN case_affiliate ca ON ca.case_appli_id = c.id
|
||||
<where>
|
||||
<if test="caseStatus != null">
|
||||
AND c.case_status = #{caseStatus}
|
||||
</if>
|
||||
<if test="caseNum != null and caseNum != ''">
|
||||
AND c.case_num = #{caseNum}
|
||||
</if>
|
||||
<if test="caseStatusList != null and caseStatusList.size() > 0">
|
||||
and c.case_status in
|
||||
<foreach item="caseStatus" collection="caseStatusList" open="(" separator="," close=")">
|
||||
#{caseStatus}
|
||||
</foreach>
|
||||
</if>
|
||||
</where>
|
||||
) t
|
||||
<where>
|
||||
|
||||
<!--被申请人-->
|
||||
<if test="idCard != null and idCard != ''">
|
||||
or (t.identity_num=#{idCard} AND t.identity_type=2 and t.case_status=4)
|
||||
</if>
|
||||
<!--仲裁员-->
|
||||
<if test="userId != null and userId != ''">
|
||||
or ( t.identity_type=1 and
|
||||
t.case_status in (7,8,9,12,13,14)
|
||||
and
|
||||
instr (t.arbitrator_id,#{userId})>0)
|
||||
</if>
|
||||
<!--法律顾问-->
|
||||
<if test="deptIds != null and deptIds.size() > 0">
|
||||
or (t.identity_type=1 and t.case_status in (1,5,11,15,16)
|
||||
and t.application_organ_id in
|
||||
<foreach item="item" collection="deptIds" open="(" separator="," close=")">
|
||||
#{item}
|
||||
</foreach> )
|
||||
</if>
|
||||
<!--申请人-->
|
||||
<if test="nameId != null and nameId != ''">
|
||||
and ( t1.application_organ_id = #{nameId} AND t1.identity_type=1
|
||||
and t1.case_status in (0,2)
|
||||
or( ( t.application_organ_id = #{nameId} AND t.identity_type=1
|
||||
and t.case_status in (0,2))
|
||||
)
|
||||
</if>
|
||||
</where>
|
||||
order by t1.create_time desc,t1.case_num desc
|
||||
) t1
|
||||
-- <where>
|
||||
<!-- <!–申请人–>-->
|
||||
<!-- <if test="nameId != null and nameId != ''">-->
|
||||
<!-- and ( t1.application_organ_id = #{nameId} AND t1.identity_type=1-->
|
||||
<!-- and t1.case_status in (0,2)-->
|
||||
<!-- )-->
|
||||
<!-- </if>-->
|
||||
-- </where>
|
||||
</select>
|
||||
|
||||
<select id="selectAdminCaseApplicationList" parameterType="CaseApplication" resultMap="CaseApplicationResult">
|
||||
select c.id ,c.case_num ,c.case_subject_amount ,c.register_date ,c.arbitrat_method ,
|
||||
CASE c.arbitrat_method when 1 then '开庭审理' when 2 then '书面审理'
|
||||
@@ -150,6 +244,53 @@
|
||||
</where>
|
||||
order by c.create_time desc,c.case_num desc
|
||||
</select>
|
||||
<select id="selectAdminCaseToDoCount" resultType="com.ruoyi.wisdomarbitrate.domain.vo.ToDoCount">
|
||||
SELECT
|
||||
sum( case when c.case_status=0 then 1 else 0 end) caseApply,
|
||||
sum( case when c.case_status=1 then 1 else 0 end) caseApplyCheck,
|
||||
sum( case when c.case_status=2 then 1 else 0 end) caseApplyPay,
|
||||
sum( case when c.case_status=3 then 1 else 0 end) caseApplyPayCheck,
|
||||
sum( case when c.case_status=4 then 1 else 0 end) caseApplyEvidence,
|
||||
sum( case when c.case_status=5 then 1 else 0 end) caseApplyGroupCheck,
|
||||
sum( case when c.case_status=6 then 1 else 0 end) caseApplyGroupConfirm,
|
||||
sum( case when c.case_status=7 then 1 else 0 end) caseApplyArbitrateWay,
|
||||
sum( case when c.case_status=8 then 1 else 0 end) caseApplyGroupOnline,
|
||||
sum( case when c.case_status=9 then 1 else 0 end) caseApplyGroupOffline,
|
||||
sum( case when c.case_status=10 then 1 else 0 end) caseApplyAward,
|
||||
sum( case when c.case_status=11 then 1 else 0 end) caseApplyAwardCheck,
|
||||
sum( case when c.case_status=12 then 1 else 0 end) caseApplyAwardConfirm,
|
||||
sum( case when c.case_status=13 then 1 else 0 end) caseApplyAwardSign,
|
||||
sum( case when c.case_status=14 then 1 else 0 end) caseApplyAwardSeal,
|
||||
sum( case when c.case_status=15 then 1 else 0 end) caseApplyAwardSend,
|
||||
sum( case when c.case_status=16 then 1 else 0 end) caseApplyStored,
|
||||
sum( case when c.case_status=17 then 1 else 0 end) caseApplyArchived
|
||||
FROM
|
||||
case_application c
|
||||
LEFT JOIN case_affiliate ca ON ca.case_appli_id = c.id
|
||||
AND ca.identity_type = 1
|
||||
WHERE
|
||||
c.case_status IN (
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
3,
|
||||
4,
|
||||
5,
|
||||
6,
|
||||
7,
|
||||
8,
|
||||
9,
|
||||
10,
|
||||
11,
|
||||
12,
|
||||
13,
|
||||
14,
|
||||
15,
|
||||
16,
|
||||
17
|
||||
)
|
||||
|
||||
</select>
|
||||
<select id="selectDeptHeadCaseApplicationList" parameterType="CaseApplication" resultMap="CaseApplicationResult">
|
||||
select c.id ,c.case_num ,c.case_subject_amount ,c.register_date ,c.arbitrat_method ,
|
||||
CASE c.arbitrat_method when 1 then '开庭审理' when 2 then '书面审理'
|
||||
@@ -193,6 +334,35 @@
|
||||
</where>
|
||||
order by c.create_time desc,c.case_num desc
|
||||
</select>
|
||||
<select id="selectDeptHeadCaseToDoCount" resultType="com.ruoyi.wisdomarbitrate.domain.vo.ToDoCount">
|
||||
select sum( case when c.case_status=0 then 1 else 0 end) caseApply,
|
||||
sum( case when c.case_status=1 then 1 else 0 end) caseApplyCheck,
|
||||
sum( case when c.case_status=2 then 1 else 0 end) caseApplyPay,
|
||||
sum( case when c.case_status=3 then 1 else 0 end) caseApplyPayCheck,
|
||||
sum( case when c.case_status=4 then 1 else 0 end) caseApplyEvidence,
|
||||
sum( case when c.case_status=5 then 1 else 0 end) caseApplyGroupCheck,
|
||||
sum( case when c.case_status=6 then 1 else 0 end) caseApplyGroupConfirm,
|
||||
sum( case when c.case_status=7 then 1 else 0 end) caseApplyArbitrateWay,
|
||||
sum( case when c.case_status=8 then 1 else 0 end) caseApplyGroupOnline,
|
||||
sum( case when c.case_status=9 then 1 else 0 end) caseApplyGroupOffline,
|
||||
sum( case when c.case_status=10 then 1 else 0 end) caseApplyAward,
|
||||
sum( case when c.case_status=11 then 1 else 0 end) caseApplyAwardCheck,
|
||||
sum( case when c.case_status=12 then 1 else 0 end) caseApplyAwardConfirm,
|
||||
sum( case when c.case_status=13 then 1 else 0 end) caseApplyAwardSign,
|
||||
sum( case when c.case_status=14 then 1 else 0 end) caseApplyAwardSeal,
|
||||
sum( case when c.case_status=15 then 1 else 0 end) caseApplyAwardSend,
|
||||
sum( case when c.case_status=16 then 1 else 0 end) caseApplyStored,
|
||||
sum( case when c.case_status=17 then 1 else 0 end) caseApplyArchived
|
||||
from case_application c
|
||||
LEFT JOIN case_affiliate ca ON ca.case_appli_id = c.id AND ca.identity_type=1
|
||||
<where>
|
||||
c.case_status in
|
||||
<foreach item="caseStatus" collection="statusList" open="(" separator="," close=")">
|
||||
#{caseStatus}
|
||||
</foreach>
|
||||
</where>
|
||||
|
||||
</select>
|
||||
|
||||
|
||||
<select id="selectCaseApplicationCount" parameterType="CaseApplication" resultType="int">
|
||||
|
||||
Reference in New Issue
Block a user