Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
warehousing-admin
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
吴春元
warehousing-admin
Commits
e840518b
Commit
e840518b
authored
Jan 04, 2026
by
杨子
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
docs(wmsOutboundOrder): 为金额和单价字段添加货币单位说明
在出库订单相关组件的表格和描述中,为金额和单价字段添加"(元)"单位说明,提高数据展示的清晰度
parent
2addadd8
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
10 deletions
+10
-10
BatchDetailDialog.vue
...ws/ware/wmsOutboundOrder/components/BatchDetailDialog.vue
+1
-1
detail.vue
src/views/ware/wmsOutboundOrder/components/detail.vue
+6
-6
index.vue
src/views/ware/wmsOutboundOrder/index.vue
+3
-3
No files found.
src/views/ware/wmsOutboundOrder/components/BatchDetailDialog.vue
View file @
e840518b
...
...
@@ -43,7 +43,7 @@
<el-table-column
label=
"库区"
align=
"center"
prop=
"area.areaName"
/>
<el-table-column
label=
"货架"
align=
"center"
prop=
"location.locationName"
/>
<el-table-column
label=
"数量"
align=
"center"
prop=
"quantity"
/>
<el-table-column
label=
"入库单价"
align=
"center"
prop=
"unitCost"
/>
<el-table-column
label=
"入库单价
(元)
"
align=
"center"
prop=
"unitCost"
/>
<el-table-column
label=
"出库时间"
align=
"center"
prop=
"outboundTime"
width=
"110"
>
<template
#
default=
"scope"
>
<span>
{{
parseTime
(
scope
.
row
.
outboundTime
,
'{y
}
-{m
}
-{d
}
'
)
}}
<
/span
>
...
...
src/views/ware/wmsOutboundOrder/components/detail.vue
View file @
e840518b
...
...
@@ -26,7 +26,7 @@
<el-descriptions-item
label=
"总数量"
>
{{
orderDetail
.
totalQuantity
}}
</el-descriptions-item>
<el-descriptions-item
label=
"总金额"
>
<el-descriptions-item
label=
"总金额
(元)
"
>
{{
orderDetail
.
totalAmount
}}
</el-descriptions-item>
<el-descriptions-item
label=
"操作人"
>
...
...
@@ -52,8 +52,8 @@
<el-table-column
prop=
"planQuantity"
label=
"计划数量"
width=
"120"
/>
<el-table-column
prop=
"actualQuantity"
label=
"实际数量"
width=
"120"
/>
<el-table-column
prop=
"unit"
label=
"计量单位"
width=
"80"
/>
<el-table-column
prop=
"unitPrice"
label=
"单价
"
/>
<el-table-column
prop=
"amount"
label=
"金额"
/>
<el-table-column
prop=
"unitPrice"
label=
"单价
(元)"
/>
<el-table-column
prop=
"amount"
label=
"金额
(元)
"
/>
<el-table-column
prop=
"pickingStatus"
label=
"拣货状态"
>
<template
#
default=
"scope"
>
<dict-tag
:options=
"out_order_status"
:value=
"scope.row.pickingStatus"
/>
...
...
@@ -259,7 +259,7 @@ function handlePrint() {
<
span
>
$
{
orderData
.
totalQuantity
}
<
/span
>
<
/div
>
<
div
class
=
"info-row"
>
<
span
class
=
"info-label"
>
总金额:
<
/span
>
<
span
class
=
"info-label"
>
总金额
(
元
)
:
<
/span
>
<
span
>
$
{
orderData
.
totalAmount
}
<
/span
>
<
/div
>
<
div
class
=
"info-row"
>
...
...
@@ -290,8 +290,8 @@ function handlePrint() {
<
th
>
规格型号
<
/th
>
<
th
>
计划数量
<
/th
>
<
th
>
单位
<
/th
>
<
th
>
单价
<
/th
>
<
th
>
金额
<
/th
>
<
th
>
单价
(
元
)
<
/th
>
<
th
>
金额
(
元
)
<
/th
>
<
th
>
生产日期
<
/th
>
<
th
>
失效日期
<
/th
>
<
th
>
备注
<
/th
>
...
...
src/views/ware/wmsOutboundOrder/index.vue
View file @
e840518b
...
...
@@ -607,7 +607,7 @@ function handlePrint(row) {
<span>${orderData.totalQuantity
}
</span>
</div>
<div class="info-row">
<span class="info-label">总金额:</span>
<span class="info-label">总金额
(元)
:</span>
<span>${orderData.totalAmount
}
</span>
</div>
<div class="info-row">
...
...
@@ -638,8 +638,8 @@ function handlePrint(row) {
<th>规格型号</th>
<th>计划数量</th>
<th>单位</th>
<th>单价</th>
<th>金额</th>
<th>单价
(元)
</th>
<th>金额
(元)
</th>
<th>生产日期</th>
<th>失效日期</th>
<th>备注</th>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment