|
@@ -25,6 +25,7 @@
|
|
|
<select id="selectDeliverQuantityConfirmList" parameterType="DeliverQuantityConfirm" resultMap="DeliverQuantityConfirmResult">
|
|
|
<include refid="selectDeliverQuantityConfirmVo"/>
|
|
|
<where>
|
|
|
+ 1=1
|
|
|
<if test="isDelete != null and isDelete != ''"> and is_delete = #{isDelete}</if>
|
|
|
<if test="orderNumber != null and orderNumber != ''"> and order_number = #{orderNumber}</if>
|
|
|
<if test="orderItem != null and orderItem != ''"> and order_item = #{orderItem}</if>
|
|
@@ -40,6 +41,7 @@
|
|
|
<if test="deliverQty != null "> and deliver_qty = #{deliverQty}</if>
|
|
|
<if test="deliverWt != null "> and deliver_wt = #{deliverWt}</if>
|
|
|
<if test="confirmQuantity != null "> and confirm_quantity = #{confirmQuantity}</if>
|
|
|
+ and create_time between now() - interval 100 day and now()
|
|
|
</where>
|
|
|
</select>
|
|
|
|