Browse Source

YT-2321 供应商发票新加计算字段

intex
王宇飞 2 days ago
parent
commit
90bd83fd99
  1. 24
      src/views/wms/supplierManage/supplierinvoice/supplierinvoiceRequestMain/index.vue

24
src/views/wms/supplierManage/supplierinvoice/supplierinvoiceRequestMain/index.vue

@ -88,7 +88,8 @@
beforeTaxDiffAmount = 0,
taxAmountDiff = 0,
rebateTax = 0,
claimAmount = 0
claimAmount = 0,
moldUntaxedAmount = 0
} = formModel
// 2X*2
if (formType == 'update') {
@ -103,6 +104,7 @@
updateOriginFormModel(formModel)
}
formRef.value.setValues({
moldTaxAmount: Number(Number(moldUntaxedAmount * taxRate * 0.01).toFixed(2)),// = *
afterTaxAmount: amount + taxAmount, // 3+-
invoiceAmountMain: amount - claimAmount, // -
adTaxAmount: beforeTaxAmount + totalTaxAmount, //6+
@ -110,7 +112,9 @@
taxAmountDiff: totalTaxAmount - taxAmount, // -
totalTaxDiffAmount: beforeTaxDiffAmount + taxAmountDiff, // =+
rebateTax: Number(Number(discountAmount1 * taxRate * 0.01).toFixed(2)),
rebateTotal: rebateTax + discountAmount1
rebateTotal: rebateTax + discountAmount1,
beforeTaxAmount : Number(Number(Number(moldUntaxedAmount) + Number(amount)-Number(claimAmount) - Number(discountAmount1)).toFixed(2)), // = +-
})
} else if (formType == 'create') {
//
@ -131,6 +135,7 @@
updateOriginFormModel(formModel)
}
formRef.value.setValues({
moldTaxAmount: Number(Number(moldUntaxedAmount * taxRate * 0.01).toFixed(2)),// = *
taxAmount: taxAmount_,
afterTaxAmount: amount + taxAmount, // 3+-
invoiceAmountMain: amount - claimAmount, // -
@ -139,7 +144,8 @@
taxAmountDiff: totalTaxAmount - taxAmount, // -
totalTaxDiffAmount: beforeTaxDiffAmount + taxAmountDiff, // =+
rebateTax: Number(Number(discountAmount1 * taxRate * 0.01).toFixed(2)),
rebateTotal: rebateTax + discountAmount1
rebateTotal: rebateTax + discountAmount1,
beforeTaxAmount : Number(Number(Number(moldUntaxedAmount) + Number(amount)-Number(claimAmount) - Number(discountAmount1)).toFixed(2)), // = +-
})
}
}
@ -165,11 +171,19 @@
).toFixed(2)
),
0
)
),
moldUntaxedAmount: tableData.reduce(
(prev, item) =>
prev +
Number(
Number(item['allocationPrice'] * item['invoicableQuantity']).toFixed(2)
),
0
) // = sum(*)
}
;(sumObject.invoiceAmountMain = (
Number(sumObject.amount) - Number(formRef.value.formModel.claimAmount)
).toFixed(2)), // -
).toFixed(2)) // -
formRef.value.setValues(sumObject)
}
"

Loading…
Cancel
Save