git commit -m "fix: Add missing semicolon"

This commit is contained in:
Deepesh Garg 2020-08-11 22:02:12 +05:30 committed by GitHub
parent 19ea7218d9
commit 7d0a625b9c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -217,7 +217,7 @@ erpnext.taxes_and_totals = erpnext.payments.extend({
if(tax.add_deduct_tax && tax.add_deduct_tax == "Deduct") {
current_tax_fraction *= -1;
inclusive_tax_amount_per_qty *= -1
inclusive_tax_amount_per_qty *= -1;
}
return [current_tax_fraction, inclusive_tax_amount_per_qty];
},