Browse Source

YT-1533创建开票申请,含税金额不正确

intex_online20241205
张立 2 months ago
parent
commit
a55555c47b
  1. 2
      src/views/wms/deliversettlementManage/customerSaleInvoiceRequestMain/CustomerSaleInvoiceBasicForm.vue

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

@ -135,6 +135,8 @@ const onChange = (field, cur, formRef)=>{
// taxAmount */100,2
tableData.value.forEach(item=>{
item['taxAmount'] = (item['beforeTaxAmount'] * cur)/100 //
// = +,2
item['afterTaxAmount'] = item['beforeTaxAmount'] + item['taxAmount']
})
}
}

Loading…
Cancel
Save