oms修改
This commit is contained in:
+5
-5
@@ -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}
|
||||
|
||||
@@ -70,7 +70,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
and ISSUE_TIME <= #{issueEndTime} + 1 - 1/86400
|
||||
</if>
|
||||
<if test="goodsNumber != null and goodsNumber != ''">
|
||||
and GOODS_NUMBER = #{goodsNumber}
|
||||
and GOODS_NUMBER like concat('%', #{goodsNumber}, '%')
|
||||
</if>
|
||||
<if test="orgName != null and orgName != ''">
|
||||
and ORG_NAME like concat('%', #{orgName}, '%')
|
||||
@@ -82,8 +82,14 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
and BUSINESS_DOCUMENT_ID = #{businessDocumentId}
|
||||
</if>
|
||||
<if test="businessDocumentNumber != null and businessDocumentNumber != ''">
|
||||
and BUSINESS_DOCUMENT_NUMBER = #{businessDocumentNumber}
|
||||
and BUSINESS_DOCUMENT_NUMBER like concat('%', #{businessDocumentNumber}, '%')
|
||||
</if>
|
||||
<if test="appointShipper != null and appointShipper != ''">
|
||||
and appoint_shipper like concat('%', #{appointShipper}, '%')
|
||||
</if>
|
||||
<if test="orderStatus != null and orderStatus != ''">
|
||||
and order_status = #{orderStatus}
|
||||
</if>
|
||||
<if test="organizationName != null and organizationName != ''">
|
||||
and ORGANIZATION_NAME like concat('%', #{organizationName}, '%')
|
||||
</if>
|
||||
|
||||
Reference in New Issue
Block a user