We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1177bf1 + 5e6bdb1 commit 30618adCopy full SHA for 30618ad
1 file changed
india_compliance/public/js/taxes_controller.js
@@ -139,10 +139,11 @@ india_compliance.taxes_controller = class TaxesController {
139
if (this.frm.doc.doctype === "Subcontracting Receipt") {
140
amount = calculateAmount(row.qty, row.rate, "amount");
141
} else if (this.frm.doc.doctype === "Stock Entry") {
142
- amount = calculateAmount(row.qty, row.basic_rate, "basic_amount");
+ amount = calculateAmount(row.transfer_qty, row.basic_rate, "basic_amount");
143
}
144
145
row.taxable_value = amount;
146
+ this.frm.refresh_field("items");
147
148
149
async update_tax_amount() {
0 commit comments