|
@ -104,7 +104,7 @@ |
|
|
formRef.value.setValues({ |
|
|
formRef.value.setValues({ |
|
|
afterTaxAmount: amount + taxAmount, // 3、系统价税合计:系统未税金额+系统税额 |
|
|
afterTaxAmount: amount + taxAmount, // 3、系统价税合计:系统未税金额+系统税额 |
|
|
adTaxAmount: beforeTaxAmount + totalTaxAmount, //6、价税合计金额:未税金额+税额 |
|
|
adTaxAmount: beforeTaxAmount + totalTaxAmount, //6、价税合计金额:未税金额+税额 |
|
|
beforeTaxDiffAmount: beforeTaxAmount - amount - discountAmount1, //未税差额:未税金额-系统未税金额-折扣金额 |
|
|
beforeTaxDiffAmount: beforeTaxAmount - amount, //未税差额:未税金额-系统未税金额 |
|
|
taxAmountDiff: totalTaxAmount - taxAmount, // 税额差异:税额-系统税额 |
|
|
taxAmountDiff: totalTaxAmount - taxAmount, // 税额差异:税额-系统税额 |
|
|
totalTaxDiffAmount: beforeTaxDiffAmount + taxAmountDiff, // 价税合计差额=未税差额+税额差异 |
|
|
totalTaxDiffAmount: beforeTaxDiffAmount + taxAmountDiff, // 价税合计差额=未税差额+税额差异 |
|
|
rebateTax:Number(Number(discountAmount1*taxRate*0.01).toFixed(2)), |
|
|
rebateTax:Number(Number(discountAmount1*taxRate*0.01).toFixed(2)), |
|
@ -132,7 +132,7 @@ |
|
|
taxAmount: taxAmount_, |
|
|
taxAmount: taxAmount_, |
|
|
afterTaxAmount: amount + taxAmount, // 3、系统价税合计:系统未税金额+系统税额 |
|
|
afterTaxAmount: amount + taxAmount, // 3、系统价税合计:系统未税金额+系统税额 |
|
|
adTaxAmount: beforeTaxAmount + totalTaxAmount, //6、价税合计金额:未税金额+税额 |
|
|
adTaxAmount: beforeTaxAmount + totalTaxAmount, //6、价税合计金额:未税金额+税额 |
|
|
beforeTaxDiffAmount: beforeTaxAmount - amount - discountAmount1, //未税差额:未税金额-系统未税金额-折扣金额 |
|
|
beforeTaxDiffAmount: beforeTaxAmount - amount, //未税差额:未税金额-系统未税金额 |
|
|
taxAmountDiff: totalTaxAmount - taxAmount, // 税额差异:税额-系统税额 |
|
|
taxAmountDiff: totalTaxAmount - taxAmount, // 税额差异:税额-系统税额 |
|
|
totalTaxDiffAmount: beforeTaxDiffAmount + taxAmountDiff, // 价税合计差额=未税差额+税额差异 |
|
|
totalTaxDiffAmount: beforeTaxDiffAmount + taxAmountDiff, // 价税合计差额=未税差额+税额差异 |
|
|
rebateTax:Number(Number(discountAmount1*taxRate*0.01).toFixed(2)), |
|
|
rebateTax:Number(Number(discountAmount1*taxRate*0.01).toFixed(2)), |
|
|