Browse Source

诉求状态追加

feature/dangjian
zhangyuan 3 years ago
parent
commit
ea64656496
  1. 2
      esua-epdc/epdc-module/epdc-events/epdc-events-server/src/main/java/com/elink/esua/epdc/modules/item/service/impl/ItemServiceImpl.java
  2. 22
      esua-epdc/epdc-module/epdc-events/epdc-events-server/src/main/resources/mapper/item/ItemDao.xml

2
esua-epdc/epdc-module/epdc-events/epdc-events-server/src/main/java/com/elink/esua/epdc/modules/item/service/impl/ItemServiceImpl.java

@ -2352,7 +2352,7 @@ public class ItemServiceImpl extends BaseServiceImpl<ItemDao, ItemEntity> implem
sendDto.setSJLY(CommonConstants.PARTY_EVENT_SOURCE_MS); sendDto.setSJLY(CommonConstants.PARTY_EVENT_SOURCE_MS);
if (ItemHandleCategoryEnum.HANDLE_CLOSING_CASE_APPLY.getValue() == dto.getHandleCategory()) { if (ItemHandleCategoryEnum.HANDLE_CLOSING_CASE_APPLY.getValue() == dto.getHandleCategory()) {
//结案申请 //结案申请
sendDto.setSENDACTDEFID(CommonConstants.PARTY_SEND_TO); // sendDto.setSENDACTDEFID(CommonConstants.PARTY_SEND_TO);
sendDto.setSJZT(CommonConstants.PARTY_ITEM_ZT_ZERO); sendDto.setSJZT(CommonConstants.PARTY_ITEM_ZT_ZERO);
} else { } else {
//吹哨 //吹哨

22
esua-epdc/epdc-module/epdc-events/epdc-events-server/src/main/resources/mapper/item/ItemDao.xml

@ -2182,7 +2182,18 @@
and i.PEOPLE_FLAG = #{appealType} and i.PEOPLE_FLAG = #{appealType}
</if> </if>
<if test="itemState != null and itemState != ''"> <if test="itemState != null and itemState != ''">
<choose>
<when test="itemState == '80'">
and i.EVALUATION_STATE = '1'
and i.EVALUATION_TIME IS NULL
</when >
<when test="itemState == '90'">
and i.EVALUATION_TIME IS NOT NULL
</when >
<otherwise>
and i.ITEM_STATE = #{itemState} and i.ITEM_STATE = #{itemState}
</otherwise>
</choose>
</if> </if>
<if test="deptIdList != null and deptIdList.size() > 0"> <if test="deptIdList != null and deptIdList.size() > 0">
AND i.GRID_ID IN AND i.GRID_ID IN
@ -2283,7 +2294,18 @@
and i.PEOPLE_FLAG = #{appealType} and i.PEOPLE_FLAG = #{appealType}
</if> </if>
<if test="itemState != null and itemState != ''"> <if test="itemState != null and itemState != ''">
<choose>
<when test="itemState == '80'">
and i.EVALUATION_STATE = '1'
and i.EVALUATION_TIME IS NULL
</when >
<when test="itemState == '90'">
and i.EVALUATION_TIME IS NOT NULL
</when >
<otherwise>
and i.ITEM_STATE = #{itemState} and i.ITEM_STATE = #{itemState}
</otherwise>
</choose>
</if> </if>
<if test="deptIdList != null and deptIdList.size() > 0"> <if test="deptIdList != null and deptIdList.size() > 0">
AND i.GRID_ID IN AND i.GRID_ID IN

Loading…
Cancel
Save