diff --git a/erpnext/selling/doctype/sales_common/sales_common.js b/erpnext/selling/doctype/sales_common/sales_common.js index 0cc886872b..17f19ae3c6 100644 --- a/erpnext/selling/doctype/sales_common/sales_common.js +++ b/erpnext/selling/doctype/sales_common/sales_common.js @@ -247,9 +247,9 @@ cur_frm.cscript.calc_doc_values = function(doc, cdt, cdn, tname, fname, other_fn net_total_incl += flt(d[j].amount); } } - console.log("Net Total: " + net_total); - console.log("Net Total Incl: " + net_total_incl); - console.log("Other Charges: " + other_charges_total); + //console.log("Net Total: " + net_total); + //console.log("Net Total Incl: " + net_total_incl); + //console.log("Other Charges: " + other_charges_total); doc.net_total = net_total_incl > net_total ? flt(net_total_incl) : flt(net_total); doc.other_charges_total = flt(other_charges_total); doc.grand_total = flt(flt(net_total) + flt(other_charges_total)); @@ -384,11 +384,11 @@ cur_frm.cscript.consider_incl_rate = function(doc, other_fname) { var tax_list = getchildren('RV Tax Detail', doc.name, other_fname, doc.doctype); for(var i=0; i ERPNext -