入库业务单添加查询条件;

This commit is contained in:
王奎兴
2026-06-04 11:17:02 +08:00
parent 28b1e0d497
commit 8964f5c087
4 changed files with 18 additions and 2 deletions
@@ -352,6 +352,12 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="orderTypeName != null and orderTypeName != ''">
and a.order_type_name like concat('%', #{orderTypeName}, '%')
</if>
<if test="xfStatus != null and xfStatus != '' and xfStatus == '已下发'">
and b.out_order_number is not null
</if>
<if test="xfStatus != null and xfStatus != '' and xfStatus == '未下发'">
and b.out_order_number is null
</if>
<!-- 出库明细:物料名称、物料编码(同一明细行同时满足;与出库明细口径一致)。关联 material_base_info 避免明细冗余名称与主档不一致时筛不到 -->
<!-- <if test="(materialName != null and materialName != '') or (materialCode != null and materialCode != '')">-->
<!-- and exists (-->
@@ -383,7 +389,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<select id="queryList" parameterType="com.mhd.oms.domain.reservationStockOutOrder.repository.todo.ReservationStockOutOrderDO" resultMap="StockOutOrderResult">
select
<include refid="selectStockOutOrderPo"/>
from reservation_stock_out_order a
from reservation_stock_out_order a left join NGWL_TEST_WMS.stock_out_order b on a.out_order_number = b.out_order_number
<where>
<include refid="selectStockOutOrderPo1"/>
</where>