oms预约单修改

This commit is contained in:
赵辉
2026-05-11 15:43:57 +08:00
parent 7198b01a23
commit 594cd7a269
11 changed files with 676 additions and 124 deletions
@@ -35,9 +35,7 @@
<!-- <if test="updateTime != null ">-->
<!-- and UPDATE_TIME = #{updateTime}-->
<!-- </if>-->
<if test="goodsNumber != null and goodsNumber != ''">
and GOODS_NUMBER = #{goodsNumber}
</if>
<if test="loadingAreaId != null and loadingAreaId != ''">
and LOADING_AREA_ID = #{loadingAreaId}
</if>
@@ -56,6 +54,9 @@
<if test="loadingUnit != null and loadingUnit != ''">
and LOADING_UNIT = #{loadingUnit}
</if>
<if test="organizationId != null and organizationId != ''">
and ORGANIZATION_ID= #{organizationId}
</if>
<if test="freighterName != null and freighterName != ''">
and FREIGHTER_NAME like concat('%', #{freighterName}, '%')
</if>
@@ -218,8 +219,11 @@
<if test="createUserId != null and createUserId != ''">
and CREATE_USER_ID = #{createUserId}
</if>
<if test="appointShipper != null and appointShipper != ''">
and APPOINT_SHIPPER = #{appointShipper}
<if test="goodsNumber != null and goodsNumber != ''">
and GOODS_NUMBER LIKE CONCAT('%', #{goodsNumber}, '%')
</if>
<if test="appointShipper != null and appointShipper != ''">
and APPOINT_SHIPPER LIKE CONCAT('%', #{appointShipper}, '%')
</if>
<if test="isStatus != null ">
and IS_STATUS = #{isStatus}