mirror of
https://github.com/frappe/books.git
synced 2025-04-06 02:01:50 +00:00
Merge pull request #1085 from AbleKSaju/fix-discount-amount
fix: calculation of tax amount
This commit is contained in:
commit
8a7559bc4e
@ -173,6 +173,7 @@ export abstract class InvoiceItem extends Doc {
|
||||
'party',
|
||||
'exchangeRate',
|
||||
'item',
|
||||
'quantity',
|
||||
'itemTaxedTotal',
|
||||
'itemDiscountedTotal',
|
||||
'setItemDiscountAmount',
|
||||
|
@ -433,9 +433,10 @@ export default defineComponent({
|
||||
);
|
||||
}
|
||||
|
||||
this.selectedItemRow.setItemDiscountAmount = true;
|
||||
this.selectedItemRow.itemDiscountAmount = this.fyo.pesa(
|
||||
Number(this.selectedValue)
|
||||
await this.selectedItemRow.set('setItemDiscountAmount', true);
|
||||
await this.selectedItemRow.set(
|
||||
'itemDiscountAmount',
|
||||
this.fyo.pesa(Number(this.selectedValue))
|
||||
);
|
||||
}
|
||||
} else {
|
||||
|
@ -541,9 +541,12 @@ export default defineComponent({
|
||||
existingItems[0].rate = item.rate as Money;
|
||||
}
|
||||
|
||||
existingItems[0].quantity = quantity
|
||||
? (existingItems[0].quantity as number) + quantity
|
||||
: (existingItems[0].quantity as number) + 1;
|
||||
await existingItems[0].set(
|
||||
'quantity',
|
||||
quantity
|
||||
? (existingItems[0].quantity as number) + quantity
|
||||
: (existingItems[0].quantity as number) + 1
|
||||
);
|
||||
|
||||
await this.applyPricingRule();
|
||||
await this.sinvDoc.runFormulas();
|
||||
|
Loading…
x
Reference in New Issue
Block a user