|
|
|
@ -96,6 +96,7 @@
|
|
|
|
|
p.zczbhhzbapzbh
|
|
|
|
|
FROM thr_products_add_di tdi
|
|
|
|
|
LEFT JOIN productinfo p ON tdi.uuid = p.uuid
|
|
|
|
|
LEFT JOIN company c on c.customerId=tdi.customerId
|
|
|
|
|
<where>
|
|
|
|
|
<if test="checkStatus != null">
|
|
|
|
|
AND tdi.status = #{checkStatus}
|
|
|
|
@ -124,6 +125,9 @@
|
|
|
|
|
<if test="diType != '' and diType != null">
|
|
|
|
|
AND p.diType = #{diType}
|
|
|
|
|
</if>
|
|
|
|
|
<if test="companyName != '' and companyName != null">
|
|
|
|
|
AND c.companyName = #{companyName}
|
|
|
|
|
</if>
|
|
|
|
|
</where>
|
|
|
|
|
order by tdi.createTime DESC
|
|
|
|
|
|
|
|
|
|