|
|
|
@ -78,13 +78,13 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
msd.quantity
|
|
|
|
|
from mes_prepare ms,mes_prepare_detail msd
|
|
|
|
|
<where>
|
|
|
|
|
<if test="workorderCode != null and workorderCode != ''"> and workorder_code = #{workorderCode}</if>
|
|
|
|
|
<if test="workorderCode != null and workorderCode != ''"> and workorder_code like concat('%', #{workorderCode}, '%')</if>
|
|
|
|
|
<if test="workorderName != null and workorderName != ''"> and workorder_name like concat('%', #{workorderName}, '%')</if>
|
|
|
|
|
<if test="parentOrder != null and parentOrder != ''"> and parent_order = #{parentOrder}</if>
|
|
|
|
|
<if test="orderId != null and orderId != ''"> and order_id = #{orderId}</if>
|
|
|
|
|
<if test="orderId != null and orderId != ''"> and order_id like concat('%', #{orderId}, '%')</if>
|
|
|
|
|
<if test="orderCode != null and orderCode != ''"> and order_code = #{orderCode}</if>
|
|
|
|
|
<if test="productId != null and productId != ''"> and product_id = #{productId}</if>
|
|
|
|
|
<if test="productCode != null and productCode != ''"> and product_code = #{productCode}</if>
|
|
|
|
|
<if test="productCode != null and productCode != ''"> and product_code like concat('%', #{productCode}, '%')</if>
|
|
|
|
|
<if test="prodType != null and prodType != ''"> and prod_type = #{prodType}</if>
|
|
|
|
|
<if test="productName != null and productName != ''"> and product_name like concat('%', #{productName}, '%')</if>
|
|
|
|
|
<if test="productSpc != null and productSpc != ''"> and product_spc = #{productSpc}</if>
|
|
|
|
@ -92,7 +92,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
<if test="productDate != null "> and product_date = #{productDate}</if>
|
|
|
|
|
<if test="shiftId != null and shiftId != ''"> and shift_id = #{shiftId}</if>
|
|
|
|
|
<if test="ancestors != null and ancestors != ''"> and ancestors = #{ancestors}</if>
|
|
|
|
|
<if test="status != null and status != ''"> and status = #{status}</if>
|
|
|
|
|
<if test="status != null and status != ''"> and ms.status = #{status}</if>
|
|
|
|
|
<if test="factoryCode != null and factoryCode != ''"> and factory_code = #{factoryCode}</if>
|
|
|
|
|
and ms.del_flag = '0'
|
|
|
|
|
</where>
|
|
|
|
|