inner join inv_prein_order on orderId = inv_prein_order.billNo
left join basic_udirel bu on bu.id = ic.relId
left join basic_products bp on bu.uuid = bp.uuid
left join auth_warehouse aw on inv_prein_order.invCode = aw.code
<where>
<iftest="orderId != null and orderId != ''">
AND ic.orderId = #{orderId}
</if>
<iftest="code != null and code != ''">
and ic.code like concat('%',#{code},'%')
and ic.code like concat('%', #{code}, '%')
</if>
<iftest="batchNo != null and batchNo != ''">
AND ic.batchNo = #{batchNo}
</if>
<iftest="nameCode != null and nameCode != ''">
AND ic.nameCode = #{nameCode}
</if>
<iftest="invCode != null and invCode != ''">
AND inv_prein_order.invCode = #{invCode}
</if>
<iftest="productName != null and productName != ''">
AND bp.cpmctymc = #{productName}
</if>
<iftest="ggxh != null and ggxh != ''">
and bp.ggxh like concat('%', #{ggxh}, '%')
</if>
<iftest="manufactory != null and manufactory != ''">
AND bp.manufactory = #{manufactory}
</if>
<iftest="zczbhhzbapzbh != null and zczbhhzbapzbh != ''">
AND bp.zczbhhzbapzbh = #{zczbhhzbapzbh}
</if>
<iftest="startAduditTime != null and startAduditTime != '' and endAduditTime != null and endAduditTime != ''">
AND date_format(inv_prein_order.auditTime, '%Y-%m-%d') between date_format(#{startAduditTime}, '%Y-%m-%d') and date_format(#{endAduditTime}, '%Y-%m-%d')