Browse Source

增加 诉求审核删选功能

master
qushutong 7 months ago
parent
commit
62d73f9d16
  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. 6
      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

@ -6241,7 +6241,7 @@ public class ItemServiceImpl extends BaseServiceImpl<ItemDao, ItemEntity> implem
appealFormDTO.setFiles(appealAuditFormDTO.getFiles()); appealFormDTO.setFiles(appealAuditFormDTO.getFiles());
appealFormDTO.setJjqk(appealAuditFormDTO.getJjqk()); appealFormDTO.setJjqk(appealAuditFormDTO.getJjqk());
appealFormDTO.setPjjg(appealAuditFormDTO.getPjjg()); appealFormDTO.setPjjg(appealAuditFormDTO.getPjjg());
appealFormDTO.setShjg(appealAuditFormDTO.getShjg()); appealFormDTO.setShjg("01");
appealFormDTO.setSqid(appealAuditFormDTO.getSqid()); appealFormDTO.setSqid(appealAuditFormDTO.getSqid());
appealFormDTO.setSsyy(appealAuditFormDTO.getSsyy()); appealFormDTO.setSsyy(appealAuditFormDTO.getSsyy());
String appeal = pushToCityGridServiceImpl.appeal(appealFormDTO); String appeal = pushToCityGridServiceImpl.appeal(appealFormDTO);

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

@ -4354,12 +4354,18 @@
<if test="endTime != null and endTime != ''"> <if test="endTime != null and endTime != ''">
and i.CREATED_TIME &lt;= #{endTime} and i.CREATED_TIME &lt;= #{endTime}
</if> </if>
<if test="endTime != null and endTime != ''">
and i.CREATED_TIME &lt;= #{endTime}
</if>
<if test="deptId != null and deptId != ''"> <if test="deptId != null and deptId != ''">
AND find_in_set(#{deptId},i.ALL_DEPT_IDS) AND find_in_set(#{deptId},i.ALL_DEPT_IDS)
</if> </if>
<if test="appealSource != null and appealSource != ''"> <if test="appealSource != null and appealSource != ''">
and i.APPEAL_SOURCE = #{appealSource} and i.APPEAL_SOURCE = #{appealSource}
</if> </if>
<if test='isExamine != null and isExamine != "" and isExamine == "1"'>
and i.STREET_APPEAL_FLAG = '1' and i.APPEAL_FLAG=0
</if>
ORDER BY ORDER BY
i.UPDATED_TIME DESC i.UPDATED_TIME DESC
</select> </select>

Loading…
Cancel
Save