fix(crm): 统一销售金额单位为元并优化金额精度

1. 修改客户等级图表、销售报告页面的金额单位从万元改为元
2. 将金额计算和展示的精度从两位小数调整为三位小数
3. 新增合同默认编码和签订地点的默认值
This commit is contained in:
2026-06-04 14:28:33 +08:00
parent c71dfe3ff2
commit 8183bae824
6 changed files with 24 additions and 22 deletions

View File

@@ -87,13 +87,13 @@
<!-- 合计行 -->
<div class="table-row table-total-row">
<div class="table-cell" colspan="3">合计</div>
<div class="table-cell">{{ totalQuantity.toFixed(2) }}</div>
<div class="table-cell">{{ totalQuantity.toFixed(3) }}</div>
<div class="table-cell"></div>
<div class="table-cell"></div>
<div class="table-cell"></div>
<div class="table-cell">{{ totalTaxTotal.toFixed(2) }}</div>
<div class="table-cell">{{ totalNoTaxTotal.toFixed(2) }}</div>
<div class="table-cell">{{ totalTaxAmount.toFixed(2) }}</div>
<div class="table-cell">{{ totalTaxTotal.toFixed(3) }}</div>
<div class="table-cell">{{ totalNoTaxTotal.toFixed(3) }}</div>
<div class="table-cell">{{ totalTaxAmount.toFixed(3) }}</div>
<div class="table-cell"></div>
</div>