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
dd965dce
Commit
dd965dce
authored
Dec 19, 2025
by
zhangtw
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
导出优化
parent
66700587
显示空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
24 行增加
和
5 行删除
+24
-5
ruoyi-admin-vue/src/views/inventory/inbound/index.vue
+1
-1
ruoyi-admin-vue/src/views/inventory/inbound_items/index.vue
+4
-3
ruoyi-inventory/src/main/resources/mapper/inventory/InboundOrdersMapper.xml
+19
-1
没有找到文件。
ruoyi-admin-vue/src/views/inventory/inbound/index.vue
View file @
dd965dce
...
...
@@ -415,6 +415,7 @@
<
el
-
dialog
title
=
"选择物料"
v
-
model
=
"materialSelectOpen"
:
visible
.
sync
=
"materialSelectOpen"
width
=
"1200px"
append
-
to
-
body
destroy
-
on
-
close
...
...
@@ -731,7 +732,6 @@ export default {
this
.
$refs
.
inboundItemsRef
?.
handlePagination
();
this
.
$refs
.
inboundItemsRef
?.
calculateTotals
();
}
);
this
.
open
=
true
;
this
.
title
=
"修改入库单"
;
}
catch
(
error
)
{
...
...
ruoyi-admin-vue/src/views/inventory/inbound_items/index.vue
View file @
dd965dce
...
...
@@ -96,7 +96,7 @@
<el-button
type=
"warning"
plain
icon=
"el-icon-
up
load"
icon=
"el-icon-
down
load"
size=
"mini"
@
click=
"handleExport"
>
导出
</el-button>
...
...
@@ -738,8 +738,9 @@ export default {
// 导出
handleExport
()
{
this
.
download
(
'inventory/inbound_items/export'
,
{
...
this
.
queryParams
this
.
download
(
'inventory/inbound/export'
,
{
...
this
.
queryParams
,
id
:
this
.
inboundOrderId
},
`inbound_items_
${
new
Date
().
getTime
()}
.xlsx`
)
},
...
...
ruoyi-inventory/src/main/resources/mapper/inventory/InboundOrdersMapper.xml
View file @
dd965dce
...
...
@@ -75,7 +75,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<select
id=
"selectInboundOrdersList"
parameterType=
"InboundOrders"
resultMap=
"InboundOrdersResult"
>
<include
refid=
"selectInboundOrdersVo"
/>
<where>
<if
test=
"id != null and
Id != ''"
>
and id = #{I
d}
</if>
<if
test=
"id != null and
id != ''"
>
and id = #{i
d}
</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>
...
...
@@ -338,8 +338,26 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
left join materials as m on ioi.material_id = m.id
left join inbound_orders as io on ioi.inbound_order_id = io.id
left join storage_locations as sl on ioi.location_id = sl.id
<where>
<if
test=
"id != null and id != ''"
>
and io.id = #{id}
</if>
<if
test=
"orderId != null and orderId != ''"
>
and io.order_id like concat('%', #{orderId}, '%')
</if>
<if
test=
"systemNo != null and systemNo != ''"
>
and io.system_no like concat('%', #{systemNo}, '%')
</if>
<if
test=
"orderTypeId != null and orderTypeId != ''"
>
and io.order_type_id = #{orderTypeId}
</if>
<if
test=
"batchId != null and batchId != ''"
>
and ioi.batch_id like concat('%', #{batchId}, '%')
</if>
<if
test=
"ownerId != null and ownerId != ''"
>
and io.owner_id = #{ownerId}
</if>
<if
test=
"orderStatus != null "
>
and io.order_status = #{orderStatus}
</if>
<!-- 新增按照日期范围查询-->
<if
test=
"inboundDateStart != null"
>
AND date(inbound_date)
>
= #{inboundDateStart}
</if>
<if
test=
"inboundDateEnd != null"
>
AND date(inbound_date)
<
= #{inboundDateEnd}
</if>
<if
test=
"orderType != null and orderType != ''"
>
and order_type = #{orderType}
</if>
</where>
order by order_status asc, date(io.inbound_date) desc, io.create_time desc
</select>
<resultMap
id=
"InboundOrderAndItemsMap"
type=
"com.ruoyi.inventory.domain.TO.InboundItemsTO"
>
<!-- 基础字段映射:SQL字段名 -> Java实体类字段名 -->
<result
column=
"inbound_date"
property=
"inboundDate"
/>
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论