2015-03-03 09:25:30 +00:00
|
|
|
// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
|
2015-01-22 11:43:13 +00:00
|
|
|
// License: GNU General Public License v3. See license.txt
|
|
|
|
|
2016-04-09 09:01:09 +00:00
|
|
|
erpnext.taxes_and_totals = erpnext.payments.extend({
|
2016-08-26 08:55:16 +00:00
|
|
|
setup: function() {},
|
2016-04-09 09:01:09 +00:00
|
|
|
apply_pricing_rule_on_item: function(item){
|
2018-05-28 14:37:08 +00:00
|
|
|
let effective_item_rate = item.price_list_rate;
|
|
|
|
if (item.parenttype === "Sales Order" && item.blanket_order_rate) {
|
|
|
|
effective_item_rate = item.blanket_order_rate;
|
|
|
|
}
|
2016-04-09 09:01:09 +00:00
|
|
|
if(item.margin_type == "Percentage"){
|
2018-05-28 14:37:08 +00:00
|
|
|
item.rate_with_margin = flt(effective_item_rate)
|
|
|
|
+ flt(effective_item_rate) * ( flt(item.margin_rate_or_amount) / 100);
|
2017-04-10 13:45:57 +00:00
|
|
|
} else {
|
2018-05-28 14:37:08 +00:00
|
|
|
item.rate_with_margin = flt(effective_item_rate) + flt(item.margin_rate_or_amount);
|
2017-12-12 08:46:03 +00:00
|
|
|
item.base_rate_with_margin = flt(item.rate_with_margin) * flt(this.frm.doc.conversion_rate);
|
2016-04-09 09:01:09 +00:00
|
|
|
}
|
|
|
|
|
2017-05-11 06:10:02 +00:00
|
|
|
item.rate = flt(item.rate_with_margin , precision("rate", item));
|
2016-04-09 09:01:09 +00:00
|
|
|
|
|
|
|
if(item.discount_percentage){
|
2018-08-14 05:21:48 +00:00
|
|
|
item.discount_amount = flt(item.rate_with_margin) * flt(item.discount_percentage) / 100;
|
|
|
|
item.rate = flt((item.rate_with_margin) - (item.discount_amount), precision('rate', item));
|
2016-04-09 09:01:09 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2015-01-22 11:43:13 +00:00
|
|
|
calculate_taxes_and_totals: function(update_paid_amount) {
|
|
|
|
this.discount_amount_applied = false;
|
|
|
|
this._calculate_taxes_and_totals();
|
2016-04-09 09:01:09 +00:00
|
|
|
this.calculate_discount_amount();
|
2015-01-22 11:43:13 +00:00
|
|
|
|
|
|
|
// Advance calculation applicable to Sales /Purchase Invoice
|
2015-07-17 09:49:02 +00:00
|
|
|
if(in_list(["Sales Invoice", "Purchase Invoice"], this.frm.doc.doctype)
|
2017-05-30 07:24:42 +00:00
|
|
|
&& this.frm.doc.docstatus < 2 && !this.frm.doc.is_return) {
|
|
|
|
this.calculate_total_advance(update_paid_amount);
|
2015-01-22 11:43:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Sales person's commission
|
2015-02-17 07:20:51 +00:00
|
|
|
if(in_list(["Quotation", "Sales Order", "Delivery Note", "Sales Invoice"], this.frm.doc.doctype)) {
|
2015-01-22 11:43:13 +00:00
|
|
|
this.calculate_commission();
|
|
|
|
this.calculate_contribution();
|
|
|
|
}
|
|
|
|
|
|
|
|
this.frm.refresh_fields();
|
|
|
|
},
|
|
|
|
|
2016-04-09 09:01:09 +00:00
|
|
|
calculate_discount_amount: function(){
|
2017-07-25 09:56:01 +00:00
|
|
|
if (frappe.meta.get_docfield(this.frm.doc.doctype, "discount_amount")) {
|
|
|
|
this.set_discount_amount();
|
2016-04-09 09:01:09 +00:00
|
|
|
this.apply_discount_amount();
|
2017-07-25 09:56:01 +00:00
|
|
|
}
|
2016-04-09 09:01:09 +00:00
|
|
|
},
|
|
|
|
|
2015-01-22 11:43:13 +00:00
|
|
|
_calculate_taxes_and_totals: function() {
|
|
|
|
this.validate_conversion_rate();
|
|
|
|
this.calculate_item_values();
|
|
|
|
this.initialize_taxes();
|
|
|
|
this.determine_exclusive_rate();
|
|
|
|
this.calculate_net_total();
|
|
|
|
this.calculate_taxes();
|
2015-03-17 05:20:47 +00:00
|
|
|
this.manipulate_grand_total_for_inclusive_tax();
|
2015-01-22 11:43:13 +00:00
|
|
|
this.calculate_totals();
|
|
|
|
this._cleanup();
|
|
|
|
},
|
|
|
|
|
2015-02-20 09:10:35 +00:00
|
|
|
validate_conversion_rate: function() {
|
2016-08-29 19:11:33 +00:00
|
|
|
this.frm.doc.conversion_rate = flt(this.frm.doc.conversion_rate, (cur_frm) ? precision("conversion_rate") : 9);
|
2015-02-20 09:10:35 +00:00
|
|
|
var conversion_rate_label = frappe.meta.get_label(this.frm.doc.doctype, "conversion_rate",
|
|
|
|
this.frm.doc.name);
|
2017-08-16 07:46:46 +00:00
|
|
|
var company_currency = this.get_company_currency();
|
2015-02-20 09:10:35 +00:00
|
|
|
|
|
|
|
if(!this.frm.doc.conversion_rate) {
|
2015-05-19 06:59:56 +00:00
|
|
|
if(this.frm.doc.currency == company_currency) {
|
|
|
|
this.frm.set_value("conversion_rate", 1);
|
|
|
|
} else {
|
|
|
|
frappe.throw(repl('%(conversion_rate_label)s' +
|
|
|
|
__(' is mandatory. Maybe Currency Exchange record is not created for ') +
|
2017-07-31 12:37:45 +00:00
|
|
|
'%(from_currency)s' + __(" to ") + '%(to_currency)s', {
|
|
|
|
"conversion_rate_label": conversion_rate_label,
|
|
|
|
"from_currency": this.frm.doc.currency,
|
|
|
|
"to_currency": company_currency
|
|
|
|
}));
|
2015-05-19 06:59:56 +00:00
|
|
|
}
|
2016-04-29 11:52:42 +00:00
|
|
|
|
2015-02-20 09:10:35 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2015-01-23 10:54:49 +00:00
|
|
|
calculate_item_values: function() {
|
|
|
|
var me = this;
|
|
|
|
if (!this.discount_amount_applied) {
|
|
|
|
$.each(this.frm.doc["items"] || [], function(i, item) {
|
|
|
|
frappe.model.round_floats_in(item);
|
2015-02-20 09:10:35 +00:00
|
|
|
item.net_rate = item.rate;
|
2015-01-23 10:54:49 +00:00
|
|
|
item.amount = flt(item.rate * item.qty, precision("amount", item));
|
2015-02-20 09:10:35 +00:00
|
|
|
item.net_amount = item.amount;
|
2015-01-23 10:54:49 +00:00
|
|
|
item.item_tax_amount = 0.0;
|
2018-02-16 09:15:40 +00:00
|
|
|
item.total_weight = flt(item.weight_per_unit * item.stock_qty);
|
2015-01-23 10:54:49 +00:00
|
|
|
|
2015-02-22 14:44:49 +00:00
|
|
|
me.set_in_company_currency(item, ["price_list_rate", "rate", "amount", "net_rate", "net_amount"]);
|
2015-01-23 10:54:49 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2015-02-20 09:10:35 +00:00
|
|
|
set_in_company_currency: function(doc, fields) {
|
2015-02-22 14:44:49 +00:00
|
|
|
var me = this;
|
2015-02-20 09:10:35 +00:00
|
|
|
$.each(fields, function(i, f) {
|
|
|
|
doc["base_"+f] = flt(flt(doc[f], precision(f, doc)) * me.frm.doc.conversion_rate, precision("base_" + f, doc));
|
2017-07-31 12:37:45 +00:00
|
|
|
});
|
2015-02-22 14:44:49 +00:00
|
|
|
},
|
2015-02-20 09:10:35 +00:00
|
|
|
|
2015-01-22 11:43:13 +00:00
|
|
|
initialize_taxes: function() {
|
|
|
|
var me = this;
|
|
|
|
|
|
|
|
$.each(this.frm.doc["taxes"] || [], function(i, tax) {
|
|
|
|
tax.item_wise_tax_detail = {};
|
2017-05-30 07:24:42 +00:00
|
|
|
var tax_fields = ["total", "tax_amount_after_discount_amount",
|
2015-01-22 11:43:13 +00:00
|
|
|
"tax_amount_for_current_item", "grand_total_for_current_item",
|
2017-07-31 12:37:45 +00:00
|
|
|
"tax_fraction_for_current_item", "grand_total_fraction_for_current_item"];
|
2015-01-22 11:43:13 +00:00
|
|
|
|
2015-02-22 19:36:00 +00:00
|
|
|
if (cstr(tax.charge_type) != "Actual" &&
|
2017-05-30 07:24:42 +00:00
|
|
|
!(me.discount_amount_applied && me.frm.doc.apply_discount_on=="Grand Total")) {
|
|
|
|
tax_fields.push("tax_amount");
|
|
|
|
}
|
2015-01-22 11:43:13 +00:00
|
|
|
|
2017-07-31 12:37:45 +00:00
|
|
|
$.each(tax_fields, function(i, fieldname) { tax[fieldname] = 0.0; });
|
2015-01-22 11:43:13 +00:00
|
|
|
|
2016-04-09 09:01:09 +00:00
|
|
|
if (!this.discount_amount_applied && cur_frm) {
|
2015-02-28 13:41:51 +00:00
|
|
|
cur_frm.cscript.validate_taxes_and_charges(tax.doctype, tax.name);
|
|
|
|
me.validate_inclusive_tax(tax);
|
|
|
|
}
|
2015-01-22 11:43:13 +00:00
|
|
|
frappe.model.round_floats_in(tax);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2015-01-23 10:54:49 +00:00
|
|
|
determine_exclusive_rate: function() {
|
2015-02-22 14:44:49 +00:00
|
|
|
var me = this;
|
|
|
|
|
2015-02-20 09:10:35 +00:00
|
|
|
var has_inclusive_tax = false;
|
|
|
|
$.each(me.frm.doc["taxes"] || [], function(i, row) {
|
|
|
|
if(cint(row.included_in_print_rate)) has_inclusive_tax = true;
|
2017-07-31 12:37:45 +00:00
|
|
|
});
|
2015-02-23 10:31:33 +00:00
|
|
|
if(has_inclusive_tax==false) return;
|
2015-01-23 10:54:49 +00:00
|
|
|
|
|
|
|
$.each(me.frm.doc["items"] || [], function(n, item) {
|
|
|
|
var item_tax_map = me._load_item_tax_rate(item.item_tax_rate);
|
|
|
|
var cumulated_tax_fraction = 0.0;
|
|
|
|
|
|
|
|
$.each(me.frm.doc["taxes"] || [], function(i, tax) {
|
|
|
|
tax.tax_fraction_for_current_item = me.get_current_tax_fraction(tax, item_tax_map);
|
|
|
|
|
|
|
|
if(i==0) {
|
|
|
|
tax.grand_total_fraction_for_current_item = 1 + tax.tax_fraction_for_current_item;
|
|
|
|
} else {
|
|
|
|
tax.grand_total_fraction_for_current_item =
|
|
|
|
me.frm.doc["taxes"][i-1].grand_total_fraction_for_current_item +
|
|
|
|
tax.tax_fraction_for_current_item;
|
|
|
|
}
|
|
|
|
|
|
|
|
cumulated_tax_fraction += tax.tax_fraction_for_current_item;
|
|
|
|
});
|
|
|
|
|
|
|
|
if(cumulated_tax_fraction && !me.discount_amount_applied) {
|
2017-09-19 09:23:16 +00:00
|
|
|
item.net_amount = flt(item.amount / (1 + cumulated_tax_fraction));
|
2018-10-18 12:27:56 +00:00
|
|
|
item.net_rate = item.qty ? flt(item.net_amount / item.qty, precision("net_rate", item)) : 0;
|
2015-01-23 10:54:49 +00:00
|
|
|
|
2015-02-22 14:44:49 +00:00
|
|
|
me.set_in_company_currency(item, ["net_rate", "net_amount"]);
|
2015-01-23 10:54:49 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
get_current_tax_fraction: function(tax, item_tax_map) {
|
|
|
|
// Get tax fraction for calculating tax exclusive amount
|
|
|
|
// from tax inclusive amount
|
|
|
|
var current_tax_fraction = 0.0;
|
|
|
|
|
|
|
|
if(cint(tax.included_in_print_rate)) {
|
|
|
|
var tax_rate = this._get_tax_rate(tax, item_tax_map);
|
|
|
|
|
|
|
|
if(tax.charge_type == "On Net Total") {
|
|
|
|
current_tax_fraction = (tax_rate / 100.0);
|
|
|
|
|
|
|
|
} else if(tax.charge_type == "On Previous Row Amount") {
|
|
|
|
current_tax_fraction = (tax_rate / 100.0) *
|
|
|
|
this.frm.doc["taxes"][cint(tax.row_id) - 1].tax_fraction_for_current_item;
|
|
|
|
|
|
|
|
} else if(tax.charge_type == "On Previous Row Total") {
|
|
|
|
current_tax_fraction = (tax_rate / 100.0) *
|
|
|
|
this.frm.doc["taxes"][cint(tax.row_id) - 1].grand_total_fraction_for_current_item;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-15 06:32:01 +00:00
|
|
|
if(tax.add_deduct_tax) {
|
|
|
|
current_tax_fraction *= (tax.add_deduct_tax == "Deduct") ? -1.0 : 1.0;
|
|
|
|
}
|
2015-01-23 10:54:49 +00:00
|
|
|
return current_tax_fraction;
|
|
|
|
},
|
|
|
|
|
|
|
|
_get_tax_rate: function(tax, item_tax_map) {
|
2017-05-30 07:24:42 +00:00
|
|
|
return (Object.keys(item_tax_map).indexOf(tax.account_head) != -1) ?
|
2015-02-20 09:10:35 +00:00
|
|
|
flt(item_tax_map[tax.account_head], precision("rate", tax)) : tax.rate;
|
2015-01-23 10:54:49 +00:00
|
|
|
},
|
|
|
|
|
2015-02-12 12:25:50 +00:00
|
|
|
calculate_net_total: function() {
|
|
|
|
var me = this;
|
2018-05-28 06:19:08 +00:00
|
|
|
this.frm.doc.total_qty = this.frm.doc.total = this.frm.doc.base_total = this.frm.doc.net_total = this.frm.doc.base_net_total = 0.0;
|
2015-02-12 12:25:50 +00:00
|
|
|
|
|
|
|
$.each(this.frm.doc["items"] || [], function(i, item) {
|
2015-02-22 20:10:01 +00:00
|
|
|
me.frm.doc.total += item.amount;
|
2018-05-28 06:19:08 +00:00
|
|
|
me.frm.doc.total_qty += item.qty;
|
2015-02-22 20:10:01 +00:00
|
|
|
me.frm.doc.base_total += item.base_amount;
|
2015-02-20 09:10:35 +00:00
|
|
|
me.frm.doc.net_total += item.net_amount;
|
|
|
|
me.frm.doc.base_net_total += item.base_net_amount;
|
2017-12-14 12:36:02 +00:00
|
|
|
});
|
2015-02-12 12:25:50 +00:00
|
|
|
|
2015-02-22 20:10:01 +00:00
|
|
|
frappe.model.round_floats_in(this.frm.doc, ["total", "base_total", "net_total", "base_net_total"]);
|
2015-02-12 12:25:50 +00:00
|
|
|
},
|
|
|
|
|
2015-01-22 11:43:13 +00:00
|
|
|
calculate_taxes: function() {
|
|
|
|
var me = this;
|
2017-09-19 09:23:16 +00:00
|
|
|
this.frm.doc.rounding_adjustment = 0;
|
2015-01-22 11:43:13 +00:00
|
|
|
var actual_tax_dict = {};
|
|
|
|
|
|
|
|
// maintain actual tax rate based on idx
|
|
|
|
$.each(this.frm.doc["taxes"] || [], function(i, tax) {
|
|
|
|
if (tax.charge_type == "Actual") {
|
2015-02-20 09:10:35 +00:00
|
|
|
actual_tax_dict[tax.idx] = flt(tax.tax_amount, precision("tax_amount", tax));
|
2015-01-22 11:43:13 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
$.each(this.frm.doc["items"] || [], function(n, item) {
|
|
|
|
var item_tax_map = me._load_item_tax_rate(item.item_tax_rate);
|
|
|
|
$.each(me.frm.doc["taxes"] || [], function(i, tax) {
|
|
|
|
// tax_amount represents the amount of tax for the current step
|
|
|
|
var current_tax_amount = me.get_current_tax_amount(item, tax, item_tax_map);
|
|
|
|
|
|
|
|
// Adjust divisional loss to the last item
|
|
|
|
if (tax.charge_type == "Actual") {
|
|
|
|
actual_tax_dict[tax.idx] -= current_tax_amount;
|
|
|
|
if (n == me.frm.doc["items"].length - 1) {
|
2017-07-31 12:37:45 +00:00
|
|
|
current_tax_amount += actual_tax_dict[tax.idx];
|
2015-01-22 11:43:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-22 17:33:07 +00:00
|
|
|
// accumulate tax amount into tax.tax_amount
|
2015-02-22 19:36:00 +00:00
|
|
|
if (tax.charge_type != "Actual" &&
|
2017-05-30 07:24:42 +00:00
|
|
|
!(me.discount_amount_applied && me.frm.doc.apply_discount_on=="Grand Total")) {
|
|
|
|
tax.tax_amount += current_tax_amount;
|
|
|
|
}
|
2015-02-22 17:33:07 +00:00
|
|
|
|
2015-01-22 11:43:13 +00:00
|
|
|
// store tax_amount for current item as it will be used for
|
|
|
|
// charge type = 'On Previous Row Amount'
|
|
|
|
tax.tax_amount_for_current_item = current_tax_amount;
|
|
|
|
|
2015-02-22 17:33:07 +00:00
|
|
|
// tax amount after discount amount
|
2015-01-22 11:43:13 +00:00
|
|
|
tax.tax_amount_after_discount_amount += current_tax_amount;
|
|
|
|
|
|
|
|
// for buying
|
|
|
|
if(tax.category) {
|
|
|
|
// if just for valuation, do not add the tax amount in total
|
|
|
|
// hence, setting it as 0 for further steps
|
|
|
|
current_tax_amount = (tax.category == "Valuation") ? 0.0 : current_tax_amount;
|
|
|
|
|
|
|
|
current_tax_amount *= (tax.add_deduct_tax == "Deduct") ? -1.0 : 1.0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// note: grand_total_for_current_item contains the contribution of
|
|
|
|
// item's amount, previously applied tax and the current tax on that item
|
|
|
|
if(i==0) {
|
2017-07-31 12:37:45 +00:00
|
|
|
tax.grand_total_for_current_item = flt(item.net_amount + current_tax_amount);
|
2015-01-22 11:43:13 +00:00
|
|
|
} else {
|
|
|
|
tax.grand_total_for_current_item =
|
2017-07-31 12:37:45 +00:00
|
|
|
flt(me.frm.doc["taxes"][i-1].grand_total_for_current_item + current_tax_amount);
|
2015-01-22 11:43:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// set precision in the last item iteration
|
|
|
|
if (n == me.frm.doc["items"].length - 1) {
|
|
|
|
me.round_off_totals(tax);
|
|
|
|
|
2017-07-31 12:37:45 +00:00
|
|
|
// in tax.total, accumulate grand total for each item
|
2017-08-01 11:05:22 +00:00
|
|
|
me.set_cumulative_total(i, tax);
|
2017-07-31 12:37:45 +00:00
|
|
|
|
2017-08-01 10:32:01 +00:00
|
|
|
me.set_in_company_currency(tax,
|
2017-07-31 12:37:45 +00:00
|
|
|
["total", "tax_amount", "tax_amount_after_discount_amount"]);
|
|
|
|
|
2015-01-22 11:43:13 +00:00
|
|
|
// adjust Discount Amount loss in last tax iteration
|
2016-04-29 11:52:42 +00:00
|
|
|
if ((i == me.frm.doc["taxes"].length - 1) && me.discount_amount_applied
|
2017-09-19 09:23:16 +00:00
|
|
|
&& me.frm.doc.apply_discount_on == "Grand Total" && me.frm.doc.discount_amount) {
|
|
|
|
me.frm.doc.rounding_adjustment = flt(me.frm.doc.grand_total -
|
|
|
|
flt(me.frm.doc.discount_amount) - tax.total, precision("rounding_adjustment"));
|
|
|
|
}
|
2015-01-22 11:43:13 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2017-07-31 12:37:45 +00:00
|
|
|
set_cumulative_total: function(row_idx, tax) {
|
2017-09-27 06:19:13 +00:00
|
|
|
var tax_amount = tax.tax_amount_after_discount_amount;
|
|
|
|
if (tax.category == 'Valuation') {
|
|
|
|
tax_amount = 0;
|
|
|
|
}
|
|
|
|
|
2017-09-21 10:45:30 +00:00
|
|
|
if (tax.add_deduct_tax == "Deduct") { tax_amount = -1*tax_amount; }
|
|
|
|
|
2017-07-31 12:37:45 +00:00
|
|
|
if(row_idx==0) {
|
2017-09-21 10:45:30 +00:00
|
|
|
tax.total = flt(this.frm.doc.net_total + tax_amount, precision("total", tax));
|
2017-07-31 12:37:45 +00:00
|
|
|
} else {
|
2017-09-21 10:45:30 +00:00
|
|
|
tax.total = flt(this.frm.doc["taxes"][row_idx-1].total + tax_amount, precision("total", tax));
|
2017-07-31 12:37:45 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2015-01-23 10:54:49 +00:00
|
|
|
_load_item_tax_rate: function(item_tax_rate) {
|
|
|
|
return item_tax_rate ? JSON.parse(item_tax_rate) : {};
|
2015-01-22 11:43:13 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
get_current_tax_amount: function(item, tax, item_tax_map) {
|
|
|
|
var tax_rate = this._get_tax_rate(tax, item_tax_map);
|
|
|
|
var current_tax_amount = 0.0;
|
|
|
|
|
|
|
|
if(tax.charge_type == "Actual") {
|
|
|
|
// distribute the tax amount proportionally to each item row
|
2015-02-20 09:10:35 +00:00
|
|
|
var actual = flt(tax.tax_amount, precision("tax_amount", tax));
|
|
|
|
current_tax_amount = this.frm.doc.net_total ?
|
|
|
|
((item.net_amount / this.frm.doc.net_total) * actual) : 0.0;
|
2015-01-22 11:43:13 +00:00
|
|
|
|
|
|
|
} else if(tax.charge_type == "On Net Total") {
|
2015-02-20 09:10:35 +00:00
|
|
|
current_tax_amount = (tax_rate / 100.0) * item.net_amount;
|
2015-01-22 11:43:13 +00:00
|
|
|
} else if(tax.charge_type == "On Previous Row Amount") {
|
|
|
|
current_tax_amount = (tax_rate / 100.0) *
|
|
|
|
this.frm.doc["taxes"][cint(tax.row_id) - 1].tax_amount_for_current_item;
|
|
|
|
|
|
|
|
} else if(tax.charge_type == "On Previous Row Total") {
|
|
|
|
current_tax_amount = (tax_rate / 100.0) *
|
|
|
|
this.frm.doc["taxes"][cint(tax.row_id) - 1].grand_total_for_current_item;
|
|
|
|
}
|
|
|
|
|
2015-02-20 09:10:35 +00:00
|
|
|
this.set_item_wise_tax(item, tax, tax_rate, current_tax_amount);
|
2015-01-22 11:43:13 +00:00
|
|
|
|
|
|
|
return current_tax_amount;
|
|
|
|
},
|
|
|
|
|
2015-02-20 09:10:35 +00:00
|
|
|
set_item_wise_tax: function(item, tax, tax_rate, current_tax_amount) {
|
|
|
|
// store tax breakup for each item
|
2018-06-11 08:01:33 +00:00
|
|
|
let tax_detail = tax.item_wise_tax_detail;
|
2018-06-18 12:10:42 +00:00
|
|
|
let key = item.item_code || item.item_name;
|
2018-06-11 08:01:33 +00:00
|
|
|
|
|
|
|
let item_wise_tax_amount = current_tax_amount * this.frm.doc.conversion_rate;
|
|
|
|
if (tax_detail && tax_detail[key])
|
|
|
|
item_wise_tax_amount += tax_detail[key][1];
|
|
|
|
|
|
|
|
tax_detail[key] = [tax_rate, flt(item_wise_tax_amount, precision("base_tax_amount", tax))];
|
2015-02-20 09:10:35 +00:00
|
|
|
},
|
|
|
|
|
2015-01-23 10:54:49 +00:00
|
|
|
round_off_totals: function(tax) {
|
|
|
|
tax.tax_amount = flt(tax.tax_amount, precision("tax_amount", tax));
|
2015-02-22 14:44:49 +00:00
|
|
|
tax.tax_amount_after_discount_amount = flt(tax.tax_amount_after_discount_amount, precision("tax_amount", tax));
|
2015-01-23 10:54:49 +00:00
|
|
|
},
|
|
|
|
|
2015-03-17 05:20:47 +00:00
|
|
|
manipulate_grand_total_for_inclusive_tax: function() {
|
|
|
|
var me = this;
|
|
|
|
// if fully inclusive taxes and diff
|
2015-03-23 09:03:22 +00:00
|
|
|
if (this.frm.doc["taxes"] && this.frm.doc["taxes"].length) {
|
2017-09-19 09:23:16 +00:00
|
|
|
var any_inclusive_tax = false;
|
|
|
|
$.each(this.frm.doc.taxes || [], function(i, d) {
|
|
|
|
if(cint(d.included_in_print_rate)) any_inclusive_tax = true;
|
|
|
|
});
|
|
|
|
if (any_inclusive_tax) {
|
2015-03-17 05:20:47 +00:00
|
|
|
var last_tax = me.frm.doc["taxes"].slice(-1)[0];
|
2017-09-19 09:23:16 +00:00
|
|
|
var non_inclusive_tax_amount = frappe.utils.sum($.map(this.frm.doc.taxes || [],
|
|
|
|
function(d) {
|
|
|
|
if(!d.included_in_print_rate) {
|
|
|
|
return flt(d.tax_amount_after_discount_amount);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
));
|
|
|
|
var diff = me.frm.doc.total + non_inclusive_tax_amount
|
|
|
|
- flt(last_tax.total, precision("grand_total"));
|
2015-03-17 05:20:47 +00:00
|
|
|
|
2017-09-19 09:23:16 +00:00
|
|
|
if ( diff && Math.abs(diff) <= (5.0 / Math.pow(10, precision("tax_amount", last_tax))) ) {
|
|
|
|
this.frm.doc.rounding_adjustment = flt(flt(this.frm.doc.rounding_adjustment) + diff,
|
|
|
|
precision("rounding_adjustment"));
|
2015-03-17 05:20:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2015-01-23 10:54:49 +00:00
|
|
|
|
2015-02-20 09:10:35 +00:00
|
|
|
calculate_totals: function() {
|
2017-09-19 09:23:16 +00:00
|
|
|
// Changing sequence can cause rounding_adjustmentng issue and on-screen discrepency
|
2015-02-20 09:10:35 +00:00
|
|
|
var me = this;
|
|
|
|
var tax_count = this.frm.doc["taxes"] ? this.frm.doc["taxes"].length : 0;
|
2017-09-19 09:23:16 +00:00
|
|
|
this.frm.doc.grand_total = flt(tax_count
|
|
|
|
? this.frm.doc["taxes"][tax_count - 1].total + flt(this.frm.doc.rounding_adjustment)
|
|
|
|
: this.frm.doc.net_total);
|
2015-02-20 09:10:35 +00:00
|
|
|
|
|
|
|
if(in_list(["Quotation", "Sales Order", "Delivery Note", "Sales Invoice"], this.frm.doc.doctype)) {
|
2015-02-22 17:33:07 +00:00
|
|
|
this.frm.doc.base_grand_total = (this.frm.doc.total_taxes_and_charges) ?
|
2015-02-20 09:10:35 +00:00
|
|
|
flt(this.frm.doc.grand_total * this.frm.doc.conversion_rate) : this.frm.doc.base_net_total;
|
|
|
|
} else {
|
|
|
|
// other charges added/deducted
|
|
|
|
this.frm.doc.taxes_and_charges_added = this.frm.doc.taxes_and_charges_deducted = 0.0;
|
|
|
|
if(tax_count) {
|
|
|
|
$.each(this.frm.doc["taxes"] || [], function(i, tax) {
|
2015-02-22 14:44:49 +00:00
|
|
|
if (in_list(["Valuation and Total", "Total"], tax.category)) {
|
2015-02-20 09:10:35 +00:00
|
|
|
if(tax.add_deduct_tax == "Add") {
|
2015-07-31 11:23:13 +00:00
|
|
|
me.frm.doc.taxes_and_charges_added += flt(tax.tax_amount_after_discount_amount);
|
2015-02-20 09:10:35 +00:00
|
|
|
} else {
|
2015-07-31 11:23:13 +00:00
|
|
|
me.frm.doc.taxes_and_charges_deducted += flt(tax.tax_amount_after_discount_amount);
|
2015-02-20 09:10:35 +00:00
|
|
|
}
|
|
|
|
}
|
2017-07-31 12:37:45 +00:00
|
|
|
});
|
2015-02-20 09:10:35 +00:00
|
|
|
|
2017-09-19 09:23:16 +00:00
|
|
|
frappe.model.round_floats_in(this.frm.doc,
|
|
|
|
["taxes_and_charges_added", "taxes_and_charges_deducted"]);
|
2015-02-20 09:10:35 +00:00
|
|
|
}
|
|
|
|
|
2015-02-22 17:33:07 +00:00
|
|
|
this.frm.doc.base_grand_total = flt((this.frm.doc.taxes_and_charges_added || this.frm.doc.taxes_and_charges_deducted) ?
|
2015-02-20 09:10:35 +00:00
|
|
|
flt(this.frm.doc.grand_total * this.frm.doc.conversion_rate) : this.frm.doc.base_net_total);
|
|
|
|
|
2017-09-19 09:23:16 +00:00
|
|
|
this.set_in_company_currency(this.frm.doc,
|
|
|
|
["taxes_and_charges_added", "taxes_and_charges_deducted"]);
|
2015-02-20 09:10:35 +00:00
|
|
|
}
|
|
|
|
|
2017-09-19 09:23:16 +00:00
|
|
|
this.frm.doc.total_taxes_and_charges = flt(this.frm.doc.grand_total - this.frm.doc.net_total
|
|
|
|
- flt(this.frm.doc.rounding_adjustment), precision("total_taxes_and_charges"));
|
2015-02-20 09:10:35 +00:00
|
|
|
|
2017-09-19 09:23:16 +00:00
|
|
|
this.set_in_company_currency(this.frm.doc, ["total_taxes_and_charges", "rounding_adjustment"]);
|
2015-02-22 17:33:07 +00:00
|
|
|
|
2015-02-20 09:10:35 +00:00
|
|
|
// Round grand total as per precision
|
|
|
|
frappe.model.round_floats_in(this.frm.doc, ["grand_total", "base_grand_total"]);
|
|
|
|
|
|
|
|
// rounded totals
|
2017-11-17 06:57:43 +00:00
|
|
|
this.set_rounded_total();
|
2017-09-19 09:23:16 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
set_rounded_total: function() {
|
2017-11-17 06:57:43 +00:00
|
|
|
var disable_rounded_total = 0;
|
|
|
|
if(frappe.meta.get_docfield(this.frm.doc.doctype, "disable_rounded_total", this.frm.doc.name)) {
|
|
|
|
disable_rounded_total = this.frm.doc.disable_rounded_total;
|
|
|
|
} else if (frappe.sys_defaults.disable_rounded_total) {
|
|
|
|
disable_rounded_total = frappe.sys_defaults.disable_rounded_total;
|
|
|
|
}
|
2018-01-12 10:58:16 +00:00
|
|
|
|
|
|
|
if (cint(disable_rounded_total)) {
|
2017-11-17 06:57:43 +00:00
|
|
|
this.frm.doc.rounded_total = 0;
|
|
|
|
this.frm.doc.base_rounded_total = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-02-20 09:10:35 +00:00
|
|
|
if(frappe.meta.get_docfield(this.frm.doc.doctype, "rounded_total", this.frm.doc.name)) {
|
2016-04-29 11:52:42 +00:00
|
|
|
this.frm.doc.rounded_total = round_based_on_smallest_currency_fraction(this.frm.doc.grand_total,
|
2016-01-20 09:16:26 +00:00
|
|
|
this.frm.doc.currency, precision("rounded_total"));
|
2017-11-17 06:57:43 +00:00
|
|
|
this.frm.doc.rounding_adjustment += flt(this.frm.doc.rounded_total - this.frm.doc.grand_total,
|
|
|
|
precision("rounding_adjustment"));
|
|
|
|
|
2017-11-22 10:42:20 +00:00
|
|
|
this.set_in_company_currency(this.frm.doc, ["rounding_adjustment", "rounded_total"]);
|
2015-02-20 09:10:35 +00:00
|
|
|
}
|
|
|
|
},
|
2015-01-23 10:54:49 +00:00
|
|
|
|
2015-01-22 11:43:13 +00:00
|
|
|
_cleanup: function() {
|
2015-02-20 09:10:35 +00:00
|
|
|
this.frm.doc.base_in_words = this.frm.doc.in_words = "";
|
2015-01-22 11:43:13 +00:00
|
|
|
|
|
|
|
if(this.frm.doc["items"] && this.frm.doc["items"].length) {
|
|
|
|
if(!frappe.meta.get_docfield(this.frm.doc["items"][0].doctype, "item_tax_amount", this.frm.doctype)) {
|
|
|
|
$.each(this.frm.doc["items"] || [], function(i, item) {
|
|
|
|
delete item["item_tax_amount"];
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(this.frm.doc["taxes"] && this.frm.doc["taxes"].length) {
|
|
|
|
var temporary_fields = ["tax_amount_for_current_item", "grand_total_for_current_item",
|
2017-07-31 12:37:45 +00:00
|
|
|
"tax_fraction_for_current_item", "grand_total_fraction_for_current_item"];
|
2015-01-22 11:43:13 +00:00
|
|
|
|
|
|
|
if(!frappe.meta.get_docfield(this.frm.doc["taxes"][0].doctype, "tax_amount_after_discount_amount", this.frm.doctype)) {
|
|
|
|
temporary_fields.push("tax_amount_after_discount_amount");
|
|
|
|
}
|
|
|
|
|
|
|
|
$.each(this.frm.doc["taxes"] || [], function(i, tax) {
|
|
|
|
$.each(temporary_fields, function(i, fieldname) {
|
|
|
|
delete tax[fieldname];
|
|
|
|
});
|
|
|
|
|
|
|
|
tax.item_wise_tax_detail = JSON.stringify(tax.item_wise_tax_detail);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2017-07-25 09:56:01 +00:00
|
|
|
set_discount_amount: function() {
|
|
|
|
if(this.frm.doc.additional_discount_percentage) {
|
|
|
|
this.frm.doc.discount_amount = flt(flt(this.frm.doc[frappe.scrub(this.frm.doc.apply_discount_on)])
|
|
|
|
* this.frm.doc.additional_discount_percentage / 100, precision("discount_amount"));
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2015-01-22 11:43:13 +00:00
|
|
|
apply_discount_amount: function() {
|
|
|
|
var me = this;
|
|
|
|
var distributed_amount = 0.0;
|
2016-04-09 09:01:09 +00:00
|
|
|
this.frm.doc.base_discount_amount = 0.0;
|
2015-01-22 11:43:13 +00:00
|
|
|
|
|
|
|
if (this.frm.doc.discount_amount) {
|
2015-02-23 10:31:33 +00:00
|
|
|
if(!this.frm.doc.apply_discount_on)
|
|
|
|
frappe.throw(__("Please select Apply Discount On"));
|
2016-06-15 11:15:03 +00:00
|
|
|
|
|
|
|
this.frm.doc.base_discount_amount = flt(this.frm.doc.discount_amount * this.frm.doc.conversion_rate,
|
2016-04-09 09:01:09 +00:00
|
|
|
precision("base_discount_amount"));
|
2015-01-22 11:43:13 +00:00
|
|
|
|
2015-02-20 09:10:35 +00:00
|
|
|
var total_for_discount_amount = this.get_total_for_discount_amount();
|
2017-07-31 12:37:45 +00:00
|
|
|
var net_total = 0;
|
2015-01-22 11:43:13 +00:00
|
|
|
// calculate item amount after Discount Amount
|
2015-02-20 09:10:35 +00:00
|
|
|
if (total_for_discount_amount) {
|
2015-01-22 11:43:13 +00:00
|
|
|
$.each(this.frm.doc["items"] || [], function(i, item) {
|
2015-02-20 09:10:35 +00:00
|
|
|
distributed_amount = flt(me.frm.doc.discount_amount) * item.net_amount / total_for_discount_amount;
|
2017-07-31 12:37:45 +00:00
|
|
|
item.net_amount = flt(item.net_amount - distributed_amount,
|
|
|
|
precision("base_amount", item));
|
|
|
|
net_total += item.net_amount;
|
|
|
|
|
|
|
|
// discount amount rounding loss adjustment if no taxes
|
|
|
|
if ((!(me.frm.doc.taxes || []).length || (me.frm.doc.apply_discount_on == "Net Total"))
|
|
|
|
&& i == (me.frm.doc.items || []).length - 1) {
|
|
|
|
var discount_amount_loss = flt(me.frm.doc.net_total - net_total
|
|
|
|
- me.frm.doc.discount_amount, precision("net_total"));
|
|
|
|
item.net_amount = flt(item.net_amount + discount_amount_loss,
|
|
|
|
precision("net_amount", item));
|
|
|
|
}
|
2018-10-18 12:27:56 +00:00
|
|
|
item.net_rate = item.qty ? flt(item.net_amount / item.qty, precision("net_rate", item)) : 0;
|
2015-02-20 09:10:35 +00:00
|
|
|
me.set_in_company_currency(item, ["net_rate", "net_amount"]);
|
2015-01-22 11:43:13 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
this.discount_amount_applied = true;
|
|
|
|
this._calculate_taxes_and_totals();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2015-02-20 09:10:35 +00:00
|
|
|
get_total_for_discount_amount: function() {
|
2015-02-22 19:36:00 +00:00
|
|
|
if(this.frm.doc.apply_discount_on == "Net Total") {
|
2017-07-31 12:37:45 +00:00
|
|
|
return this.frm.doc.net_total;
|
2015-02-20 09:10:35 +00:00
|
|
|
} else {
|
|
|
|
var total_actual_tax = 0.0;
|
|
|
|
var actual_taxes_dict = {};
|
2015-01-22 11:43:13 +00:00
|
|
|
|
2015-02-20 09:10:35 +00:00
|
|
|
$.each(this.frm.doc["taxes"] || [], function(i, tax) {
|
2017-12-12 13:20:05 +00:00
|
|
|
if (tax.charge_type == "Actual") {
|
|
|
|
var tax_amount = (tax.category == "Valuation") ? 0.0 : tax.tax_amount;
|
|
|
|
tax_amount *= (tax.add_deduct_tax == "Deduct") ? -1.0 : 1.0;
|
|
|
|
actual_taxes_dict[tax.idx] = tax_amount;
|
|
|
|
} else if (actual_taxes_dict[tax.row_id] !== null) {
|
2017-05-30 07:24:42 +00:00
|
|
|
var actual_tax_amount = flt(actual_taxes_dict[tax.row_id]) * flt(tax.rate) / 100;
|
2015-02-20 09:10:35 +00:00
|
|
|
actual_taxes_dict[tax.idx] = actual_tax_amount;
|
|
|
|
}
|
|
|
|
});
|
2015-01-22 11:43:13 +00:00
|
|
|
|
2015-02-20 09:10:35 +00:00
|
|
|
$.each(actual_taxes_dict, function(key, value) {
|
2015-02-22 17:33:07 +00:00
|
|
|
if (value) total_actual_tax += value;
|
2015-02-20 09:10:35 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
return flt(this.frm.doc.grand_total - total_actual_tax, precision("grand_total"));
|
|
|
|
}
|
2015-01-22 11:43:13 +00:00
|
|
|
},
|
|
|
|
|
2015-01-23 10:54:49 +00:00
|
|
|
calculate_total_advance: function(update_paid_amount) {
|
2015-02-20 09:10:35 +00:00
|
|
|
var total_allocated_amount = frappe.utils.sum($.map(this.frm.doc["advances"] || [], function(adv) {
|
2017-07-31 12:37:45 +00:00
|
|
|
return flt(adv.allocated_amount, precision("allocated_amount", adv));
|
2015-02-20 09:10:35 +00:00
|
|
|
}));
|
|
|
|
this.frm.doc.total_advance = flt(total_allocated_amount, precision("total_advance"));
|
2015-01-22 11:43:13 +00:00
|
|
|
|
2015-01-23 10:54:49 +00:00
|
|
|
this.calculate_outstanding_amount(update_paid_amount);
|
2015-08-27 06:58:36 +00:00
|
|
|
},
|
2016-04-29 11:52:42 +00:00
|
|
|
|
2015-08-27 06:58:36 +00:00
|
|
|
calculate_outstanding_amount: function(update_paid_amount) {
|
|
|
|
// NOTE:
|
2018-07-06 07:06:57 +00:00
|
|
|
// paid_amount and write_off_amount is only for POS/Loyalty Point Redemption Invoice
|
2015-08-27 06:58:36 +00:00
|
|
|
// total_advance is only for non POS Invoice
|
2016-08-24 20:39:53 +00:00
|
|
|
if(this.frm.doc.doctype == "Sales Invoice" && this.frm.doc.is_return){
|
2017-07-31 12:37:45 +00:00
|
|
|
this.calculate_paid_amount();
|
2016-08-24 20:39:53 +00:00
|
|
|
}
|
|
|
|
|
2015-08-27 06:58:36 +00:00
|
|
|
if(this.frm.doc.is_return || this.frm.doc.docstatus > 0) return;
|
2016-04-29 11:52:42 +00:00
|
|
|
|
2015-08-27 06:58:36 +00:00
|
|
|
frappe.model.round_floats_in(this.frm.doc, ["grand_total", "total_advance", "write_off_amount"]);
|
2016-04-29 11:52:42 +00:00
|
|
|
|
2017-11-17 06:57:43 +00:00
|
|
|
if(in_list(["Sales Invoice", "Purchase Invoice"], this.frm.doc.doctype)) {
|
|
|
|
var grand_total = this.frm.doc.rounded_total || this.frm.doc.grand_total;
|
2016-04-29 11:52:42 +00:00
|
|
|
|
2017-11-17 06:57:43 +00:00
|
|
|
if(this.frm.doc.party_account_currency == this.frm.doc.currency) {
|
|
|
|
var total_amount_to_pay = flt((grand_total - this.frm.doc.total_advance
|
|
|
|
- this.frm.doc.write_off_amount), precision("grand_total"));
|
|
|
|
} else {
|
|
|
|
var total_amount_to_pay = flt(
|
|
|
|
(flt(grand_total*this.frm.doc.conversion_rate, precision("grand_total"))
|
|
|
|
- this.frm.doc.total_advance - this.frm.doc.base_write_off_amount),
|
|
|
|
precision("base_grand_total")
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
frappe.model.round_floats_in(this.frm.doc, ["paid_amount"]);
|
2015-08-27 06:58:36 +00:00
|
|
|
this.set_in_company_currency(this.frm.doc, ["paid_amount"]);
|
2016-04-09 09:01:09 +00:00
|
|
|
|
|
|
|
if(this.frm.refresh_field){
|
|
|
|
this.frm.refresh_field("paid_amount");
|
|
|
|
this.frm.refresh_field("base_paid_amount");
|
|
|
|
}
|
2016-06-15 11:15:03 +00:00
|
|
|
|
2017-11-17 06:57:43 +00:00
|
|
|
if(this.frm.doc.doctype == "Sales Invoice") {
|
2018-07-06 07:06:57 +00:00
|
|
|
let total_amount_for_payment = (this.frm.doc.redeem_loyalty_points && this.frm.doc.loyalty_amount)
|
|
|
|
? flt(total_amount_to_pay - this.frm.doc.loyalty_amount, precision("base_grand_total"))
|
|
|
|
: total_amount_to_pay;
|
|
|
|
this.set_default_payment(total_amount_for_payment, update_paid_amount);
|
2017-07-31 12:37:45 +00:00
|
|
|
this.calculate_paid_amount();
|
2016-04-09 09:01:09 +00:00
|
|
|
}
|
2017-07-31 12:37:45 +00:00
|
|
|
this.calculate_change_amount();
|
2016-04-29 11:52:42 +00:00
|
|
|
|
|
|
|
var paid_amount = (this.frm.doc.party_account_currency == this.frm.doc.currency) ?
|
2015-11-13 07:33:10 +00:00
|
|
|
this.frm.doc.paid_amount : this.frm.doc.base_paid_amount;
|
2016-08-30 20:34:37 +00:00
|
|
|
this.frm.doc.outstanding_amount = flt(total_amount_to_pay - flt(paid_amount) +
|
2016-08-29 19:11:33 +00:00
|
|
|
flt(this.frm.doc.change_amount * this.frm.doc.conversion_rate), precision("outstanding_amount"));
|
2017-07-31 12:37:45 +00:00
|
|
|
}
|
2016-04-09 09:01:09 +00:00
|
|
|
},
|
2016-06-15 11:15:03 +00:00
|
|
|
|
2016-07-19 14:34:44 +00:00
|
|
|
set_default_payment: function(total_amount_to_pay, update_paid_amount){
|
|
|
|
var me = this;
|
2017-05-30 07:24:42 +00:00
|
|
|
var payment_status = true;
|
2016-07-30 11:19:48 +00:00
|
|
|
if(this.frm.doc.is_pos && (update_paid_amount===undefined || update_paid_amount)){
|
2016-07-19 14:34:44 +00:00
|
|
|
$.each(this.frm.doc['payments'] || [], function(index, data){
|
2017-07-24 12:23:10 +00:00
|
|
|
if(data.default && payment_status && total_amount_to_pay > 0) {
|
2016-08-26 20:05:31 +00:00
|
|
|
data.base_amount = flt(total_amount_to_pay, precision("base_amount"));
|
|
|
|
data.amount = flt(total_amount_to_pay / me.frm.doc.conversion_rate, precision("amount"));
|
2016-07-19 14:34:44 +00:00
|
|
|
payment_status = false;
|
2016-07-21 17:58:04 +00:00
|
|
|
}else if(me.frm.doc.paid_amount){
|
2016-07-20 05:51:51 +00:00
|
|
|
data.amount = 0.0;
|
2016-07-19 14:34:44 +00:00
|
|
|
}
|
2017-07-31 12:37:45 +00:00
|
|
|
});
|
2016-07-19 14:34:44 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2016-04-09 09:01:09 +00:00
|
|
|
calculate_paid_amount: function(){
|
|
|
|
var me = this;
|
2017-05-30 07:24:42 +00:00
|
|
|
var paid_amount = 0.0;
|
|
|
|
var base_paid_amount = 0.0;
|
2017-01-17 06:41:57 +00:00
|
|
|
if(this.frm.doc.is_pos) {
|
|
|
|
$.each(this.frm.doc['payments'] || [], function(index, data){
|
|
|
|
data.base_amount = flt(data.amount * me.frm.doc.conversion_rate, precision("base_amount"));
|
|
|
|
paid_amount += data.amount;
|
|
|
|
base_paid_amount += data.base_amount;
|
2017-07-31 12:37:45 +00:00
|
|
|
});
|
2017-05-16 05:59:57 +00:00
|
|
|
} else if(!this.frm.doc.is_return){
|
|
|
|
this.frm.doc.payments = [];
|
2017-01-17 06:41:57 +00:00
|
|
|
}
|
2018-07-06 07:06:57 +00:00
|
|
|
if (this.frm.doc.redeem_loyalty_points && this.frm.doc.loyalty_amount) {
|
|
|
|
base_paid_amount += this.frm.doc.loyalty_amount;
|
|
|
|
paid_amount += flt(this.frm.doc.loyalty_amount / me.frm.doc.conversion_rate, precision("paid_amount"));
|
|
|
|
}
|
2016-06-15 11:15:03 +00:00
|
|
|
|
2016-04-09 09:01:09 +00:00
|
|
|
this.frm.doc.paid_amount = flt(paid_amount, precision("paid_amount"));
|
|
|
|
this.frm.doc.base_paid_amount = flt(base_paid_amount, precision("base_paid_amount"));
|
|
|
|
},
|
2016-06-15 11:15:03 +00:00
|
|
|
|
2016-04-09 09:01:09 +00:00
|
|
|
calculate_change_amount: function(){
|
2016-08-02 11:11:10 +00:00
|
|
|
this.frm.doc.change_amount = 0.0;
|
2017-05-30 10:05:01 +00:00
|
|
|
this.frm.doc.base_change_amount = 0.0;
|
2017-11-17 06:57:43 +00:00
|
|
|
if(this.frm.doc.doctype == "Sales Invoice"
|
|
|
|
&& this.frm.doc.paid_amount > this.frm.doc.grand_total && !this.frm.doc.is_return) {
|
|
|
|
|
2017-07-31 12:37:45 +00:00
|
|
|
var payment_types = $.map(this.frm.doc.payments, function(d) { return d.type; });
|
2017-05-30 10:05:01 +00:00
|
|
|
if (in_list(payment_types, 'Cash')) {
|
2018-02-05 12:43:29 +00:00
|
|
|
var grand_total = this.frm.doc.rounded_total || this.frm.doc.grand_total;
|
|
|
|
var base_grand_total = this.frm.doc.base_rounded_total || this.frm.doc.base_grand_total;
|
|
|
|
|
|
|
|
this.frm.doc.change_amount = flt(this.frm.doc.paid_amount - grand_total +
|
2017-05-30 10:05:01 +00:00
|
|
|
this.frm.doc.write_off_amount, precision("change_amount"));
|
2017-07-31 12:37:45 +00:00
|
|
|
|
|
|
|
this.frm.doc.base_change_amount = flt(this.frm.doc.base_paid_amount -
|
2018-02-05 12:43:29 +00:00
|
|
|
base_grand_total + this.frm.doc.base_write_off_amount,
|
2017-05-30 10:05:01 +00:00
|
|
|
precision("base_change_amount"));
|
|
|
|
}
|
2016-04-09 09:01:09 +00:00
|
|
|
}
|
|
|
|
},
|
2016-08-04 09:26:15 +00:00
|
|
|
|
|
|
|
calculate_write_off_amount: function(){
|
2016-08-05 10:11:36 +00:00
|
|
|
if(this.frm.doc.paid_amount > this.frm.doc.grand_total){
|
2017-07-31 12:37:45 +00:00
|
|
|
this.frm.doc.write_off_amount = flt(this.frm.doc.grand_total - this.frm.doc.paid_amount
|
|
|
|
+ this.frm.doc.change_amount, precision("write_off_amount"));
|
|
|
|
|
2016-08-05 10:11:36 +00:00
|
|
|
this.frm.doc.base_write_off_amount = flt(this.frm.doc.write_off_amount * this.frm.doc.conversion_rate,
|
|
|
|
precision("base_write_off_amount"));
|
|
|
|
}else{
|
2017-07-31 12:37:45 +00:00
|
|
|
this.frm.doc.paid_amount = 0.0;
|
2016-08-05 10:11:36 +00:00
|
|
|
}
|
2017-07-31 12:37:45 +00:00
|
|
|
this.calculate_outstanding_amount(false);
|
2016-08-04 09:26:15 +00:00
|
|
|
}
|
2017-08-01 10:50:59 +00:00
|
|
|
});
|