@ -77,7 +77,7 @@
// 主数据税额
taxAmount:mainTaxAmount,
// 主数据价税合计金额:mainAdTaxAmount =未税金额+税额
adTaxAmount:mainBeforeTaxAmount+mainTaxAmount
adTaxAmount:(parseFloat(mainBeforeTaxAmount) + mainTaxAmount).toFixed(2)
}
formRef.value.setValues(sumObject)
@ -447,12 +447,14 @@ export const CustomerSaleInvoiceDetail = useCrudSchemas(reactive<CrudSchema[]>([
form: {
component: 'InputNumber',
componentProps: {
disabled: true
disabled: true,
precision: 5
},
tableForm: {
type: 'InputNumber',
{