fix
wzy
2021-11-11 23c3bc31f574ee9573c8045edad0233b55a0ffa6
zq-erp/src/main/resources/mybatis/mapper/hive/SysProjServicesDao.xml
@@ -328,9 +328,7 @@
         <if test="record.vipId != null and record.vipId !='' ">
            and a.VIP_ID   = #{record.vipId}
         </if>
         <if test="record.isOverTime != null  and record.serviceNo !=''   ">
            and a.IS_OVERTIME  > #{record.isOverTime}
         </if>
         <if test="record.serviceNo != null and record.serviceNo !='' ">
            and a.SERVICE_NO  like CONCAT('%',#{record.serviceNo},'%')
         </if>
@@ -700,4 +698,10 @@
   </select>
   <select id="selectProjServicesByOrderItemId" resultMap="SysProjServicesMap">
      select a.* from sys_proj_services a
        inner join sys_beautician_state b on a.id=b.SERVICES_ID
        inner join sys_proj_use c on c.id=b.puse_id
      where ORDER_ITEM_ID=#{itemId} and a.STATE!='预约取消'
   </select>
</mapper>