|
|
|
@ -229,8 +229,15 @@ date_format(from_unixtime(create_time),'%Y-%m-%d') = date_format(now(),'%Y-%m-%d
|
|
|
|
|
AND lacr.is_deleted = '0' |
|
|
|
|
<where> |
|
|
|
|
lawo.is_deleted = 0 |
|
|
|
|
<if test="param.id != null and param.id != '' ">and lawo.id = #{param.id } </if> |
|
|
|
|
<if test="param.workOrderType != null and param.workOrderType != '' ">and lawo.work_order_type = #{param.workOrderType } </if> |
|
|
|
|
<if test="param.ids != null and param.ids != ''"> |
|
|
|
|
and lawo.id IN |
|
|
|
|
<bind name="idList" value="param.ids.split(',')"/> |
|
|
|
|
<foreach collection="idList" item="id" open="(" close=")" separator=","> |
|
|
|
|
#{id} |
|
|
|
|
</foreach> |
|
|
|
|
</if> |
|
|
|
|
|
|
|
|
|
<if test="param.workOrderType != null and param.workOrderType != '' ">and lawo.work_order_type = #{param.workOrderType } </if> |
|
|
|
|
<if test="param.initiationIdentification != null and param.initiationIdentification != '' ">and lawo.initiation_identification = #{param.initiationIdentification } </if> |
|
|
|
|
<if test="param.discoveryNode != null and param.discoveryNode != '' ">and lawo.discovery_node = #{param.discoveryNode } </if> |
|
|
|
|
<if test="param.workOrderNumber != null and param.workOrderNumber != '' ">and lawo.work_order_number like concat('%',#{param.workOrderNumber },'%') </if> |
|
|
|
@ -329,7 +336,8 @@ date_format(from_unixtime(create_time),'%Y-%m-%d') = date_format(now(),'%Y-%m-%d
|
|
|
|
|
law.reviewed_by, |
|
|
|
|
law.audit_time, |
|
|
|
|
law.entry_time, |
|
|
|
|
law.operator |
|
|
|
|
law.operator, |
|
|
|
|
law.brand_name |
|
|
|
|
FROM |
|
|
|
|
logpm_aftersales_processor lap |
|
|
|
|
LEFT JOIN logpm_aftersales_work_order law ON lap.work_order_id = law.id |
|
|
|
@ -360,6 +368,7 @@ date_format(from_unixtime(create_time),'%Y-%m-%d') = date_format(now(),'%Y-%m-%d
|
|
|
|
|
<if test="param.auditTime != null and param.auditTime != '' ">and date_format(from_unixtime(lawo.audit_time),'%Y-%m-%d') = date_format(#{param.auditTime},'%Y-%m-%d') </if> |
|
|
|
|
<if test="param.entryTime != null and param.entryTime != '' ">and date_format(from_unixtime(lawo.entry_time),'%Y-%m-%d') = date_format(#{param.entryTime},'%Y-%m-%d') </if> |
|
|
|
|
<if test="param.overTime != null and param.overTime != '' ">and date_format(from_unixtime(lawo.over_time),'%Y-%m-%d') = date_format(#{param.overTime}),'%Y-%m-%d') </if> |
|
|
|
|
<if test="param.brandName != null and param.brandName != '' ">and law.brand_name like concat('%',#{param.brandName},'%') </if> |
|
|
|
|
</where> |
|
|
|
|
|
|
|
|
|
</select> |
|
|
|
|