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
a1344fd8
Commit
a1344fd8
authored
Dec 12, 2025
by
yubin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修bug
parent
d5f05998
显示空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
7 行增加
和
9 行删除
+7
-9
ruoyi-admin-vue/src/views/inventory/items/index.vue
+1
-1
ruoyi-admin-vue/src/views/inventory/orders/OutboundOrderFormWithItems.vue
+2
-4
ruoyi-admin-vue/src/views/inventory/orders/index.vue
+3
-3
ruoyi-admin-vue/src/views/inventory/owners/index.vue
+1
-1
没有找到文件。
ruoyi-admin-vue/src/views/inventory/items/index.vue
View file @
a1344fd8
...
...
@@ -458,7 +458,7 @@ export default {
delete
params
.
pageNum
delete
params
.
pageSize
this
.
download
(
'inventory/items/
inboundOutbound/
export'
,
{
...
params
},
`出库统计_
${
new
Date
().
getTime
()}
.xlsx`
)
this
.
download
(
'inventory/items/export'
,
{
...
params
},
`出库统计_
${
new
Date
().
getTime
()}
.xlsx`
)
},
handleViewDetail
(
row
)
{
this
.
currentDetailRow
=
row
...
...
ruoyi-admin-vue/src/views/inventory/orders/OutboundOrderFormWithItems.vue
View file @
a1344fd8
...
...
@@ -89,9 +89,7 @@
width=
"100"
>
<
template
slot-scope=
"scope"
>
<el-tag
size=
"mini"
:type=
"scope.row.inventoryType === 1 ? 'primary' : 'success'"
>
{{
scope
.
row
.
inventoryType
===
1
?
'正品'
:
'次品'
}}
</el-tag>
<dict-tag
v-if=
"dict.type.inventory_type"
:options=
"dict.type.inventory_type"
:value=
"scope.row.inventoryType"
/>
</
template
>
</el-table-column>
<el-table-column
label=
"可用数量"
width=
"100"
>
...
...
@@ -279,7 +277,7 @@ function debounce(fn, delay = 500) {
export
default
{
name
:
'OutboundOrderFormWithItems'
,
dicts
:
[
'inbound_order_status'
,
'inbound_order_type'
,
'inbound_order_item_status'
,
'label_color'
],
dicts
:
[
'inbound_order_status'
,
'inbound_order_type'
,
'inbound_order_item_status'
,
'label_color'
,
'inventory_type'
],
components
:
{
MaterialSelector
},
...
...
ruoyi-admin-vue/src/views/inventory/orders/index.vue
View file @
a1344fd8
...
...
@@ -317,7 +317,7 @@
v
-
for
=
"item in dict.type.order_type"
:
key
=
"item.value"
:
label
=
"item.label"
:
value
=
"
Number(item.value)
"
:
value
=
"
item.value
"
>
<
span
style
=
"margin-left: 8px;"
>
{{
item
.
label
}}
<
/span
>
<
/el-option
>
...
...
@@ -455,7 +455,7 @@
<
el
-
table
-
column
label
=
"库位编号"
prop
=
"locationName"
width
=
"150"
/>
<
el
-
table
-
column
label
=
"批次编号"
prop
=
"batchCode"
width
=
"150"
/>
<
el
-
table
-
column
label
=
"计划数量"
prop
=
"plannedQuantity"
width
=
"150"
fixed
=
"right"
/>
<
el
-
table
-
column
label
=
"计划数量"
prop
=
"plannedQuantity"
width
=
"150"
/>
<
el
-
table
-
column
label
=
"实际数量"
prop
=
"actualQuantity"
width
=
"150"
fixed
=
"right"
/>
<
el
-
table
-
column
label
=
"约数"
prop
=
"divisor"
width
=
"150"
><
/el-table-column
>
<
el
-
table
-
column
label
=
"标签颜色"
prop
=
"labelColor"
width
=
"150"
>
...
...
@@ -463,7 +463,7 @@
<
dict
-
tag
v
-
if
=
"dict.type.label_color"
:
options
=
"dict.type.label_color"
:
value
=
"scope.row.labelColor"
/>
<
/template
>
<
/el-table-column
>
<
el
-
table
-
column
label
=
"单价(元)"
prop
=
"unitPrice"
width
=
"150"
/>
<
el
-
table
-
column
label
=
"单价(元)"
prop
=
"unitPrice"
width
=
"150"
fixed
=
"right"
/>
<
el
-
table
-
column
label
=
"凭证号"
prop
=
"voucherNumber"
width
=
"150"
/>
<
el
-
table
-
column
label
=
"发货方"
prop
=
"shippedBy"
width
=
"150"
/>
<
el
-
table
-
column
label
=
"备注"
prop
=
"remark"
width
=
"150"
/>
...
...
ruoyi-admin-vue/src/views/inventory/owners/index.vue
View file @
a1344fd8
...
...
@@ -209,7 +209,7 @@
v-for=
"dict in dict.type.owner_type"
:key=
"dict.value"
:label=
"dict.label"
:value=
"
dict.value
"
:value=
"
Number(dict.value)
"
></el-option>
</el-select>
</el-form-item>
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论