Commit e840518b by 杨子

docs(wmsOutboundOrder): 为金额和单价字段添加货币单位说明

在出库订单相关组件的表格和描述中,为金额和单价字段添加"(元)"单位说明,提高数据展示的清晰度
parent 2addadd8
......@@ -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>
......
......@@ -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>
......
......@@ -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>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment