Commit 40c35de426db29a86d6567c08af5b70a5a8a5f3a
Merge branch 'zwl-develop' into 'develop'
fix: 项目号宽度修改,客户单价精度修改 See merge request !9
Showing
7 changed files
with
11 additions
and
7 deletions
src/views/project/config/TablePanel.vue
... | ... | @@ -153,7 +153,11 @@ |
153 | 153 | if (props.column === 3) { |
154 | 154 | await saveConfig({ id: record.id, settingValue: record.settingValue }); |
155 | 155 | } else { |
156 | - await saveConfig({ id: record.id, relationValue: record.relationValue, relationName: record.relationName }); | |
156 | + await saveConfig({ | |
157 | + id: record.id, | |
158 | + relationValue: record.relationValue, | |
159 | + relationName: record.relationName, | |
160 | + }); | |
157 | 161 | } |
158 | 162 | handleCancel(record); |
159 | 163 | ... | ... |
src/views/project/finance/financeProfit/ProductProfit/InnerData/data.tsx
src/views/project/finance/financeProfit/ProductProfit/InnerProduce/data.tsx
src/views/project/finance/financeProfit/ServiceProfit/PackageProfit/data.tsx
src/views/project/finance/financeProfit/ServiceProfit/ServiceProfit/data.tsx
src/views/project/order/FormDetail/index.vue
... | ... | @@ -385,7 +385,7 @@ |
385 | 385 | forms.profitAnalysisInfo = profitFormPanelRef?.value?.getFieldsValue() || {}; |
386 | 386 | delete forms.profitAnalysisInfo.profitRate; |
387 | 387 | forms.profitAnalysisInfo.customerRmbPrice = |
388 | - forms.profitAnalysisInfo.customerRmbPrice.toFixed(2); // 客户单价¥ | |
388 | + forms.profitAnalysisInfo.customerRmbPrice.toFixed(4); // 客户单价¥ | |
389 | 389 | forms.profitAnalysisInfo.customerRmbTotalPrice = ( |
390 | 390 | forms.profitAnalysisInfo.customerRmbPrice * orderCount.value |
391 | 391 | ).toFixed(2); // 客户总价¥ | ... | ... |
src/views/project/order/tableData.tsx