Przeglądaj źródła

优化 待办查询

java110 5 lat temu
rodzic
commit
aef2c18c39

+ 5 - 3
java110-db/src/main/resources/mapper/community/RepairServiceDaoImplMapper.xml

@@ -322,7 +322,9 @@
         </if>
     </select>
 
-    <!-- 查询报修信息信息 add by wuxw 2018-07-03 -->
+    <!-- 查询报修信息信息 add by wuxw 2018-07-03
+     将状态先调整  and ru.state in ('10001','10002')
+     -->
     <select id="getStaffRepairInfo" parameterType="Map" resultType="Map">
         select distinct t.repair_name,t.repair_name repairName,t.appointment_time,t.appointment_time
         appointmentTime,t.repair_type,t.repair_type repairType,t.context,t.repair_id,t.repair_id
@@ -342,8 +344,8 @@
         left join t_dict td on rs.return_visit_flag = td.status_cd and td.table_name='r_repair_setting' and
         td.table_columns='return_visit_flag'
         where 1 =1
-        and ru.state in ('10001','10002') and t.state
-        in('1000','1100','1200','1300','1400','1700','1800')
+        and ru.state = '10001'
+        and t.state in('1000','1100','1200','1300','1400','1700','1800')
         <if test="staffId !=null and staffId != ''">
             and ru.staff_id = #{staffId}
         </if>