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
a885a8a9
Commit
a885a8a9
authored
Dec 18, 2025
by
yubin
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/master'
parents
f7de2ca4
1c2e2eca
显示空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
12 行增加
和
12 行删除
+12
-12
ruoyi-admin-vue/src/views/inventory/report_view/inbound_outbound_statistics.vue
+2
-2
ruoyi-admin-vue/src/views/inventory/report_view/inventory_detail.vue
+1
-1
ruoyi-admin-vue/src/views/inventory/stocktakes/index.vue
+4
-4
ruoyi-admin-vue/src/views/inventory/stocktakes/stocktakeItemsTable.vue
+4
-4
ruoyi-inventory/src/main/resources/mapper/inventory/InventoryMapper.xml
+1
-1
没有找到文件。
ruoyi-admin-vue/src/views/inventory/report_view/inbound_outbound_statistics.vue
View file @
a885a8a9
...
...
@@ -63,10 +63,10 @@
</
template
>
</el-input>
</el-form-item>
<el-form-item
label=
"物料"
prop=
"materialId"
>
<el-form-item
label=
"物料
名称
"
prop=
"materialId"
>
<el-input
v-model=
"queryParams.materialId"
placeholder=
"请输入物料
或编码
"
placeholder=
"请输入物料
名称
"
clearable
@
keyup
.
enter
.
native=
"handleQuery"
/>
...
...
ruoyi-admin-vue/src/views/inventory/report_view/inventory_detail.vue
View file @
a885a8a9
...
...
@@ -63,7 +63,7 @@
<el-form-item
label=
"SAP物料号"
prop=
"materialId"
>
<el-input
v-model=
"queryParams.materialId"
placeholder=
"请输入
物料编码
"
placeholder=
"请输入
SAP物料号
"
clearable
@
keyup
.
enter
.
native=
"handleQuery"
/>
...
...
ruoyi-admin-vue/src/views/inventory/stocktakes/index.vue
View file @
a885a8a9
...
...
@@ -146,9 +146,9 @@
<!--
盘点对话框
-->
<
el
-
dialog
:
title
=
"checkTitle"
:
visible
.
sync
=
"checkOpen"
width
=
"1500px"
append
-
to
-
body
>
<
el
-
form
ref
=
"checkFormRef"
:
model
=
"form"
:
rules
=
"rules"
label
-
width
=
"80px"
>
<
el
-
form
-
item
label
=
"盘点单号"
prop
=
"stocktakeId"
>
<
!--
<
el
-
form
-
item
label
=
"盘点单号"
prop
=
"stocktakeId"
>
<
el
-
input
v
-
model
=
"form.stocktakeId"
placeholder
=
"请输入盘点单号"
disabled
/>
<
/el-form-item
>
<
/el-form-item>
--
>
<
el
-
form
-
item
label
=
"计划日期"
prop
=
"plannedDate"
>
<
el
-
date
-
picker
clearable
disabled
v
-
model
=
"form.plannedDate"
...
...
@@ -178,9 +178,9 @@
<!--
盘点确认弹窗
-->
<
el
-
dialog
:
title
=
"confirmTitle"
:
visible
.
sync
=
"confirmOpen"
width
=
"1500px"
append
-
to
-
body
>
<
el
-
form
ref
=
"confirmFormRef"
:
model
=
"form"
:
rules
=
"rules"
label
-
width
=
"80px"
>
<
el
-
form
-
item
label
=
"盘点单号"
prop
=
"stocktakeId"
>
<
!--
<
el
-
form
-
item
label
=
"盘点单号"
prop
=
"stocktakeId"
>
<
el
-
input
v
-
model
=
"form.stocktakeId"
placeholder
=
"请输入盘点单号"
disabled
/>
<
/el-form-item
>
<
/el-form-item>
--
>
<
el
-
form
-
item
label
=
"计划日期"
prop
=
"plannedDate"
>
<
el
-
date
-
picker
clearable
disabled
v
-
model
=
"form.plannedDate"
...
...
ruoyi-admin-vue/src/views/inventory/stocktakes/stocktakeItemsTable.vue
View file @
a885a8a9
...
...
@@ -353,10 +353,10 @@ console.log(this.isConfirm)
/** 打开库位选择器 */
openLocationSelector
()
{
if
(
!
this
.
searchParams
.
warehouseId
)
{
this
.
$message
.
warning
(
"请先选择仓库"
)
return
}
//
if (!this.searchParams.warehouseId) {
//
this.$message.warning("请先选择仓库")
//
return
//
}
this
.
locationSelectorVisible
=
true
},
...
...
ruoyi-inventory/src/main/resources/mapper/inventory/InventoryMapper.xml
View file @
a885a8a9
...
...
@@ -220,7 +220,7 @@
<where>
and i.quantity != 0 and i.inventory_status = 1 and i.is_used = 1
<if
test=
"inventoryType != null "
>
and i.inventory_type = #{inventoryType}
</if>
<if
test=
"materialId != null and materialId != ''"
>
and m.material_
cod
e like concat('%', #{materialId}, '%')
</if>
<if
test=
"materialId != null and materialId != ''"
>
and m.material_
nam
e like concat('%', #{materialId}, '%')
</if>
<if
test=
"batchId != null and batchId != ''"
>
and i.batch_id like concat('%', #{batchId}, '%')
</if>
<if
test=
"warehousesId != null and warehousesId != ''"
>
and w.warehouses_id = #{warehousesId}
</if>
<if
test=
"locationId != null and locationId != ''"
>
and i.location_id = #{locationId}
</if>
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论