Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
M
mini-wms
概览
Overview
Details
Activity
Cycle Analytics
版本库
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
问题
0
Issues
0
列表
Board
标记
里程碑
合并请求
0
Merge Requests
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
Snippets
成员
Members
Collapse sidebar
Close sidebar
活动
图像
聊天
创建新问题
作业
提交
Issue Boards
Open sidebar
周海峰
mini-wms
Commits
adc69b18
Commit
adc69b18
authored
Dec 18, 2025
by
zhangtw
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
入库查询条件添加模糊查询
parent
bc9ae42e
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
6 行增加
和
6 行删除
+6
-6
ruoyi-inventory/src/main/resources/mapper/inventory/InboundOrderItemsMapper.xml
+3
-3
ruoyi-inventory/src/main/resources/mapper/inventory/InboundOrdersMapper.xml
+3
-3
没有找到文件。
ruoyi-inventory/src/main/resources/mapper/inventory/InboundOrderItemsMapper.xml
View file @
adc69b18
...
...
@@ -384,16 +384,16 @@
AND DATE(io.inbound_date)
<
= #{inboundDateEnd}
</if>
<if
test=
"sapNo != null and sapNo != ''"
>
AND ms.sap_no
= #{sapNo}
AND ms.sap_no
like concat('%', #{sapNo}, '%')
</if>
<if
test=
"materialName != null and materialName != ''"
>
AND ms.material_name LIKE CONCAT('%', #{materialName}, '%')
</if>
<if
test=
"orderId != null and orderId != ''"
>
AND ioi.order_id
= #{orderId}
AND ioi.order_id
like concat('%', #{orderId}, '%')
</if>
<if
test=
"batchId != null and batchId != ''"
>
AND ioi.batch_id
= #{batchId}
AND ioi.batch_id
like concat('%', #{batchId}, '%')
</if>
<if
test=
"warehouseId != null and warehouseId != ''"
>
AND ioi.warehouse_id = #{warehouseId}
...
...
ruoyi-inventory/src/main/resources/mapper/inventory/InboundOrdersMapper.xml
View file @
adc69b18
...
...
@@ -76,10 +76,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<include
refid=
"selectInboundOrdersVo"
/>
<where>
<if
test=
"id != null and Id != ''"
>
and id = #{Id}
</if>
<if
test=
"orderId != null and orderId != ''"
>
and order_id
= #{orderId}
</if>
<if
test=
"systemNo != null and systemNo != ''"
>
and system_no
= #{systemNo}
</if>
<if
test=
"orderId != null and orderId != ''"
>
and order_id
like concat('%', #{orderId}, '%')
</if>
<if
test=
"systemNo != null and systemNo != ''"
>
and system_no
like concat('%', #{systemNo}, '%')
</if>
<if
test=
"orderTypeId != null and orderTypeId != ''"
>
and order_type_id = #{orderTypeId}
</if>
<if
test=
"batchId != null and batchId != ''"
>
and batch_id
= #{batchId}
</if>
<if
test=
"batchId != null and batchId != ''"
>
and batch_id
like concat('%', #{batchId}, '%')
</if>
<if
test=
"warehouseId != null and warehouseId != ''"
>
and warehouse_id = #{warehouseId}
</if>
<if
test=
"ownerId != null and ownerId != ''"
>
and owner_id = #{ownerId}
</if>
<if
test=
"orderStatus != null "
>
and order_status = #{orderStatus}
</if>
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论