Browse Source

YT-1572销售开票金额,明细税额、含税金额,应保留2位小数

intex_20241211
张立 3 months ago
parent
commit
df2c8953ae
  1. 16
      src/views/wms/deliversettlementManage/customerSaleInvoiceRequestMain/index.vue

16
src/views/wms/deliversettlementManage/customerSaleInvoiceRequestMain/index.vue

@ -74,7 +74,17 @@
" "
@buttonBaseClick="detailButtonBaseClick" @buttonBaseClick="detailButtonBaseClick"
@searchTableSuccessDetail="searchTableSuccessDetail" @searchTableSuccessDetail="searchTableSuccessDetail"
/> >
<template #taxAmount="scrop">
{{scrop.row.taxAmount.toFixed(2)}}
</template>
<template #afterTaxAmount="scrop">
{{scrop.row.afterTaxAmount.toFixed(2)}}
</template>
<template #beforeTaxAmount="scrop">
{{scrop.row.beforeTaxAmount.toFixed(2)}}
</template>
</Detail>
<!-- 导入 --> <!-- 导入 -->
<ImportForm ref="importFormRef" url="/wms/deliver-plan-main/import" :importTemplateData="importTemplateData" <ImportForm ref="importFormRef" url="/wms/deliver-plan-main/import" :importTemplateData="importTemplateData"
@ -260,13 +270,13 @@ const buttonTableClick = async (val, row) => {
/** 添加/修改操作 */ /** 添加/修改操作 */
const formRef = ref() const formRef = ref()
const openForm =async (type: string, row?: any) => { const openForm =async (type: string, row?: any) => {
formRef.value.openForm(type,row) formRef.value.openForm(type, row)
} }
/** 详情操作 */ /** 详情操作 */
const detailRef = ref() const detailRef = ref()
const openDetail = (row: any, titleName: any, titleValue: any) => { const openDetail = (row: any, titleName: any, titleValue: any) => {
detailRef.value.openDetail(row, titleName, titleValue,'planDeliverMain') detailRef.value.openDetail(row, titleName, titleValue, 'planDeliverMain')
} }

Loading…
Cancel
Save