Browse Source

合计单价5位改成11位

intex_online20250427
张立 2 months ago
parent
commit
05c1afb041
  1. 2
      src/views/wms/deliversettlementManage/customerSaleInvoiceRequestMain/CustomerSaleInvoiceBasicForm.vue

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

@ -197,7 +197,7 @@ const inputNumberChange = (field, index, row, val) => {
row['allocationPrice'] = row['beforeTaxAmount']/row['qty'] - row['price']
// = +
row['sumPrice'] = (row['price'] + row['allocationPrice']).toFixed(5)
row['sumPrice'] = (row['price'] + row['allocationPrice']).toFixed(11)
// taxAmount */100,2
row['taxAmount'] = (row['beforeTaxAmount'] * formRef.value.formRef.formModel['taxRate'])/100 //

Loading…
Cancel
Save