代码冲突解决
This commit is contained in:
@@ -134,14 +134,7 @@
|
||||
</if>
|
||||
</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">
|
||||
@@ -226,14 +219,6 @@
|
||||
</if>
|
||||
</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> -->
|
||||
</select>
|
||||
|
||||
<select id="selectAdminCaseApplicationList" parameterType="CaseApplication" resultMap="CaseApplicationResult">
|
||||
@@ -322,106 +307,6 @@
|
||||
)
|
||||
|
||||
</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 '书面审理'
|
||||
ELSE '无审理方式'
|
||||
END arbitratMethodName,
|
||||
c.case_status ,
|
||||
CASE c.case_status when 0 then '立案申请' when 1 then '待立案审查' when 2 then '待缴费'
|
||||
when 3 then '待缴费确认' when 4 then '待案件质证' when 5 then '待组庭审核'
|
||||
when 6 then '待组庭确定' when 7 then '待审核仲裁方式' when 8 then '待开庭审理'
|
||||
when 9 then '待书面审理' when 10 then '待生成仲裁文书' when 11 then '待核验仲裁文书'
|
||||
when 12 then '待审核仲裁文书' when 13 then '待仲裁文书签名' when 14 then '待仲裁文书用印'
|
||||
when 15 then '待仲裁文书送达' when 16 then '待案件归档' when 17 then '已归档'
|
||||
ELSE '无案件状态'
|
||||
END caseStatusName,
|
||||
c.hear_date ,c.arbitrat_claims ,
|
||||
c.loan_start_date ,c.loan_end_date ,c.claim_princi_owed ,c.claim_interest_owed ,c.claim_liquid_damag ,c.fee_payable ,
|
||||
c.begin_video_date ,c.online_video_person ,c.contract_number ,c.create_by ,c.create_time ,
|
||||
c.update_by ,c.update_time , c.arbitrator_name,ca.application_organ_id applicationOrganId ,ca.application_organ_name as applicantName,c.filearbitra_url
|
||||
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>
|
||||
<if test="caseApplication.caseStatus != null">
|
||||
AND c.case_status = #{caseApplication.caseStatus}
|
||||
</if>
|
||||
<if test="caseApplication.caseNum != null and caseApplication.caseNum != ''">
|
||||
AND c.case_num = #{caseApplication.caseNum}
|
||||
</if>
|
||||
<if test="caseApplication.nameId != null and caseApplication.nameId != ''">
|
||||
AND ca.application_organ_id=#{caseApplication.nameId} AND ca.identity_type=1
|
||||
</if>
|
||||
<if test="caseApplication.caseStatusList != null and caseApplication.caseStatusList.size() > 0">
|
||||
and c.case_status in
|
||||
<foreach item="caseStatus" collection="caseApplication.caseStatusList" open="(" separator="," close=")">
|
||||
#{caseStatus}
|
||||
</foreach>
|
||||
</if>
|
||||
</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>
|
||||
<!--部门长-->
|
||||
<if test="statusList != null and statusList.size() > 0">
|
||||
or c.case_status in
|
||||
<foreach item="caseStatus" collection="statusList" open="(" separator="," close=")">
|
||||
#{caseStatus}
|
||||
</foreach>
|
||||
<!--被申请人-->
|
||||
<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 != ''">
|
||||
or( ( t.application_organ_id = #{nameId} AND t.identity_type=1
|
||||
and t.case_status in (0,2))
|
||||
)
|
||||
</if>
|
||||
</if>
|
||||
</where>
|
||||
|
||||
</select>
|
||||
|
||||
|
||||
<select id="selectCaseApplicationCount" parameterType="CaseApplication" resultType="int">
|
||||
|
||||
Reference in New Issue
Block a user