oms修改

This commit is contained in:
赵辉
2026-04-20 20:51:52 +08:00
parent 7e5cb10e39
commit 209d87409e
10 changed files with 41 additions and 11 deletions
@@ -190,7 +190,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
and ORDER_SOURCE = #{orderSource}
</if>
<if test="inOrderNumber != null and inOrderNumber != ''">
and IN_ORDER_NUMBER = #{inOrderNumber}
AND IN_ORDER_NUMBER LIKE CONCAT('%', #{inOrderNumber}, '%')
</if>
<if test="createCompanyId != null and createCompanyId != ''">
@@ -206,9 +206,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<!-- <if test="updateTime != null ">-->
<!-- and UPDATE_TIME = #{updateTime}-->
<!-- </if>-->
<if test="goodsNumber != null and goodsNumber != ''">
and GOODS_NUMBER = #{goodsNumber}
</if>
<if test="goodsNumber != null and goodsNumber != ''">
AND GOODS_NUMBER LIKE CONCAT('%', #{goodsNumber}, '%')
</if>
<if test="loadingAreaId != null and loadingAreaId != ''">
and LOADING_AREA_ID = #{loadingAreaId}
</if>
@@ -390,7 +390,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
and CREATE_USER_ID = #{createUserId}
</if>
<if test="appointShipper != null and appointShipper != ''">
and APPOINT_SHIPPER = #{appointShipper}
AND APPOINT_SHIPPER LIKE CONCAT('%', #{appointShipper}, '%')
</if>
<if test="isStatus != null ">
and IS_STATUS = #{isStatus}