@ -96,9 +96,6 @@
GROUP_CONCAT(DISTINCT lapr.compensation_method) AS compensationMethods
FROM
logpm_aftersales_work_order lawo
LEFT JOIN logpm_aftersales_processor lap ON lawo.id = lap.work_order_id
AND lap.types_of = '2'
AND lap.conditions IN ( 1, 2 )
LEFT JOIN logpm_aftersales_completion_record lacr ON lacr.work_order_id = lawo.id
AND lacr.is_deleted = '0'
LEFT JOIN (SELECT
@ -117,8 +114,24 @@
GROUP BY
a.id) AS t ON t.id = lawo.id
LEFT JOIN logpm_aftersales_processing_results AS lapr ON lapr.work_order_id = lawo.id AND lapr.is_deleted = 0
LEFT JOIN logpm_aftersales_processor AS lap ON lawo.id = lap.work_order_id AND lap.is_deleted = 0
<where >
lawo.is_deleted = 0
<if test= "param.workOrderNumbers != null and param.workOrderNumbers != '' " >
and lawo.work_order_number in
<foreach collection= "param.workOrderNumbers.split(',')" item= "workOrderNumber" separator= "," open= "(" close= ")" >
#{workOrderNumber}
</foreach>
</if>
<if test= "param.orderCodes != null and param.orderCodes != '' " >
and lawo.order_code in
<foreach collection= "param.orderCodes.split(',')" item= "orderCode" separator= "," open= "(" close= ")" >
#{orderCode}
</foreach>
</if>
<if test= "param.startCreateTime != null and param.endCreateTime != null " >
and lawo.create_time between #{param.startCreateTime} and #{param.endCreateTime}
</if>
<if test= "param.workOrderStatusNameS != null and param.workOrderStatusNameS != '' " > and lawo.work_order_status = #{param.workOrderStatusNameS } </if>
<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>
@ -147,7 +160,6 @@
<if test= "param.customerServiceName != null and param.customerServiceName != '' " > and lawo.customer_service_name like concat('%', #{param.customerServiceName },'%') </if>
<if test= "param.waybillMallId != null and param.waybillMallId != '' " > and lawo.waybill_mall_id = #{param.waybillMallId } </if>
<if test= "param.problemDescription != null and param.problemDescription != '' " > and lawo.problem_description = #{param.problemDescription} </if>
<if test= "param.warehouseId != null and param.warehouseId != '' and param.handleStatus != null " > and (lap.warehouse_id = #{param.warehouseId} OR lap.business_id = #{param.warehouseId}) </if>
<if test= "param.personResponsible != null and param.personResponsible != '' " > and lawo.person_responsible = #{param.personResponsible } </if>
<if test= "param.processNumber != null and param.processNumber != '' " > and lawo.process_number = #{param.processNumber } </if>
<if test= "param.reviewedBy != null and param.reviewedBy != '' " > and lawo.reviewed_by = #{param.reviewedBy } </if>
@ -160,10 +172,9 @@
<if test= "param.customerIdentification != null and param.customerIdentification == 1 " >
and lawo.work_order_status IN ( '10', '20', '21', '30', '40', '50', '60', '70', '80', '90' ,'100','110')
</if>
<if test= "param.handleStatus != null and param.handleStatus == 40 " > and lawo.work_order_status in ('10') and lap.types_of = '2' and lap.processing_status in ('1') </if>
<if test= "param.handleStatus != null and param.handleStatus == 50 " > and lawo.work_order_status in ('20') and lap.types_of = '2' </if>
<if test= "param.handleStatus!= null and param.handleStatus == 30" > and lawo.work_order_status in (21,30) and lap.processing_status = '4' </if>
<if test= "param.handleStatus!= null and param.handleStatus == 10 " > and lap.types_of = '2' </if>
<if test= "param.handleStatus != null and param.handleStatus == 40 " > and lawo.work_order_status in ('10') </if>
<if test= "param.handleStatus != null and param.handleStatus == 50 " > and lawo.work_order_status in ('20') </if>
<if test= "param.handleStatus!= null and param.handleStatus == 30" > and lawo.work_order_status in (21,30) </if>
<if test= "param.handleStatus!= null and param.handleStatus == 20 " > and lawo.work_order_status in (80,100,70) </if>
<if test= "param.workOrderType != null and param.workOrderType != '' " > and lawo.work_order_type = #{param.workOrderType } </if>
<if test= "param.discoveryNode != null and param.discoveryNode != '' " > and lawo.discovery_node = #{param.discoveryNode } </if>
@ -177,6 +188,12 @@
<if test= "param.brandName != null and param.brandName != '' " > and t.brand_name like concat('%',#{param.brandName},'%') </if>
<if test= "param.waybillNumber != null and param.waybillNumber != ''" > and t.waybill_number like concat('%',#{param.waybillNumber},'%') </if>
<if test= "param.packageCode != null and param.packageCode != ''" > and t.package_code like concat('%',#{param.packageCode},'%') </if>
<if test= "param.warehouseId != null " >
and lap.business_id IN
<foreach collection= "warehouseIds" item= "warehouseId" open= "(" separator= "," close= ")" >
#{warehouseId}
</foreach>
</if>
</where>
group by lawo.id
ORDER BY lawo.create_time DESC
@ -291,6 +308,8 @@
GROUP BY
a.id) AS t ON t.id = lawo.id
LEFT JOIN logpm_aftersales_processing_results AS lapr ON lapr.work_order_id = lawo.id AND lapr.is_deleted = 0
LEFT JOIN logpm_aftersales_processor AS lap ON lawo.id = lap.work_order_id AND lap.is_deleted = 0
<where >
lawo.is_deleted = 0
<if test= "param.workOrderStatusNameS != null and param.workOrderStatusNameS != '' " > and lawo.work_order_status = #{param.workOrderStatusNameS } </if>
@ -559,6 +578,21 @@
<where >
lap.conditions != '3' and lap.is_deleted = 0 and law.id is not null and lap.processing_status in ('1','3') and lap.types_of = '2' and law.work_order_status in ('10','20','30')
<if test= "param.workOrderNumbers != null and param.workOrderNumbers != '' " >
and law.work_order_number in
<foreach collection= "param.workOrderNumbers.split(',')" item= "workOrderNumber" separator= "," open= "(" close= ")" >
#{workOrderNumber}
</foreach>
</if>
<if test= "param.orderCodes != null and param.orderCodes != '' " >
and law.order_code in
<foreach collection= "param.orderCodes.split(',')" item= "orderCode" separator= "," open= "(" close= ")" >
#{orderCode}
</foreach>
</if>
<if test= "param.startCreateTime != null and param.endCreateTime != null " >
and law.create_time between #{param.startCreateTime} and #{param.endCreateTime}
</if>
<if test= "param.workOrderStatusNameS != null and param.workOrderStatusNameS != '' " > and law.work_order_status = #{param.workOrderStatusNameS } </if>
<if test= "param.operator != null and param.operator != '' " > and law.operator = #{param.operator } </if>
<if test= "param.workOrderStatus != null and param.workOrderStatus != ''" > and law.work_order_status = #{param.workOrderStatus}</if>
@ -686,6 +720,21 @@
LEFT JOIN logpm_aftersales_completion_record lacr ON lacr.work_order_id = lapr.work_order_id
<where >
lawo.work_order_status = 90 and lap.is_deleted = 0
<if test= "param.workOrderNumbers != null and param.workOrderNumbers != '' " >
and lawo.work_order_number in
<foreach collection= "param.workOrderNumbers.split(',')" item= "workOrderNumber" separator= "," open= "(" close= ")" >
#{workOrderNumber}
</foreach>
</if>
<if test= "param.orderCodes != null and param.orderCodes != '' " >
and lawo.order_code in
<foreach collection= "param.orderCodes.split(',')" item= "orderCode" separator= "," open= "(" close= ")" >
#{orderCode}
</foreach>
</if>
<if test= "param.startCreateTime != null and param.endCreateTime != null " >
and lawo.create_time between #{param.startCreateTime} and #{param.endCreateTime}
</if>
<if test= "param.businessId != null" > and lap.business_id =#{param.businessId}</if>
<if test= "param.businessName != null and param.businessName != ''" > and lap.business_name LIKE CONCAT( #{param.businessName}, '%')</if>
<if test= "param.workOrderNumber != null and param.workOrderNumber != ''" > and lawo.work_order_number LIKE CONCAT( #{param.workOrderNumber}, '%')</if>