blob: b508fcb69261e8f99546f4fa15c4d6cadffa8694 [file] [log] [blame]
Anand Doshi885e0742015-03-03 14:55:30 +05301// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
Rushabh Mehtae67d1fb2013-08-05 14:59:54 +05302// License: GNU General Public License v3. See license.txt
Anand Doshi3543f302013-05-24 19:25:01 +05303
Nabin Haitb4a3dfa2015-01-22 17:13:13 +05304erpnext.TransactionController = erpnext.taxes_and_totals.extend({
Rushabh Mehtabe2ee182016-04-29 17:22:42 +05305 setup: function() {
Rushabh Mehta2cb7a9f2016-06-15 16:45:03 +05306 this._super();
Rushabh Mehtabe2ee182016-04-29 17:22:42 +05307 frappe.ui.form.on(this.frm.doctype + " Item", "rate", function(frm, cdt, cdn) {
8 var item = frappe.get_doc(cdt, cdn);
Rushabh Mehtaf69ffeb2017-05-17 19:40:40 +05309 var has_margin_field = frappe.meta.has_field(cdt, 'margin_type');
10
Rushabh Mehtabe2ee182016-04-29 17:22:42 +053011 frappe.model.round_floats_in(item, ["rate", "price_list_rate"]);
12
13 if(item.price_list_rate) {
Rushabh Mehtaf69ffeb2017-05-17 19:40:40 +053014 if(item.rate > item.price_list_rate && has_margin_field) {
15 // if rate is greater than price_list_rate, set margin
16 // or set discount
17 item.discount_percentage = 0;
Nabin Haite72c98d2017-05-24 09:01:44 +053018 item.margin_type = 'Amount';
19 item.margin_rate_or_amount = flt(item.rate - item.price_list_rate,
20 precision("margin_rate_or_amount", item));
21 item.rate_with_margin = item.rate;
Rushabh Mehtaf69ffeb2017-05-17 19:40:40 +053022 } else {
23 item.discount_percentage = flt((1 - item.rate / item.price_list_rate) * 100.0,
24 precision("discount_percentage", item));
25 item.margin_type = '';
26 item.margin_rate_or_amount = 0;
27 item.rate_with_margin = 0;
28 }
Rushabh Mehtabe2ee182016-04-29 17:22:42 +053029 } else {
30 item.discount_percentage = 0.0;
Rushabh Mehtaf69ffeb2017-05-17 19:40:40 +053031 item.margin_type = '';
32 item.margin_rate_or_amount = 0;
33 item.rate_with_margin = 0;
Rushabh Mehtabe2ee182016-04-29 17:22:42 +053034 }
35
36 cur_frm.cscript.set_gross_profit(item);
37 cur_frm.cscript.calculate_taxes_and_totals();
38 })
39
40 frappe.ui.form.on(this.frm.cscript.tax_table, "rate", function(frm, cdt, cdn) {
41 cur_frm.cscript.calculate_taxes_and_totals();
Rushabh Mehta764aa922016-05-02 13:28:46 +053042 });
Rushabh Mehtabe2ee182016-04-29 17:22:42 +053043
44 frappe.ui.form.on(this.frm.cscript.tax_table, "tax_amount", function(frm, cdt, cdn) {
45 cur_frm.cscript.calculate_taxes_and_totals();
Rushabh Mehta764aa922016-05-02 13:28:46 +053046 });
Rushabh Mehtabe2ee182016-04-29 17:22:42 +053047
48 frappe.ui.form.on(this.frm.cscript.tax_table, "row_id", function(frm, cdt, cdn) {
49 cur_frm.cscript.calculate_taxes_and_totals();
Rushabh Mehta764aa922016-05-02 13:28:46 +053050 });
Rushabh Mehtabe2ee182016-04-29 17:22:42 +053051
52 frappe.ui.form.on(this.frm.cscript.tax_table, "included_in_print_rate", function(frm, cdt, cdn) {
53 cur_frm.cscript.set_dynamic_labels();
54 cur_frm.cscript.calculate_taxes_and_totals();
Rushabh Mehta764aa922016-05-02 13:28:46 +053055 });
Rushabh Mehtabe2ee182016-04-29 17:22:42 +053056
57 frappe.ui.form.on(this.frm.doctype, "apply_discount_on", function(frm) {
58 if(frm.doc.additional_discount_percentage) {
59 frm.trigger("additional_discount_percentage");
60 } else {
61 cur_frm.cscript.calculate_taxes_and_totals();
62 }
Rushabh Mehta764aa922016-05-02 13:28:46 +053063 });
Rushabh Mehtabe2ee182016-04-29 17:22:42 +053064
65 frappe.ui.form.on(this.frm.doctype, "additional_discount_percentage", function(frm) {
66 if (frm.via_discount_amount) {
67 return;
68 }
69
70 if(!frm.doc.apply_discount_on) {
71 frappe.msgprint(__("Please set 'Apply Additional Discount On'"));
72 return
73 }
74
75 frm.via_discount_percentage = true;
76
77 if(frm.doc.additional_discount_percentage && frm.doc.discount_amount) {
78 // Reset discount amount and net / grand total
79 frm.set_value("discount_amount", 0);
80 }
81
82 var total = flt(frm.doc[frappe.model.scrub(frm.doc.apply_discount_on)]);
83 var discount_amount = flt(total*flt(frm.doc.additional_discount_percentage) / 100,
84 precision("discount_amount"));
85
86 frm.set_value("discount_amount", discount_amount);
87 delete frm.via_discount_percentage;
88 });
89
90 frappe.ui.form.on(this.frm.doctype, "discount_amount", function(frm) {
91 frm.cscript.set_dynamic_labels();
92
93 if (!frm.via_discount_percentage) {
94 frm.via_discount_amount = true;
95 frm.set_value("additional_discount_percentage", 0);
96 delete frm.via_discount_amount;
97 }
98
99 frm.cscript.calculate_taxes_and_totals();
100 });
Makarand Bauskarc196d742017-06-02 17:28:40 +0530101
102 var me = this;
103 if(this.frm.fields_dict["items"].grid.get_field('batch_no')) {
104 this.frm.set_query("batch_no", "items", function(doc, cdt, cdn) {
105 return me.set_query_for_batch(doc, cdt, cdn)
106 });
107 }
Rushabh Mehtabe2ee182016-04-29 17:22:42 +0530108 },
Anand Doshi3543f302013-05-24 19:25:01 +0530109 onload: function() {
Anand Doshi1e4fb682013-08-23 12:56:33 +0530110 var me = this;
Anand Doshi3543f302013-05-24 19:25:01 +0530111 if(this.frm.doc.__islocal) {
Anand Doshi1e4fb682013-08-23 12:56:33 +0530112 var today = get_today(),
Nabin Hait73083dc2014-03-14 15:10:42 +0530113 currency = frappe.defaults.get_user_default("currency");
Rushabh Mehtaff938022014-04-15 18:40:00 +0530114
Anand Doshi3543f302013-05-24 19:25:01 +0530115 $.each({
Anand Doshifc777182013-05-27 19:29:07 +0530116 currency: currency,
117 price_list_currency: currency,
118 status: "Draft",
Anand Doshifc777182013-05-27 19:29:07 +0530119 is_subcontracted: "No",
Anand Doshi3543f302013-05-24 19:25:01 +0530120 }, function(fieldname, value) {
121 if(me.frm.fields_dict[fieldname] && !me.frm.doc[fieldname])
122 me.frm.set_value(fieldname, value);
Rushabh Mehtaff938022014-04-15 18:40:00 +0530123 });
nabinhaitbc408d82014-07-07 16:51:52 +0530124
nabinhaitb7392642014-07-28 14:55:08 +0530125 if(this.frm.doc.company && !this.frm.doc.amended_from) {
Rushabh Mehtab66edd12017-03-30 21:21:56 +0530126 this.frm.trigger("company");
nabinhaitbc408d82014-07-07 16:51:52 +0530127 }
Anand Doshi3543f302013-05-24 19:25:01 +0530128 }
Akhilesh Darjee564c6212013-10-17 11:31:11 +0530129
Nabin Haitdd38a262014-12-26 13:15:21 +0530130 if(this.frm.fields_dict["taxes"]) {
131 this["taxes_remove"] = this.calculate_taxes_and_totals;
Anand Doshia91c95f2013-08-23 13:00:47 +0530132 }
Rushabh Mehtaff938022014-04-15 18:40:00 +0530133
Nabin Haitdd38a262014-12-26 13:15:21 +0530134 if(this.frm.fields_dict["items"]) {
135 this["items_remove"] = this.calculate_taxes_and_totals;
Anand Doshi1e4fb682013-08-23 12:56:33 +0530136 }
Rushabh Mehtaa208c562015-08-03 13:18:54 +0530137
Neil Trini Lasradoe2d8dd02015-06-22 19:06:15 +0530138 if(this.frm.fields_dict["recurring_print_format"]) {
139 this.frm.set_query("recurring_print_format", function(doc) {
140 return{
141 filters: [
142 ['Print Format', 'doc_type', '=', cur_frm.doctype],
143 ]
144 }
145 });
146 }
Rushabh Mehtaa208c562015-08-03 13:18:54 +0530147
Nabin Hait1d218422015-07-17 15:19:02 +0530148 if(this.frm.fields_dict["return_against"]) {
149 this.frm.set_query("return_against", function(doc) {
150 var filters = {
151 "docstatus": 1,
152 "is_return": 0,
153 "company": doc.company
154 };
155 if (me.frm.fields_dict["customer"] && doc.customer) filters["customer"] = doc.customer;
156 if (me.frm.fields_dict["supplier"] && doc.supplier) filters["supplier"] = doc.supplier;
Rushabh Mehtaa208c562015-08-03 13:18:54 +0530157
Nabin Hait1d218422015-07-17 15:19:02 +0530158 return {
159 filters: filters
160 }
161 });
162 }
Rushabh Mehta6b537922017-03-14 16:59:11 +0530163
Nabin Hait8af429d2016-11-16 17:21:59 +0530164 this.setup_quality_inspection();
Manas Solankic2cd3fd2016-11-14 21:57:05 +0530165 },
Rushabh Mehtaa208c562015-08-03 13:18:54 +0530166
Nabin Hait8af429d2016-11-16 17:21:59 +0530167 setup_quality_inspection: function() {
168 if(!in_list(["Delivery Note", "Sales Invoice", "Purchase Receipt", "Purchase Invoice"], this.frm.doc.doctype)) {
169 return;
170 }
Manas Solankic2cd3fd2016-11-14 21:57:05 +0530171 var me = this;
Rushabh Mehta6b537922017-03-14 16:59:11 +0530172 var inspection_type = in_list(["Purchase Receipt", "Purchase Invoice"], this.frm.doc.doctype)
Nabin Hait8af429d2016-11-16 17:21:59 +0530173 ? "Incoming" : "Outgoing";
Rushabh Mehta6b537922017-03-14 16:59:11 +0530174
Manas Solankia8d1bc72016-11-15 14:48:23 +0530175 var quality_inspection_field = this.frm.get_docfield("items", "quality_inspection");
Nabin Hait8af429d2016-11-16 17:21:59 +0530176 quality_inspection_field.get_route_options_for_new_doc = function(row) {
Manas Solankic2cd3fd2016-11-14 21:57:05 +0530177 if(me.frm.is_new()) return;
Manas Solankic2cd3fd2016-11-14 21:57:05 +0530178 return {
179 "inspection_type": inspection_type,
Manas Solanki34feab12016-11-16 14:36:28 +0530180 "reference_type": me.frm.doc.doctype,
Manas Solankidbc25112016-11-16 15:06:08 +0530181 "reference_name": me.frm.doc.name,
Nabin Hait8af429d2016-11-16 17:21:59 +0530182 "item_code": row.doc.item_code,
183 "description": row.doc.description,
184 "item_serial_no": row.doc.serial_no ? row.doc.serial_no.split("\n")[0] : null,
185 "batch_no": row.doc.batch_no
Manas Solankic2cd3fd2016-11-14 21:57:05 +0530186 }
187 }
Rushabh Mehta6b537922017-03-14 16:59:11 +0530188
Manas Solankic2cd3fd2016-11-14 21:57:05 +0530189 this.frm.set_query("quality_inspection", "items", function(doc, cdt, cdn) {
190 var d = locals[cdt][cdn];
191 return {
192 filters: {
193 docstatus: 1,
194 inspection_type: inspection_type,
195 item_code: d.item_code
196 }
197 }
198 });
Anand Doshi3543f302013-05-24 19:25:01 +0530199 },
Rushabh Mehtaff938022014-04-15 18:40:00 +0530200
Anand Doshi5e4e5d72013-08-06 17:23:44 +0530201 onload_post_render: function() {
Akhilesh Darjee61b5c592013-10-15 20:24:34 +0530202 var me = this;
Nabin Haitffc7f3f2015-05-12 15:07:02 +0530203 if(this.frm.doc.__islocal && !(this.frm.doc.taxes || []).length
204 && !(this.frm.doc.__onload ? this.frm.doc.__onload.load_after_mapping : false)) {
205 this.apply_default_taxes();
Anand Doshi70f57eb2015-11-27 14:37:40 +0530206 } else if(this.frm.doc.__islocal && this.frm.doc.company && this.frm.doc["items"]
Nabin Haitbdfb0702015-10-28 15:38:08 +0530207 && !this.frm.doc.is_pos) {
208 me.calculate_taxes_and_totals();
Anand Doshi5e4e5d72013-08-06 17:23:44 +0530209 }
Nabin Haitdd38a262014-12-26 13:15:21 +0530210 if(frappe.meta.get_docfield(this.frm.doc.doctype + " Item", "item_code")) {
Rushabh Mehta203cc962016-04-07 15:25:43 +0530211 this.setup_item_selector();
Rushabh Mehtab6843f22014-06-04 13:10:41 +0530212 }
Anand Doshi5e4e5d72013-08-06 17:23:44 +0530213 },
Rushabh Mehtaff938022014-04-15 18:40:00 +0530214
Anand Doshi3543f302013-05-24 19:25:01 +0530215 refresh: function() {
Anand Doshi8bde7f92014-04-24 18:11:49 +0530216 erpnext.toggle_naming_series();
Anand Doshibdee6e02013-07-09 13:03:39 +0530217 erpnext.hide_company();
Anand Doshi3543f302013-05-24 19:25:01 +0530218 this.show_item_wise_taxes();
Nabin Hait1f996c32013-07-29 19:00:53 +0530219 this.set_dynamic_labels();
Rushabh Mehta614e7ab2015-02-18 19:51:48 +0530220 this.setup_sms();
221 },
Rushabh Mehta4a3c8052015-05-19 11:10:12 +0530222
Nabin Haitffc7f3f2015-05-12 15:07:02 +0530223 apply_default_taxes: function() {
224 var me = this;
Rushabh Mehta4984bcc2015-05-21 12:51:07 +0530225 var taxes_and_charges_field = frappe.meta.get_docfield(me.frm.doc.doctype, "taxes_and_charges",
226 me.frm.doc.name);
227
228 if(taxes_and_charges_field) {
Nabin Haitbdfb0702015-10-28 15:38:08 +0530229 return frappe.call({
Rushabh Mehta4984bcc2015-05-21 12:51:07 +0530230 method: "erpnext.controllers.accounts_controller.get_default_taxes_and_charges",
231 args: {
232 "master_doctype": taxes_and_charges_field.options
233 },
234 callback: function(r) {
235 if(!r.exc) {
236 me.frm.set_value("taxes", r.message);
Nabin Haitbdfb0702015-10-28 15:38:08 +0530237 me.calculate_taxes_and_totals();
Rushabh Mehta4984bcc2015-05-21 12:51:07 +0530238 }
Nabin Haitffc7f3f2015-05-12 15:07:02 +0530239 }
Rushabh Mehta4984bcc2015-05-21 12:51:07 +0530240 });
241 }
Nabin Haitffc7f3f2015-05-12 15:07:02 +0530242 },
Rushabh Mehta614e7ab2015-02-18 19:51:48 +0530243
244 setup_sms: function() {
245 var me = this;
Nabin Hait7132bd32016-04-13 15:19:37 +0530246 if(this.frm.doc.docstatus===1 && !in_list(["Lost", "Stopped", "Closed"], this.frm.doc.status)
Rushabh Mehta4a3c8052015-05-19 11:10:12 +0530247 && this.frm.doctype != "Purchase Invoice") {
Rushabh Mehta614e7ab2015-02-18 19:51:48 +0530248 this.frm.page.add_menu_item(__('Send SMS'), function() { me.send_sms(); });
249 }
250 },
251
252 send_sms: function() {
Rushabh Mehta4a3c8052015-05-19 11:10:12 +0530253 var sms_man = new SMSManager(this.frm.doc);
Nabin Hait239c2c32015-01-15 14:21:41 +0530254 },
Anand Doshi50d7e8c2015-01-06 17:14:13 +0530255
Neil Trini Lasradod0151952015-06-09 15:21:50 +0530256 barcode: function(doc, cdt, cdn) {
257 var d = locals[cdt][cdn];
258 if(d.barcode=="" || d.barcode==null) {
259 // barcode cleared, remove item
260 d.item_code = "";
261 }
Rushabh Mehta675f9c62016-06-02 16:34:00 +0530262 this.item_code(doc, cdt, cdn, true);
Neil Trini Lasradod0151952015-06-09 15:21:50 +0530263 },
264
Rushabh Mehta675f9c62016-06-02 16:34:00 +0530265 item_code: function(doc, cdt, cdn, from_barcode) {
Nabin Hait139dc7b2014-02-12 14:53:18 +0530266 var me = this;
Rushabh Mehta66d52b52014-03-27 14:17:33 +0530267 var item = frappe.get_doc(cdt, cdn);
Rushabh Mehta675f9c62016-06-02 16:34:00 +0530268
269 // clear barcode if setting item (else barcode will take priority)
270 if(!from_barcode) {
271 item.barcode = null;
272 }
Nabin Hait139dc7b2014-02-12 14:53:18 +0530273 if(item.item_code || item.barcode || item.serial_no) {
274 if(!this.validate_company_and_party()) {
Nabin Haitdd38a262014-12-26 13:15:21 +0530275 cur_frm.fields_dict["items"].grid.grid_rows[item.idx - 1].remove();
Nabin Hait139dc7b2014-02-12 14:53:18 +0530276 } else {
277 return this.frm.call({
278 method: "erpnext.stock.get_item_details.get_item_details",
279 child: item,
280 args: {
281 args: {
282 item_code: item.item_code,
283 barcode: item.barcode,
284 serial_no: item.serial_no,
285 warehouse: item.warehouse,
Nabin Hait139dc7b2014-02-12 14:53:18 +0530286 customer: me.frm.doc.customer,
287 supplier: me.frm.doc.supplier,
288 currency: me.frm.doc.currency,
Rohit Waghchauredc981dc2017-04-03 14:17:08 +0530289 update_stock: in_list(['Sales Invoice', 'Purchase Invoice'], me.frm.doc.doctype) ? cint(me.frm.doc.update_stock) : 0,
Nabin Hait139dc7b2014-02-12 14:53:18 +0530290 conversion_rate: me.frm.doc.conversion_rate,
291 price_list: me.frm.doc.selling_price_list ||
292 me.frm.doc.buying_price_list,
293 price_list_currency: me.frm.doc.price_list_currency,
294 plc_conversion_rate: me.frm.doc.plc_conversion_rate,
295 company: me.frm.doc.company,
296 order_type: me.frm.doc.order_type,
297 is_pos: cint(me.frm.doc.is_pos),
298 is_subcontracted: me.frm.doc.is_subcontracted,
Nabin Haita1bf43b2015-03-17 10:50:47 +0530299 transaction_date: me.frm.doc.transaction_date || me.frm.doc.posting_date,
Nabin Hait444f9562014-06-20 15:59:49 +0530300 ignore_pricing_rule: me.frm.doc.ignore_pricing_rule,
Anand Doshiafe85bd2016-01-21 21:04:16 +0530301 doctype: me.frm.doc.doctype,
302 name: me.frm.doc.name,
Neil Trini Lasrado6e343e22016-03-09 17:02:59 +0530303 project: item.project || me.frm.doc.project,
mbauskarba412422017-04-19 12:35:51 +0530304 qty: item.qty || 1,
Rohit Waghchauredc981dc2017-04-03 14:17:08 +0530305 stock_qty: item.stock_qty,
306 conversion_factor: item.conversion_factor
Nabin Hait139dc7b2014-02-12 14:53:18 +0530307 }
308 },
Anand Doshi13945092014-09-21 19:45:49 +0530309
Nabin Hait139dc7b2014-02-12 14:53:18 +0530310 callback: function(r) {
311 if(!r.exc) {
312 me.frm.script_manager.trigger("price_list_rate", cdt, cdn);
mbauskar287fe812017-04-10 19:15:57 +0530313 me.toggle_conversion_factor(item);
Nabin Hait139dc7b2014-02-12 14:53:18 +0530314 }
315 }
316 });
317 }
318 }
Rushabh Mehtaff938022014-04-15 18:40:00 +0530319 },
Akhilesh Darjeefcd70d02013-10-18 14:24:21 +0530320
321 serial_no: function(doc, cdt, cdn) {
322 var me = this;
Rushabh Mehta66d52b52014-03-27 14:17:33 +0530323 var item = frappe.get_doc(cdt, cdn);
Akhilesh Darjeefcd70d02013-10-18 14:24:21 +0530324
325 if (item.serial_no) {
326 if (!item.item_code) {
Rushabh Mehtab66edd12017-03-30 21:21:56 +0530327 this.frm.trigger("item_code", cdt, cdn);
Akhilesh Darjeefcd70d02013-10-18 14:24:21 +0530328 }
329 else {
330 var sr_no = [];
331
332 // Replacing all occurences of comma with carriage return
333 var serial_nos = item.serial_no.trim().replace(/,/g, '\n');
334
335 serial_nos = serial_nos.trim().split('\n');
Rushabh Mehtaff938022014-04-15 18:40:00 +0530336
Akhilesh Darjeefcd70d02013-10-18 14:24:21 +0530337 // Trim each string and push unique string to new list
338 for (var x=0; x<=serial_nos.length - 1; x++) {
339 if (serial_nos[x].trim() != "" && sr_no.indexOf(serial_nos[x].trim()) == -1) {
340 sr_no.push(serial_nos[x].trim());
341 }
342 }
343
344 // Add the new list to the serial no. field in grid with each in new line
345 item.serial_no = "";
346 for (var x=0; x<=sr_no.length - 1; x++)
347 item.serial_no += sr_no[x] + '\n';
348
349 refresh_field("serial_no", item.name, item.parentfield);
Nabin Haitb7c0c552015-08-04 12:18:12 +0530350 if(!doc.is_return) {
Rushabh Mehta6b537922017-03-14 16:59:11 +0530351 frappe.model.set_value(item.doctype, item.name,
Nabin Haite68f32c2017-03-03 15:00:41 +0530352 "qty", sr_no.length / item.conversion_factor);
353 frappe.model.set_value(item.doctype, item.name, "stock_qty", sr_no.length);
Nabin Haitb7c0c552015-08-04 12:18:12 +0530354 }
Akhilesh Darjeefcd70d02013-10-18 14:24:21 +0530355 }
356 }
357 },
Rushabh Mehtaff938022014-04-15 18:40:00 +0530358
Anand Doshi923d41d2013-05-28 17:23:36 +0530359 validate: function() {
Anand Doshi652bc072014-04-16 15:21:46 +0530360 this.calculate_taxes_and_totals(false);
Anand Doshi923d41d2013-05-28 17:23:36 +0530361 },
Rushabh Mehtaff938022014-04-15 18:40:00 +0530362
Anand Doshi3543f302013-05-24 19:25:01 +0530363 company: function() {
Neil Trini Lasradoeaae58f2014-10-09 15:00:10 +0530364 var me = this;
Nabin Haita731ad42016-02-04 17:21:28 +0530365 var set_pricing = function() {
Neil Trini Lasradoeaae58f2014-10-09 15:00:10 +0530366 if(me.frm.doc.company && me.frm.fields_dict.currency) {
367 var company_currency = me.get_company_currency();
Rushabh Mehta5495bc52015-05-19 12:00:34 +0530368 var company_doc = frappe.get_doc(":Company", me.frm.doc.company);
Neil Trini Lasradoeaae58f2014-10-09 15:00:10 +0530369 if (!me.frm.doc.currency) {
370 me.frm.set_value("currency", company_currency);
371 }
Rushabh Mehtaff938022014-04-15 18:40:00 +0530372
Neil Trini Lasradoeaae58f2014-10-09 15:00:10 +0530373 if (me.frm.doc.currency == company_currency) {
374 me.frm.set_value("conversion_rate", 1.0);
375 }
376 if (me.frm.doc.price_list_currency == company_currency) {
377 me.frm.set_value('plc_conversion_rate', 1.0);
378 }
Rushabh Mehta5495bc52015-05-19 12:00:34 +0530379 if (company_doc.default_letter_head) {
Rushabh Mehtac1857342015-05-27 12:29:57 +0530380 if(me.frm.fields_dict.letter_head) {
381 me.frm.set_value("letter_head", company_doc.default_letter_head);
382 }
Rushabh Mehta5495bc52015-05-19 12:00:34 +0530383 }
Rohit Waghchaure585448b2016-12-30 15:41:55 +0530384 if (company_doc.default_terms && me.frm.doc.doctype != "Purchase Invoice" && frappe.meta.has_field(me.frm.doc.doctype, "tc_name")) {
Rushabh Mehta5495bc52015-05-19 12:00:34 +0530385 me.frm.set_value("tc_name", company_doc.default_terms);
386 }
Akhilesh Darjee1797cfe2013-10-11 13:34:10 +0530387
Neil Trini Lasradoeaae58f2014-10-09 15:00:10 +0530388 me.frm.script_manager.trigger("currency");
389 me.apply_pricing_rule();
Nabin Haitdd38a262014-12-26 13:15:21 +0530390 }
Anand Doshi3543f302013-05-24 19:25:01 +0530391 }
Rushabh Mehta8d1c7a22016-02-10 13:08:42 +0530392
Nabin Haita731ad42016-02-04 17:21:28 +0530393 var set_party_account = function(set_pricing) {
394 if (in_list(["Sales Invoice", "Purchase Invoice"], me.frm.doc.doctype)) {
395 if(me.frm.doc.doctype=="Sales Invoice") {
396 var party_type = "Customer";
397 var party_account_field = 'debit_to';
398 } else {
399 var party_type = "Supplier";
400 var party_account_field = 'credit_to';
401 }
Anand Doshi39a28912016-02-15 11:42:18 +0530402
Nabin Haitef864402016-02-10 14:47:25 +0530403 var party = me.frm.doc[frappe.model.scrub(party_type)];
404 if(party) {
Rushabh Mehta8d1c7a22016-02-10 13:08:42 +0530405 return frappe.call({
406 method: "erpnext.accounts.party.get_party_account",
407 args: {
408 company: me.frm.doc.company,
409 party_type: party_type,
Nabin Haitef864402016-02-10 14:47:25 +0530410 party: party
Rushabh Mehta8d1c7a22016-02-10 13:08:42 +0530411 },
412 callback: function(r) {
413 if(!r.exc && r.message) {
414 me.frm.set_value(party_account_field, r.message);
415 set_pricing();
416 }
Nabin Haita731ad42016-02-04 17:21:28 +0530417 }
Rushabh Mehta8d1c7a22016-02-10 13:08:42 +0530418 });
Nabin Haitef864402016-02-10 14:47:25 +0530419 } else {
420 set_pricing();
Rushabh Mehta8d1c7a22016-02-10 13:08:42 +0530421 }
Nabin Haita731ad42016-02-04 17:21:28 +0530422 } else {
423 set_pricing();
424 }
Rushabh Mehta8d1c7a22016-02-10 13:08:42 +0530425
Nabin Haita731ad42016-02-04 17:21:28 +0530426 }
Nabin Haitdd38a262014-12-26 13:15:21 +0530427
Neil Trini Lasradoeaae58f2014-10-09 15:00:10 +0530428 if (this.frm.doc.posting_date) var date = this.frm.doc.posting_date;
429 else var date = this.frm.doc.transaction_date;
Rushabh Mehta5dfe20c2016-04-26 12:59:08 +0530430
431 if (frappe.meta.get_docfield(this.frm.doctype, "shipping_address") &&
Rohit Waghchaureb2e7a1f2016-04-11 12:10:20 +0530432 in_list(['Purchase Order', 'Purchase Receipt', 'Purchase Invoice'], this.frm.doctype)){
433 erpnext.utils.get_shipping_address(this.frm, function(){
434 set_party_account(set_pricing);
435 })
436 }else{
437 set_party_account(set_pricing);
438 }
Rushabh Mehta45ca8a42015-04-28 16:02:09 +0530439
440 if(this.frm.doc.company) {
441 erpnext.last_selected_company = this.frm.doc.company;
442 }
Neil Trini Lasradoeaae58f2014-10-09 15:00:10 +0530443 },
444
445 transaction_date: function() {
Anand Doshi87da6622015-10-19 14:59:32 +0530446 if (this.frm.doc.transaction_date) {
447 this.frm.transaction_date = this.frm.doc.transaction_date;
Nabin Hait288a18e2016-12-08 15:36:23 +0530448 frappe.ui.form.trigger(this.frm.doc.doctype, "currency");
Anand Doshi87da6622015-10-19 14:59:32 +0530449 }
Neil Trini Lasrado78fa6952014-10-03 17:43:02 +0530450 },
451
452 posting_date: function() {
Nabin Hait40e92b62015-07-09 17:12:23 +0530453 var me = this;
454 if (this.frm.doc.posting_date) {
Anand Doshi87da6622015-10-19 14:59:32 +0530455 this.frm.posting_date = this.frm.doc.posting_date;
456
Rushabh Mehtaa208c562015-08-03 13:18:54 +0530457 if ((this.frm.doc.doctype == "Sales Invoice" && this.frm.doc.customer) ||
Nabin Hait40e92b62015-07-09 17:12:23 +0530458 (this.frm.doc.doctype == "Purchase Invoice" && this.frm.doc.supplier)) {
459 return frappe.call({
460 method: "erpnext.accounts.party.get_due_date",
461 args: {
462 "posting_date": me.frm.doc.posting_date,
463 "party_type": me.frm.doc.doctype == "Sales Invoice" ? "Customer" : "Supplier",
464 "party": me.frm.doc.doctype == "Sales Invoice" ? me.frm.doc.customer : me.frm.doc.supplier,
465 "company": me.frm.doc.company
Rushabh Mehtaa208c562015-08-03 13:18:54 +0530466 },
Nabin Hait40e92b62015-07-09 17:12:23 +0530467 callback: function(r, rt) {
468 if(r.message) {
469 me.frm.set_value("due_date", r.message);
Nabin Hait87d70272016-12-08 14:43:11 +0530470 frappe.ui.form.trigger(me.frm.doc.doctype, "currency");
Nabin Hait40e92b62015-07-09 17:12:23 +0530471 }
Nabin Hait40e92b62015-07-09 17:12:23 +0530472 }
473 })
Nabin Hait87d70272016-12-08 14:43:11 +0530474 } else {
475 frappe.ui.form.trigger(me.frm.doc.doctype, "currency");
Nabin Hait40e92b62015-07-09 17:12:23 +0530476 }
477 }
Anand Doshi3543f302013-05-24 19:25:01 +0530478 },
Rushabh Mehtaff938022014-04-15 18:40:00 +0530479
Anand Doshi3543f302013-05-24 19:25:01 +0530480 get_company_currency: function() {
481 return erpnext.get_currency(this.frm.doc.company);
482 },
Rushabh Mehtaa208c562015-08-03 13:18:54 +0530483
Neil Trini Lasrado09a66c42015-07-07 16:41:37 +0530484 contact_person: function() {
485 erpnext.utils.get_contact_details(this.frm);
486 },
Rushabh Mehtaff938022014-04-15 18:40:00 +0530487
Anand Doshi3543f302013-05-24 19:25:01 +0530488 currency: function() {
Chude Osiegbu256ec172016-09-19 03:53:37 +0100489 /* manqala 19/09/2016: let the translation date be whichever of the transaction_date or posting_date is available */
Nabin Hait288a18e2016-12-08 15:36:23 +0530490 var transaction_date = this.frm.doc.transaction_date || this.frm.doc.posting_date;
Chude Osiegbu256ec172016-09-19 03:53:37 +0100491 /* end manqala */
Rushabh Mehta6b537922017-03-14 16:59:11 +0530492
Anand Doshi61a2f682013-06-21 17:55:31 +0530493 var me = this;
494 this.set_dynamic_labels();
Akhilesh Darjee78378272013-10-11 19:06:30 +0530495
Anand Doshi61a2f682013-06-21 17:55:31 +0530496 var company_currency = this.get_company_currency();
Nabin Hait69cdf592015-05-02 18:46:10 +0530497 // Added `ignore_pricing_rule` to determine if document is loading after mapping from another doc
Rushabh Mehta76b13412016-07-18 14:30:18 +0530498 if(this.frm.doc.currency && this.frm.doc.currency !== company_currency
Nabin Hait39505072016-07-07 11:11:32 +0530499 && !this.frm.doc.ignore_pricing_rule) {
Nabin Hait288a18e2016-12-08 15:36:23 +0530500 this.get_exchange_rate(transaction_date, this.frm.doc.currency, company_currency,
Anand Doshi61a2f682013-06-21 17:55:31 +0530501 function(exchange_rate) {
Akhilesh Darjee78378272013-10-11 19:06:30 +0530502 me.frm.set_value("conversion_rate", exchange_rate);
Anand Doshi61a2f682013-06-21 17:55:31 +0530503 });
504 } else {
Rushabh Mehtaff938022014-04-15 18:40:00 +0530505 this.conversion_rate();
Anand Doshi61a2f682013-06-21 17:55:31 +0530506 }
507 },
Rushabh Mehtaff938022014-04-15 18:40:00 +0530508
Anand Doshi61a2f682013-06-21 17:55:31 +0530509 conversion_rate: function() {
Anand Doshi535d8332013-07-19 13:51:07 +0530510 if(this.frm.doc.currency === this.get_company_currency()) {
511 this.frm.set_value("conversion_rate", 1.0);
Akhilesh Darjeeacf65a72013-10-17 13:04:26 +0530512 }
513 if(this.frm.doc.currency === this.frm.doc.price_list_currency &&
Anand Doshi61a2f682013-06-21 17:55:31 +0530514 this.frm.doc.plc_conversion_rate !== this.frm.doc.conversion_rate) {
515 this.frm.set_value("plc_conversion_rate", this.frm.doc.conversion_rate);
516 }
Rushabh Mehta4a3c8052015-05-19 11:10:12 +0530517
Nabin Haita3dd72a2014-05-28 12:49:20 +0530518 if(flt(this.frm.doc.conversion_rate)>0.0) {
Nabin Hait444f9562014-06-20 15:59:49 +0530519 if(this.frm.doc.ignore_pricing_rule) {
520 this.calculate_taxes_and_totals();
Anand Doshi51f722d2014-07-04 15:44:26 +0530521 } else if (!this.in_apply_price_list){
522 this.apply_price_list();
Nabin Hait444f9562014-06-20 15:59:49 +0530523 }
524
Nabin Haita3dd72a2014-05-28 12:49:20 +0530525 }
Anand Doshi3543f302013-05-24 19:25:01 +0530526 },
Rushabh Mehtaff938022014-04-15 18:40:00 +0530527
Nabin Hait288a18e2016-12-08 15:36:23 +0530528 get_exchange_rate: function(transaction_date, from_currency, to_currency, callback) {
Nabin Hait17179ee2017-05-06 13:23:12 +0530529 if (!transaction_date || !from_currency || !to_currency) return;
Nabin Haitbdfb0702015-10-28 15:38:08 +0530530 return frappe.call({
Rushabh Mehta66fa1ff2015-05-07 12:25:33 +0530531 method: "erpnext.setup.utils.get_exchange_rate",
532 args: {
Nabin Hait288a18e2016-12-08 15:36:23 +0530533 transaction_date: transaction_date,
Rushabh Mehta66fa1ff2015-05-07 12:25:33 +0530534 from_currency: from_currency,
535 to_currency: to_currency
536 },
537 callback: function(r) {
538 callback(flt(r.message));
539 }
Anand Doshi61a2f682013-06-21 17:55:31 +0530540 });
541 },
Rushabh Mehtaff938022014-04-15 18:40:00 +0530542
Anand Doshi3543f302013-05-24 19:25:01 +0530543 price_list_currency: function() {
Akhilesh Darjeedb59ffb2013-09-11 13:05:24 +0530544 var me=this;
Anand Doshi3543f302013-05-24 19:25:01 +0530545 this.set_dynamic_labels();
Nabin Haitec361ea2015-05-11 18:14:45 +0530546
547 var company_currency = this.get_company_currency();
548 // Added `ignore_pricing_rule` to determine if document is loading after mapping from another doc
549 if(this.frm.doc.price_list_currency !== company_currency && !this.frm.doc.ignore_pricing_rule) {
Chude Osiegbufbf27b52016-09-07 03:06:08 +0100550 this.get_exchange_rate(this.frm.doc.posting_date, this.frm.doc.price_list_currency, company_currency,
Nabin Haitec361ea2015-05-11 18:14:45 +0530551 function(exchange_rate) {
552 me.frm.set_value("plc_conversion_rate", exchange_rate);
553 });
554 } else {
555 this.plc_conversion_rate();
556 }
Anand Doshi3543f302013-05-24 19:25:01 +0530557 },
Rushabh Mehtaff938022014-04-15 18:40:00 +0530558
Anand Doshi3543f302013-05-24 19:25:01 +0530559 plc_conversion_rate: function() {
Anand Doshi61a2f682013-06-21 17:55:31 +0530560 if(this.frm.doc.price_list_currency === this.get_company_currency()) {
561 this.frm.set_value("plc_conversion_rate", 1.0);
Rushabh Mehtaa208c562015-08-03 13:18:54 +0530562 } else if(this.frm.doc.price_list_currency === this.frm.doc.currency
Nabin Hait1d218422015-07-17 15:19:02 +0530563 && this.frm.doc.plc_conversion_rate && cint(this.frm.doc.plc_conversion_rate) != 1 &&
Nabin Haitec361ea2015-05-11 18:14:45 +0530564 cint(this.frm.doc.plc_conversion_rate) != cint(this.frm.doc.conversion_rate)) {
565 this.frm.set_value("conversion_rate", this.frm.doc.plc_conversion_rate);
Akhilesh Darjee564c6212013-10-17 11:31:11 +0530566 }
Rushabh Mehta4a3c8052015-05-19 11:10:12 +0530567
Nabin Haitec361ea2015-05-11 18:14:45 +0530568 if(!this.in_apply_price_list) {
569 this.apply_price_list();
Anand Doshi61a2f682013-06-21 17:55:31 +0530570 }
Anand Doshi3543f302013-05-24 19:25:01 +0530571 },
Rushabh Mehtaff938022014-04-15 18:40:00 +0530572
Kanchan Chauhan5a980ac2017-02-10 14:27:11 +0530573 uom: function(doc, cdt, cdn) {
574 var me = this;
575 var item = frappe.get_doc(cdt, cdn);
576 if(item.item_code && item.uom) {
577 return this.frm.call({
578 method: "erpnext.stock.get_item_details.get_conversion_factor",
579 child: item,
580 args: {
581 item_code: item.item_code,
582 uom: item.uom
583 },
584 callback: function(r) {
585 if(!r.exc) {
586 me.conversion_factor(me.frm.doc, cdt, cdn);
587 }
588 }
589 });
590 }
591 },
592
Nabin Hait3257aee2017-05-06 12:47:14 +0530593 conversion_factor: function(doc, cdt, cdn, dont_fetch_price_list_rate) {
Kanchan Chauhan5a980ac2017-02-10 14:27:11 +0530594 if(frappe.meta.get_docfield(cdt, "stock_qty", cdn)) {
595 var item = frappe.get_doc(cdt, cdn);
596 frappe.model.round_floats_in(item, ["qty", "conversion_factor"]);
597 item.stock_qty = flt(item.qty * item.conversion_factor, precision("stock_qty", item));
598 refresh_field("stock_qty", item.name, item.parentfield);
mbauskar287fe812017-04-10 19:15:57 +0530599 this.toggle_conversion_factor(item);
Nabin Hait3257aee2017-05-06 12:47:14 +0530600 if(!dont_fetch_price_list_rate) this.apply_price_list(item, true);
Kanchan Chauhan5a980ac2017-02-10 14:27:11 +0530601 }
602 },
603
mbauskar287fe812017-04-10 19:15:57 +0530604 toggle_conversion_factor: function(item) {
605 // toggle read only property for conversion factor field if the uom and stock uom are same
606 this.frm.fields_dict.items.grid.toggle_enable("conversion_factor",
607 (item.uom != item.stock_uom)? true: false)
608 },
609
Anand Doshi3543f302013-05-24 19:25:01 +0530610 qty: function(doc, cdt, cdn) {
Nabin Hait3257aee2017-05-06 12:47:14 +0530611 this.conversion_factor(doc, cdt, cdn, true);
612 this.apply_pricing_rule(frappe.get_doc(cdt, cdn), true);
Anand Doshi3543f302013-05-24 19:25:01 +0530613 },
Rushabh Mehtaff938022014-04-15 18:40:00 +0530614
Anand Doshi61a2f682013-06-21 17:55:31 +0530615 set_dynamic_labels: function() {
616 // What TODO? should we make price list system non-mandatory?
617 this.frm.toggle_reqd("plc_conversion_rate",
618 !!(this.frm.doc.price_list_name && this.frm.doc.price_list_currency));
Rushabh Mehtaff938022014-04-15 18:40:00 +0530619
Rushabh Mehtabb8c6de2016-03-29 17:52:22 +0530620 if(this.frm.doc_currency!==this.frm.doc.currency) {
621 // reset names only when the currency is different
622
623 var company_currency = this.get_company_currency();
624 this.change_form_labels(company_currency);
625 this.change_grid_labels(company_currency);
626 this.frm.refresh_fields();
627 this.frm.doc_currency = this.frm.doc.currency;
628 }
Anand Doshi61a2f682013-06-21 17:55:31 +0530629 },
Rushabh Mehtaff938022014-04-15 18:40:00 +0530630
Nabin Hait613d0812015-02-23 11:58:15 +0530631 change_form_labels: function(company_currency) {
632 var me = this;
Nabin Hait613d0812015-02-23 11:58:15 +0530633
Rohit Waghchaureb1b32882016-10-21 19:31:54 +0530634 this.frm.set_currency_labels(["base_total", "base_net_total", "base_total_taxes_and_charges",
Nabin Hait613d0812015-02-23 11:58:15 +0530635 "base_discount_amount", "base_grand_total", "base_rounded_total", "base_in_words",
636 "base_taxes_and_charges_added", "base_taxes_and_charges_deducted", "total_amount_to_pay",
Rushabh Mehta6b537922017-03-14 16:59:11 +0530637 "base_paid_amount", "base_write_off_amount", "base_change_amount", "base_operating_cost",
Rohit Waghchaureb1b32882016-10-21 19:31:54 +0530638 "base_raw_material_cost", "base_total_cost", "base_scrap_material_cost"
Nabin Hait4ffd7f32015-08-27 12:28:36 +0530639 ], company_currency);
Nabin Hait613d0812015-02-23 11:58:15 +0530640
Rohit Waghchaureb1b32882016-10-21 19:31:54 +0530641 this.frm.set_currency_labels(["total", "net_total", "total_taxes_and_charges", "discount_amount",
Nabin Hait613d0812015-02-23 11:58:15 +0530642 "grand_total", "taxes_and_charges_added", "taxes_and_charges_deducted",
Rohit Waghchaureb1b32882016-10-21 19:31:54 +0530643 "rounded_total", "in_words", "paid_amount", "write_off_amount", "operating_cost", "scrap_material_cost",
644 "raw_material_cost", "total_cost"], this.frm.doc.currency);
Anand Doshi87da6622015-10-19 14:59:32 +0530645
Rohit Waghchaureb1b32882016-10-21 19:31:54 +0530646 this.frm.set_currency_labels(["outstanding_amount", "total_advance"], this.frm.doc.party_account_currency);
Nabin Hait613d0812015-02-23 11:58:15 +0530647
648 cur_frm.set_df_property("conversion_rate", "description", "1 " + this.frm.doc.currency
649 + " = [?] " + company_currency)
650
651 if(this.frm.doc.price_list_currency && this.frm.doc.price_list_currency!=company_currency) {
652 cur_frm.set_df_property("plc_conversion_rate", "description", "1 " + this.frm.doc.price_list_currency
653 + " = [?] " + company_currency)
654 }
655
656 // toggle fields
657 this.frm.toggle_display(["conversion_rate", "base_total", "base_net_total", "base_total_taxes_and_charges",
658 "base_taxes_and_charges_added", "base_taxes_and_charges_deducted",
Nabin Hait4ffd7f32015-08-27 12:28:36 +0530659 "base_grand_total", "base_rounded_total", "base_in_words", "base_discount_amount",
Rushabh Mehta6b537922017-03-14 16:59:11 +0530660 "base_paid_amount", "base_write_off_amount", "base_operating_cost",
Rohit Waghchaureb1b32882016-10-21 19:31:54 +0530661 "base_raw_material_cost", "base_total_cost", "base_scrap_material_cost"],
Nabin Hait613d0812015-02-23 11:58:15 +0530662 this.frm.doc.currency != company_currency);
663
664 this.frm.toggle_display(["plc_conversion_rate", "price_list_currency"],
665 this.frm.doc.price_list_currency != company_currency);
666
Nabin Hait903c42a2015-02-24 15:24:49 +0530667 var show =cint(cur_frm.doc.discount_amount) ||
668 ((cur_frm.doc.taxes || []).filter(function(d) {return d.included_in_print_rate===1}).length);
669
670 if(frappe.meta.get_docfield(cur_frm.doctype, "net_total"))
671 cur_frm.toggle_display("net_total", show);
672
673 if(frappe.meta.get_docfield(cur_frm.doctype, "base_net_total"))
674 cur_frm.toggle_display("base_net_total", (show && (me.frm.doc.currency != company_currency)));
675
Nabin Hait613d0812015-02-23 11:58:15 +0530676 },
677
678 change_grid_labels: function(company_currency) {
679 var me = this;
Nabin Hait613d0812015-02-23 11:58:15 +0530680
Rohit Waghchaureb1b32882016-10-21 19:31:54 +0530681 this.frm.set_currency_labels(["base_rate", "base_net_rate", "base_price_list_rate", "base_amount", "base_net_amount"],
682 company_currency, "items");
683
684 this.frm.set_currency_labels(["rate", "net_rate", "price_list_rate", "amount", "net_amount"],
685 this.frm.doc.currency, "items");
686
687 if(this.frm.fields_dict["operations"]) {
688 this.frm.set_currency_labels(["operating_cost", "hour_rate"], this.frm.doc.currency, "operations");
689 this.frm.set_currency_labels(["base_operating_cost", "base_hour_rate"], company_currency, "operations");
690
691 var item_grid = this.frm.fields_dict["operations"].grid;
692 $.each(["base_operating_cost", "base_hour_rate"], function(i, fname) {
693 if(frappe.meta.get_docfield(item_grid.doctype, fname))
694 item_grid.set_column_disp(fname, me.frm.doc.currency != company_currency);
Nabin Hait613d0812015-02-23 11:58:15 +0530695 });
696 }
697
Rohit Waghchaureb1b32882016-10-21 19:31:54 +0530698 if(this.frm.fields_dict["scrap_items"]) {
699 this.frm.set_currency_labels(["rate", "amount"], this.frm.doc.currency, "scrap_items");
700 this.frm.set_currency_labels(["base_rate", "base_amount"], company_currency, "scrap_items");
Nabin Hait613d0812015-02-23 11:58:15 +0530701
Rohit Waghchaureb1b32882016-10-21 19:31:54 +0530702 var item_grid = this.frm.fields_dict["scrap_items"].grid;
703 $.each(["base_rate", "base_amount"], function(i, fname) {
704 if(frappe.meta.get_docfield(item_grid.doctype, fname))
705 item_grid.set_column_disp(fname, me.frm.doc.currency != company_currency);
706 });
707 }
Nabin Hait613d0812015-02-23 11:58:15 +0530708
709 if(this.frm.fields_dict["taxes"]) {
Rohit Waghchaureb1b32882016-10-21 19:31:54 +0530710 this.frm.set_currency_labels(["tax_amount", "total", "tax_amount_after_discount"], this.frm.doc.currency, "taxes");
Nabin Hait613d0812015-02-23 11:58:15 +0530711
Rohit Waghchaureb1b32882016-10-21 19:31:54 +0530712 this.frm.set_currency_labels(["base_tax_amount", "base_total", "base_tax_amount_after_discount"], company_currency, "taxes");
Nabin Hait613d0812015-02-23 11:58:15 +0530713 }
714
715 if(this.frm.fields_dict["advances"]) {
Rohit Waghchaureb1b32882016-10-21 19:31:54 +0530716 this.frm.set_currency_labels(["advance_amount", "allocated_amount"],
Nabin Haitaa015902015-10-16 13:08:33 +0530717 this.frm.doc.party_account_currency, "advances");
Nabin Hait613d0812015-02-23 11:58:15 +0530718 }
719
720 // toggle columns
721 var item_grid = this.frm.fields_dict["items"].grid;
722 $.each(["base_rate", "base_price_list_rate", "base_amount"], function(i, fname) {
723 if(frappe.meta.get_docfield(item_grid.doctype, fname))
724 item_grid.set_column_disp(fname, me.frm.doc.currency != company_currency);
725 });
726
727 var show = (cint(cur_frm.doc.discount_amount)) ||
728 ((cur_frm.doc.taxes || []).filter(function(d) {return d.included_in_print_rate===1}).length);
729
730 $.each(["net_rate", "net_amount"], function(i, fname) {
731 if(frappe.meta.get_docfield(item_grid.doctype, fname))
732 item_grid.set_column_disp(fname, show);
733 });
734
735 $.each(["base_net_rate", "base_net_amount"], function(i, fname) {
736 if(frappe.meta.get_docfield(item_grid.doctype, fname))
737 item_grid.set_column_disp(fname, (show && (me.frm.doc.currency != company_currency)));
738 });
739
740 // set labels
741 var $wrapper = $(this.frm.wrapper);
Nabin Hait613d0812015-02-23 11:58:15 +0530742 },
743
Anand Doshi923d41d2013-05-28 17:23:36 +0530744 recalculate: function() {
745 this.calculate_taxes_and_totals();
746 },
Rushabh Mehtaff938022014-04-15 18:40:00 +0530747
Anand Doshi923d41d2013-05-28 17:23:36 +0530748 recalculate_values: function() {
749 this.calculate_taxes_and_totals();
750 },
Rushabh Mehtaff938022014-04-15 18:40:00 +0530751
Anand Doshid0b00722013-05-28 18:54:48 +0530752 calculate_charges: function() {
753 this.calculate_taxes_and_totals();
754 },
Rushabh Mehtaff938022014-04-15 18:40:00 +0530755
Nabin Hait444f9562014-06-20 15:59:49 +0530756 ignore_pricing_rule: function() {
Nabin Hait8c9fb762017-04-28 14:23:03 +0530757 if(this.frm.doc.ignore_pricing_rule) {
758 var me = this;
759 var item_list = [];
760
761 $.each(this.frm.doc["items"] || [], function(i, d) {
762 if (d.item_code) {
763 item_list.push({
764 "doctype": d.doctype,
765 "name": d.name,
766 "pricing_rule": d.pricing_rule
767 })
768 }
769 });
770 return this.frm.call({
771 method: "erpnext.accounts.doctype.pricing_rule.pricing_rule.remove_pricing_rules",
772 args: { item_list: item_list },
773 callback: function(r) {
774 if (!r.exc && r.message) {
775 me._set_values_for_item_list(r.message);
776 me.calculate_taxes_and_totals();
777 if(me.frm.doc.apply_discount_on) me.frm.trigger("apply_discount_on")
778 }
779 }
780 });
781 } else {
782 this.apply_pricing_rule();
783 }
Nabin Hait444f9562014-06-20 15:59:49 +0530784 },
785
786 apply_pricing_rule: function(item, calculate_taxes_and_totals) {
Nabin Haita3dd72a2014-05-28 12:49:20 +0530787 var me = this;
Anand Doshi70f57eb2015-11-27 14:37:40 +0530788 var args = this._get_args(item);
Rushabh Mehtab46069d2016-01-15 16:59:26 +0530789 if (!(args.items && args.items.length)) {
Anand Doshi70f57eb2015-11-27 14:37:40 +0530790 if(calculate_taxes_and_totals) me.calculate_taxes_and_totals();
791 return;
792 }
Anand Doshidffec8f2014-07-01 17:45:15 +0530793 return this.frm.call({
794 method: "erpnext.accounts.doctype.pricing_rule.pricing_rule.apply_pricing_rule",
Anand Doshi70f57eb2015-11-27 14:37:40 +0530795 args: { args: args },
Anand Doshidffec8f2014-07-01 17:45:15 +0530796 callback: function(r) {
Anand Doshif214bfc2014-07-16 17:52:08 +0530797 if (!r.exc && r.message) {
Anand Doshidffec8f2014-07-01 17:45:15 +0530798 me._set_values_for_item_list(r.message);
Saurabh2d7af632016-02-26 11:09:20 +0530799 if(item) me.set_gross_profit(item);
Anand Doshidffec8f2014-07-01 17:45:15 +0530800 if(calculate_taxes_and_totals) me.calculate_taxes_and_totals();
Rohit Waghchauredeaee7c2016-09-22 14:02:53 +0530801 if(me.frm.doc.apply_discount_on) me.frm.trigger("apply_discount_on")
Anand Doshidffec8f2014-07-01 17:45:15 +0530802 }
803 }
804 });
805 },
806
807 _get_args: function(item) {
808 var me = this;
809 return {
Rushabh Mehtab46069d2016-01-15 16:59:26 +0530810 "items": this._get_item_list(item),
Nabin Hait444f9562014-06-20 15:59:49 +0530811 "customer": me.frm.doc.customer,
812 "customer_group": me.frm.doc.customer_group,
813 "territory": me.frm.doc.territory,
814 "supplier": me.frm.doc.supplier,
815 "supplier_type": me.frm.doc.supplier_type,
816 "currency": me.frm.doc.currency,
817 "conversion_rate": me.frm.doc.conversion_rate,
818 "price_list": me.frm.doc.selling_price_list || me.frm.doc.buying_price_list,
Nabin Haitdd82bf22015-05-11 16:49:17 +0530819 "price_list_currency": me.frm.doc.price_list_currency,
Nabin Hait444f9562014-06-20 15:59:49 +0530820 "plc_conversion_rate": me.frm.doc.plc_conversion_rate,
821 "company": me.frm.doc.company,
822 "transaction_date": me.frm.doc.transaction_date || me.frm.doc.posting_date,
823 "campaign": me.frm.doc.campaign,
824 "sales_partner": me.frm.doc.sales_partner,
825 "ignore_pricing_rule": me.frm.doc.ignore_pricing_rule,
Rushabh Mehtab46069d2016-01-15 16:59:26 +0530826 "doctype": me.frm.doc.doctype,
Rohit Waghchaure5ecbaa42017-03-28 12:09:07 +0530827 "name": me.frm.doc.name,
Rohit Waghchauredc981dc2017-04-03 14:17:08 +0530828 "is_return": cint(me.frm.doc.is_return),
829 "update_stock": in_list(['Sales Invoice', 'Purchase Invoice'], me.frm.doc.doctype) ? cint(me.frm.doc.update_stock) : 0,
mbauskar287fe812017-04-10 19:15:57 +0530830 "conversion_factor": me.frm.doc.conversion_factor
Nabin Hait444f9562014-06-20 15:59:49 +0530831 };
Nabin Hait444f9562014-06-20 15:59:49 +0530832 },
833
834 _get_item_list: function(item) {
835 var item_list = [];
836 var append_item = function(d) {
Anand Doshi39edcbc2014-07-28 16:00:19 +0530837 if (d.item_code) {
838 item_list.push({
839 "doctype": d.doctype,
840 "name": d.name,
841 "item_code": d.item_code,
842 "item_group": d.item_group,
843 "brand": d.brand,
Anand Doshi39a28912016-02-15 11:42:18 +0530844 "qty": d.qty,
845 "parenttype": d.parenttype,
Rohit Waghchaure43b50802016-10-24 14:04:46 +0530846 "parent": d.parent,
Kanchan Chauhanaf0d6372016-11-13 21:19:09 +0530847 "pricing_rule": d.pricing_rule,
848 "warehouse": d.warehouse,
Rohit Waghchauredc981dc2017-04-03 14:17:08 +0530849 "serial_no": d.serial_no,
mbauskar287fe812017-04-10 19:15:57 +0530850 "conversion_factor": d.conversion_factor || 1.0
Anand Doshi39edcbc2014-07-28 16:00:19 +0530851 });
mbauskarc79415e2016-01-18 16:32:24 +0530852
853 // if doctype is Quotation Item / Sales Order Iten then add Margin Type and rate in item_list
mbauskara52472c2016-03-05 15:10:25 +0530854 if (in_list(["Quotation Item", "Sales Order Item", "Delivery Note Item", "Sales Invoice Item"]), d.doctype){
855 item_list[0]["margin_type"] = d.margin_type
856 item_list[0]["margin_rate_or_amount"] = d.margin_rate_or_amount
Rushabh Mehtabb8c6de2016-03-29 17:52:22 +0530857 }
Anand Doshi39edcbc2014-07-28 16:00:19 +0530858 }
Nabin Hait444f9562014-06-20 15:59:49 +0530859 };
Nabin Haita3dd72a2014-05-28 12:49:20 +0530860
Nabin Hait444f9562014-06-20 15:59:49 +0530861 if (item) {
862 append_item(item);
Nabin Haitc1367d92014-05-30 11:43:00 +0530863 } else {
Nabin Hait96339342015-01-21 17:22:11 +0530864 $.each(this.frm.doc["items"] || [], function(i, d) {
Nabin Hait444f9562014-06-20 15:59:49 +0530865 append_item(d);
Nabin Haita3dd72a2014-05-28 12:49:20 +0530866 });
867 }
Nabin Hait444f9562014-06-20 15:59:49 +0530868 return item_list;
Nabin Haita3dd72a2014-05-28 12:49:20 +0530869 },
870
Anand Doshidffec8f2014-07-01 17:45:15 +0530871 _set_values_for_item_list: function(children) {
Nabin Hait49a27292014-12-17 11:21:32 +0530872 var me = this;
Nabin Hait7d8fa802014-12-30 15:35:45 +0530873 var price_list_rate_changed = false;
Anand Doshidea3fb02015-02-05 15:05:58 +0530874 for(var i=0, l=children.length; i<l; i++) {
875 var d = children[i];
Nabin Hait49a27292014-12-17 11:21:32 +0530876 var existing_pricing_rule = frappe.model.get_value(d.doctype, d.name, "pricing_rule");
Anand Doshidea3fb02015-02-05 15:05:58 +0530877 for(var k in d) {
878 var v = d[k];
Anand Doshidffec8f2014-07-01 17:45:15 +0530879 if (["doctype", "name"].indexOf(k)===-1) {
Nabin Hait7d8fa802014-12-30 15:35:45 +0530880 if(k=="price_list_rate") {
881 if(flt(v) != flt(d.price_list_rate)) price_list_rate_changed = true;
882 }
mbauskar287fe812017-04-10 19:15:57 +0530883 frappe.model.set_value(d.doctype, d.name, k, v);
Anand Doshidffec8f2014-07-01 17:45:15 +0530884 }
Anand Doshidea3fb02015-02-05 15:05:58 +0530885 }
886
Nabin Hait49a27292014-12-17 11:21:32 +0530887 // if pricing rule set as blank from an existing value, apply price_list
Nabin Haitcfe3c542014-12-22 10:42:48 +0530888 if(!me.frm.doc.ignore_pricing_rule && existing_pricing_rule && !d.pricing_rule) {
Nabin Hait49a27292014-12-17 11:21:32 +0530889 me.apply_price_list(frappe.get_doc(d.doctype, d.name));
890 }
Anand Doshidea3fb02015-02-05 15:05:58 +0530891 }
Nabin Hait7d8fa802014-12-30 15:35:45 +0530892
Anand Doshidea3fb02015-02-05 15:05:58 +0530893 if(!price_list_rate_changed) me.calculate_taxes_and_totals();
Anand Doshidffec8f2014-07-01 17:45:15 +0530894 },
895
Nabin Hait49a27292014-12-17 11:21:32 +0530896 apply_price_list: function(item) {
Anand Doshidffec8f2014-07-01 17:45:15 +0530897 var me = this;
Rushabh Mehta052bd622015-01-30 16:57:24 +0530898 var args = this._get_args(item);
Rushabh Mehtab46069d2016-01-15 16:59:26 +0530899 if (!((args.items && args.items.length) || args.price_list)) {
Anand Doshi70f57eb2015-11-27 14:37:40 +0530900 return;
901 }
Nabin Hait37b047d2015-02-23 16:01:33 +0530902
Anand Doshidffec8f2014-07-01 17:45:15 +0530903 return this.frm.call({
904 method: "erpnext.stock.get_item_details.apply_price_list",
Rushabh Mehta052bd622015-01-30 16:57:24 +0530905 args: { args: args },
Anand Doshidffec8f2014-07-01 17:45:15 +0530906 callback: function(r) {
907 if (!r.exc) {
Anand Doshi51f722d2014-07-04 15:44:26 +0530908 me.in_apply_price_list = true;
Anand Doshidffec8f2014-07-01 17:45:15 +0530909 me.frm.set_value("price_list_currency", r.message.parent.price_list_currency);
910 me.frm.set_value("plc_conversion_rate", r.message.parent.plc_conversion_rate);
Anand Doshi51f722d2014-07-04 15:44:26 +0530911 me.in_apply_price_list = false;
Nabin Hait37b047d2015-02-23 16:01:33 +0530912
Rushabh Mehtab46069d2016-01-15 16:59:26 +0530913 if(args.items.length) {
Nabin Hait37b047d2015-02-23 16:01:33 +0530914 me._set_values_for_item_list(r.message.children);
915 }
Anand Doshidffec8f2014-07-01 17:45:15 +0530916 }
917 }
918 });
919 },
920
Anand Doshi3543f302013-05-24 19:25:01 +0530921 get_item_wise_taxes_html: function() {
922 var item_tax = {};
923 var tax_accounts = [];
924 var company_currency = this.get_company_currency();
Rushabh Mehtaff938022014-04-15 18:40:00 +0530925
Nabin Hait96339342015-01-21 17:22:11 +0530926 $.each(this.frm.doc["taxes"] || [], function(i, tax) {
Anand Doshi3543f302013-05-24 19:25:01 +0530927 var tax_amount_precision = precision("tax_amount", tax);
Anand Doshi53b73422013-05-31 11:50:01 +0530928 var tax_rate_precision = precision("rate", tax);
Rushabh Mehtaff938022014-04-15 18:40:00 +0530929 $.each(JSON.parse(tax.item_wise_tax_detail || '{}'),
Anand Doshi53b73422013-05-31 11:50:01 +0530930 function(item_code, tax_data) {
Anand Doshi3543f302013-05-24 19:25:01 +0530931 if(!item_tax[item_code]) item_tax[item_code] = {};
Anand Doshi53b73422013-05-31 11:50:01 +0530932 if($.isArray(tax_data)) {
Anand Doshi1e4fb682013-08-23 12:56:33 +0530933 var tax_rate = "";
934 if(tax_data[0] != null) {
935 tax_rate = (tax.charge_type === "Actual") ?
936 format_currency(flt(tax_data[0], tax_amount_precision), company_currency, tax_amount_precision) :
937 (flt(tax_data[0], tax_rate_precision) + "%");
938 }
939 var tax_amount = format_currency(flt(tax_data[1], tax_amount_precision), company_currency,
940 tax_amount_precision);
Rushabh Mehtaff938022014-04-15 18:40:00 +0530941
Anand Doshiaa71b5b2013-08-05 13:00:53 +0530942 item_tax[item_code][tax.name] = [tax_rate, tax_amount];
Anand Doshi53b73422013-05-31 11:50:01 +0530943 } else {
Anand Doshiaa71b5b2013-08-05 13:00:53 +0530944 item_tax[item_code][tax.name] = [flt(tax_data, tax_rate_precision) + "%", ""];
Anand Doshi53b73422013-05-31 11:50:01 +0530945 }
Anand Doshi3543f302013-05-24 19:25:01 +0530946 });
Anand Doshiaa71b5b2013-08-05 13:00:53 +0530947 tax_accounts.push([tax.name, tax.account_head]);
Anand Doshi3543f302013-05-24 19:25:01 +0530948 });
Rushabh Mehtaff938022014-04-15 18:40:00 +0530949
950 var headings = $.map([__("Item Name")].concat($.map(tax_accounts, function(head) { return head[1]; })),
Anand Doshi3543f302013-05-24 19:25:01 +0530951 function(head) { return '<th style="min-width: 100px;">' + (head || "") + "</th>" }).join("\n");
Rushabh Mehtaff938022014-04-15 18:40:00 +0530952
Anand Doshi179e3772013-09-05 16:53:57 +0530953 var distinct_item_names = [];
954 var distinct_items = [];
Nabin Hait96339342015-01-21 17:22:11 +0530955 $.each(this.frm.doc["items"] || [], function(i, item) {
Anand Doshi179e3772013-09-05 16:53:57 +0530956 if(distinct_item_names.indexOf(item.item_code || item.item_name)===-1) {
957 distinct_item_names.push(item.item_code || item.item_name);
958 distinct_items.push(item);
959 }
960 });
Rushabh Mehtaff938022014-04-15 18:40:00 +0530961
Anand Doshi179e3772013-09-05 16:53:57 +0530962 var rows = $.map(distinct_items, function(item) {
Anand Doshi3543f302013-05-24 19:25:01 +0530963 var item_tax_record = item_tax[item.item_code || item.item_name];
Anand Doshi53b73422013-05-31 11:50:01 +0530964 if(!item_tax_record) { return null; }
Anand Doshi3543f302013-05-24 19:25:01 +0530965 return repl("<tr><td>%(item_name)s</td>%(taxes)s</tr>", {
966 item_name: item.item_name,
967 taxes: $.map(tax_accounts, function(head) {
Anand Doshiaa71b5b2013-08-05 13:00:53 +0530968 return item_tax_record[head[0]] ?
969 "<td>(" + item_tax_record[head[0]][0] + ") " + item_tax_record[head[0]][1] + "</td>" :
Anand Doshi64f316b2013-07-17 15:12:22 +0530970 "<td></td>";
Anand Doshi3543f302013-05-24 19:25:01 +0530971 }).join("\n")
972 });
973 }).join("\n");
Rushabh Mehtaff938022014-04-15 18:40:00 +0530974
Anand Doshi53b73422013-05-31 11:50:01 +0530975 if(!rows) return "";
Rushabh Mehtaf24f6042015-08-20 18:01:40 +0530976 return '<p><a class="h6 text-muted" href="#" onclick="$(\'.tax-break-up\').toggleClass(\'hide\'); return false;">'
Rushabh Mehtaf340e192017-03-15 15:12:43 +0530977 + __("Show tax break-up") + '</a></p>\
Rushabh Mehta7d8b1892013-11-08 16:27:18 +0530978 <div class="tax-break-up hide" style="overflow-x: auto;"><table class="table table-bordered table-hover">\
Anand Doshi3543f302013-05-24 19:25:01 +0530979 <thead><tr>' + headings + '</tr></thead> \
980 <tbody>' + rows + '</tbody> \
981 </table></div>';
982 },
Rushabh Mehtaff938022014-04-15 18:40:00 +0530983
Nabin Hait139dc7b2014-02-12 14:53:18 +0530984 validate_company_and_party: function() {
Anand Doshi923d41d2013-05-28 17:23:36 +0530985 var me = this;
Anand Doshi3543f302013-05-24 19:25:01 +0530986 var valid = true;
Rushabh Mehtaff938022014-04-15 18:40:00 +0530987
Nabin Hait0f231062014-02-20 11:27:47 +0530988 $.each(["company", "customer"], function(i, fieldname) {
Nabin Haitae07f222017-06-02 13:57:08 +0530989 if(frappe.meta.has_field(me.frm.doc.doctype, fieldname) && me.frm.doc.doctype != "Purchase Order") {
Nabin Hait139dc7b2014-02-12 14:53:18 +0530990 if (!me.frm.doc[fieldname]) {
Rushabh Mehtaff938022014-04-15 18:40:00 +0530991 msgprint(__("Please specify") + ": " +
992 frappe.meta.get_label(me.frm.doc.doctype, fieldname, me.frm.doc.name) +
Pratik Vyasb52618c2014-04-14 16:25:30 +0530993 ". " + __("It is needed to fetch Item Details."));
Nabin Hait139dc7b2014-02-12 14:53:18 +0530994 valid = false;
995 }
Anand Doshi3543f302013-05-24 19:25:01 +0530996 }
997 });
998 return valid;
999 },
Rushabh Mehtaff938022014-04-15 18:40:00 +05301000
Anand Doshibf3e54a2013-06-05 14:11:32 +05301001 get_terms: function() {
1002 var me = this;
Makarand Bauskar157c3342017-05-26 21:32:33 +05301003
1004 erpnext.utils.get_terms(this.frm.doc.tc_name, this.frm.doc, function(r) {
1005 if(!r.exc) {
1006 me.frm.set_value("terms", r.message);
1007 }
1008 });
Anand Doshibf3e54a2013-06-05 14:11:32 +05301009 },
Akhilesh Darjee4f721562014-01-29 16:31:38 +05301010
1011 taxes_and_charges: function() {
1012 var me = this;
1013 if(this.frm.doc.taxes_and_charges) {
1014 return this.frm.call({
Nabin Hait6b039142014-05-02 15:45:10 +05301015 method: "erpnext.controllers.accounts_controller.get_taxes_and_charges",
1016 args: {
Nabin Hait03f3a8a2014-05-13 16:38:31 +05301017 "master_doctype": frappe.meta.get_docfield(this.frm.doc.doctype, "taxes_and_charges",
1018 this.frm.doc.name).options,
Nabin Hait6b039142014-05-02 15:45:10 +05301019 "master_name": this.frm.doc.taxes_and_charges,
Nabin Hait6b039142014-05-02 15:45:10 +05301020 },
Akhilesh Darjee4f721562014-01-29 16:31:38 +05301021 callback: function(r) {
1022 if(!r.exc) {
Nabin Haitdd38a262014-12-26 13:15:21 +05301023 me.frm.set_value("taxes", r.message);
Akhilesh Darjee4f721562014-01-29 16:31:38 +05301024 me.calculate_taxes_and_totals();
1025 }
1026 }
1027 });
Nabin Haitbc83b9c2014-05-02 17:03:18 +05301028 }
Akhilesh Darjee4f721562014-01-29 16:31:38 +05301029 },
1030
1031 show_item_wise_taxes: function() {
1032 if(this.frm.fields_dict.other_charges_calculation) {
Anand Doshidd942bb2015-02-04 18:52:35 +05301033 var html = this.get_item_wise_taxes_html();
1034 if (html) {
1035 this.frm.toggle_display("other_charges_calculation", true);
1036 $(this.frm.fields_dict.other_charges_calculation.wrapper).html(html);
1037 } else {
1038 this.frm.toggle_display("other_charges_calculation", false);
1039 }
Akhilesh Darjee4f721562014-01-29 16:31:38 +05301040 }
1041 },
Anand Doshi13945092014-09-21 19:45:49 +05301042
1043 is_recurring: function() {
1044 // set default values for recurring documents
Rushabh Mehta756e5182016-03-03 13:00:17 +05301045 if(this.frm.doc.is_recurring && this.frm.doc.__islocal) {
1046 frappe.msgprint(__("Please set recurring after saving"));
1047 this.frm.set_value('is_recurring', 0);
1048 return;
1049 }
1050
Anand Doshi13945092014-09-21 19:45:49 +05301051 if(this.frm.doc.is_recurring) {
Nabin Hait68a628e2016-03-21 12:03:16 +05301052 if(!this.frm.doc.recurring_id) {
1053 this.frm.set_value('recurring_id', this.frm.doc.name);
1054 }
Rushabh Mehtabb8c6de2016-03-29 17:52:22 +05301055
Anand Doshi13945092014-09-21 19:45:49 +05301056 var owner_email = this.frm.doc.owner=="Administrator"
1057 ? frappe.user_info("Administrator").email
1058 : this.frm.doc.owner;
1059
1060 this.frm.doc.notification_email_address = $.map([cstr(owner_email),
1061 cstr(this.frm.doc.contact_email)], function(v) { return v || null; }).join(", ");
1062 this.frm.doc.repeat_on_day_of_month = frappe.datetime.str_to_obj(this.frm.doc.posting_date).getDate();
1063 }
1064
1065 refresh_many(["notification_email_address", "repeat_on_day_of_month"]);
1066 },
1067
1068 from_date: function() {
1069 // set to_date
1070 if(this.frm.doc.from_date) {
1071 var recurring_type_map = {'Monthly': 1, 'Quarterly': 3, 'Half-yearly': 6,
1072 'Yearly': 12};
1073
1074 var months = recurring_type_map[this.frm.doc.recurring_type];
1075 if(months) {
1076 var to_date = frappe.datetime.add_months(this.frm.doc.from_date,
1077 months);
1078 this.frm.doc.to_date = frappe.datetime.add_days(to_date, -1);
1079 refresh_field('to_date');
1080 }
1081 }
Saurabhd3135532016-02-25 18:59:20 +05301082 },
Rushabh Mehtabb8c6de2016-03-29 17:52:22 +05301083
Saurabh2d7af632016-02-26 11:09:20 +05301084 set_gross_profit: function(item) {
Saurabh5ada14b2016-02-26 18:02:55 +05301085 if (this.frm.doc.doctype == "Sales Order" && item.valuation_rate) {
Saurabh3fbf3ce2016-03-09 15:31:04 +05301086 rate = flt(item.rate) * flt(this.frm.doc.conversion_rate || 1);
Kanchan Chauhan5a980ac2017-02-10 14:27:11 +05301087 item.gross_profit = flt(((rate - item.valuation_rate) * item.stock_qty), precision("amount", item));
Saurabh2d7af632016-02-26 11:09:20 +05301088 }
Rushabh Mehta203cc962016-04-07 15:25:43 +05301089 },
1090
1091 setup_item_selector: function() {
Rushabh Mehtabc928242016-05-29 23:08:22 +05301092 // TODO: remove item selector
1093
1094 return;
Rushabh Mehta203cc962016-04-07 15:25:43 +05301095 if(!this.item_selector) {
1096 this.item_selector = new erpnext.ItemSelector({frm: this.frm});
1097 }
Nabin Hait28a05282016-06-27 17:41:39 +05301098 },
Rushabh Mehta76b13412016-07-18 14:30:18 +05301099
Nabin Hait28a05282016-06-27 17:41:39 +05301100 get_advances: function() {
1101 if(!this.frm.is_return) {
1102 return this.frm.call({
1103 method: "set_advances",
1104 doc: this.frm.doc,
1105 callback: function(r, rt) {
1106 refresh_field("advances");
1107 }
1108 })
1109 }
Nabin Hait05aefbb2016-06-28 19:42:19 +05301110 },
Rushabh Mehta76b13412016-07-18 14:30:18 +05301111
Nabin Hait05aefbb2016-06-28 19:42:19 +05301112 make_payment_entry: function() {
1113 return frappe.call({
Rohit Waghchaureb7a55022016-10-05 16:24:41 +05301114 method: cur_frm.cscript.get_method_for_payment(),
Nabin Hait05aefbb2016-06-28 19:42:19 +05301115 args: {
1116 "dt": cur_frm.doc.doctype,
1117 "dn": cur_frm.doc.name
1118 },
1119 callback: function(r) {
1120 var doclist = frappe.model.sync(r.message);
1121 frappe.set_route("Form", doclist[0].doctype, doclist[0].name);
Nabin Hait56548cb2016-07-01 15:58:39 +05301122 // cur_frm.refresh_fields()
Nabin Hait05aefbb2016-06-28 19:42:19 +05301123 }
1124 });
Rohit Waghchaureb7a55022016-10-05 16:24:41 +05301125 },
1126
1127 get_method_for_payment: function(){
1128 method = "erpnext.accounts.doctype.payment_entry.payment_entry.get_payment_entry"
Rohit Waghchaure7d529892016-10-06 14:35:04 +05301129 if(cur_frm.doc.__onload && cur_frm.doc.__onload.make_payment_via_journal_entry){
Rohit Waghchaureb7a55022016-10-05 16:24:41 +05301130 if(in_list(['Sales Invoice', 'Purchase Invoice'], cur_frm.doc.doctype)){
1131 method = "erpnext.accounts.doctype.journal_entry.journal_entry.get_payment_entry_against_invoice"
1132 }else {
1133 method= "erpnext.accounts.doctype.journal_entry.journal_entry.get_payment_entry_against_order"
1134 }
1135 }
1136
1137 return method
Manas Solankicc902412016-11-10 19:15:11 +05301138 },
Makarand Bauskarc196d742017-06-02 17:28:40 +05301139
1140 set_query_for_batch: function(doc, cdt, cdn) {
1141 // Show item's batches in the dropdown of batch no
1142
1143 var me = this;
1144 var item = frappe.get_doc(cdt, cdn);
1145
1146 if(!item.item_code) {
1147 frappe.throw(__("Please enter Item Code to get batch no"));
1148 } else if (doc.doctype == "Purchase Receipt" ||
1149 (doc.doctype == "Purchase Invoice" && doc.update_stock)) {
1150
1151 return {
1152 filters: {'item': item.item_code}
1153 }
1154 } else {
1155 filters = {
1156 'item_code': item.item_code,
1157 'posting_date': me.frm.doc.posting_date || frappe.datetime.nowdate(),
1158 }
1159 if(item.warehouse) filters["warehouse"] = item.warehouse
1160
1161 return {
1162 query : "erpnext.controllers.queries.get_batch_no",
1163 filters: filters
1164 }
1165 }
1166 },
Nabin Hait6e740792017-05-06 12:45:16 +05301167});