Browse Source

合计单价小数位数,价税合计金额

intex_online20241205
张立 2 months ago
parent
commit
edabc739e1
  1. 2
      src/views/wms/deliversettlementManage/customerSaleInvoiceRequestMain/CustomerSaleInvoiceBasicForm.vue
  2. 4
      src/views/wms/deliversettlementManage/customerSaleInvoiceRequestMain/customerSaleInvoiceRequestMain.data.ts

2
src/views/wms/deliversettlementManage/customerSaleInvoiceRequestMain/CustomerSaleInvoiceBasicForm.vue

@ -77,7 +77,7 @@
// //
taxAmount:mainTaxAmount, taxAmount:mainTaxAmount,
// mainAdTaxAmount =+ // mainAdTaxAmount =+
adTaxAmount:mainBeforeTaxAmount+mainTaxAmount adTaxAmount:(parseFloat(mainBeforeTaxAmount) + mainTaxAmount).toFixed(2)
} }
formRef.value.setValues(sumObject) formRef.value.setValues(sumObject)
} }

4
src/views/wms/deliversettlementManage/customerSaleInvoiceRequestMain/customerSaleInvoiceRequestMain.data.ts

@ -447,12 +447,14 @@ export const CustomerSaleInvoiceDetail = useCrudSchemas(reactive<CrudSchema[]>([
form: { form: {
component: 'InputNumber', component: 'InputNumber',
componentProps: { componentProps: {
disabled: true disabled: true,
precision: 5
} }
}, },
tableForm: { tableForm: {
disabled: true, disabled: true,
type: 'InputNumber', type: 'InputNumber',
precision: 5
} }
}, },
{ {

Loading…
Cancel
Save