blob: a5b7699040b8262a557b655d9a8db922aff484e1 [file] [log] [blame]
Rushabh Mehtaf0b45622017-03-31 12:53:05 +05301// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
2// License: GNU General Public License v3. See license.txt
3
4frappe.provide("erpnext.buying");
5
6cur_frm.cscript.tax_table = "Purchase Taxes and Charges";
7
8{% include 'erpnext/accounts/doctype/purchase_taxes_and_charges_template/purchase_taxes_and_charges_template.js' %}
9
10cur_frm.email_field = "contact_email";
11
Faris Ansari1fe891b2021-04-23 08:04:00 +053012erpnext.buying.BuyingController = class BuyingController extends erpnext.TransactionController {
13 setup() {
14 super.setup();
15 }
Rushabh Mehtaf0b45622017-03-31 12:53:05 +053016
Faris Ansari1fe891b2021-04-23 08:04:00 +053017 onload(doc, cdt, cdn) {
Rohit Waghchaure3cf24362019-06-02 16:03:05 +053018 this.setup_queries(doc, cdt, cdn);
Faris Ansari1fe891b2021-04-23 08:04:00 +053019 super.onload();
Rushabh Mehtaf0b45622017-03-31 12:53:05 +053020
Rushabh Mehta30dc9a12017-11-17 14:31:09 +053021 this.frm.set_query('shipping_rule', function() {
22 return {
23 filters: {
24 "shipping_rule_type": "Buying"
25 }
26 };
27 });
28
rohitwaghchaure8356d4b2018-08-09 15:51:11 +053029 if (this.frm.doc.__islocal
30 && frappe.meta.has_field(this.frm.doc.doctype, "disable_rounded_total")) {
Nabin Haita39f3242019-01-21 18:50:50 +053031
32 var df = frappe.meta.get_docfield(this.frm.doc.doctype, "disable_rounded_total");
marinationca6dbad2019-12-11 12:10:05 +053033 var disable = cint(df.default) || cint(frappe.sys_defaults.disable_rounded_total);
Nabin Haita39f3242019-01-21 18:50:50 +053034 this.frm.set_value("disable_rounded_total", disable);
rohitwaghchaureae4ff5a2018-08-01 18:09:51 +053035 }
36
Faris Ansariab74ca72017-05-30 12:54:42 +053037 /* eslint-disable */
38 // no idea where me is coming from
Rushabh Mehtaf0b45622017-03-31 12:53:05 +053039 if(this.frm.get_field('shipping_address')) {
Faris Ansariab74ca72017-05-30 12:54:42 +053040 this.frm.set_query("shipping_address", function() {
41 if(me.frm.doc.customer) {
Rushabh Mehtaf0b45622017-03-31 12:53:05 +053042 return {
KanchanChauhan1dc26b12017-06-13 15:26:35 +053043 query: 'frappe.contacts.doctype.address.address.address_query',
Rushabh Mehtaf0b45622017-03-31 12:53:05 +053044 filters: { link_doctype: 'Customer', link_name: me.frm.doc.customer }
45 };
46 } else
47 return erpnext.queries.company_address_query(me.frm.doc)
48 });
49 }
Faris Ansariab74ca72017-05-30 12:54:42 +053050 /* eslint-enable */
Faris Ansari1fe891b2021-04-23 08:04:00 +053051 }
Rushabh Mehtaf0b45622017-03-31 12:53:05 +053052
Faris Ansari1fe891b2021-04-23 08:04:00 +053053 setup_queries(doc, cdt, cdn) {
Rushabh Mehtaf0b45622017-03-31 12:53:05 +053054 var me = this;
55
56 if(this.frm.fields_dict.buying_price_list) {
57 this.frm.set_query("buying_price_list", function() {
58 return{
59 filters: { 'buying': 1 }
60 }
61 });
62 }
63
karthikeyan57fc60212019-07-04 22:46:16 +053064 if(this.frm.fields_dict.tc_name) {
65 this.frm.set_query("tc_name", function() {
66 return{
67 filters: { 'buying': 1 }
68 }
69 });
70 }
71
Rushabh Mehtaf0b45622017-03-31 12:53:05 +053072 me.frm.set_query('supplier', erpnext.queries.supplier);
73 me.frm.set_query('contact_person', erpnext.queries.contact_query);
74 me.frm.set_query('supplier_address', erpnext.queries.address_query);
75
Deepesh Garg67600772020-06-13 22:40:23 +053076 me.frm.set_query('billing_address', erpnext.queries.company_address_query);
Deepesh Garg3f376cc2022-06-02 13:57:54 +053077 erpnext.accounts.dimensions.setup_dimension_filters(me.frm, me.frm.doctype);
Deepesh Garg67600772020-06-13 22:40:23 +053078
Rushabh Mehtaf0b45622017-03-31 12:53:05 +053079 if(this.frm.fields_dict.supplier) {
80 this.frm.set_query("supplier", function() {
81 return{ query: "erpnext.controllers.queries.supplier_query" }});
82 }
83
84 this.frm.set_query("item_code", "items", function() {
Sagar Sharmad074c932022-03-31 19:57:42 +053085 if (me.frm.doc.is_subcontracted) {
Rushabh Mehtaf0b45622017-03-31 12:53:05 +053086 return{
87 query: "erpnext.controllers.queries.item_query",
noahjacobca2fb472021-05-12 16:25:07 +053088 filters:{ 'supplier': me.frm.doc.supplier, 'is_sub_contracted_item': 1 }
Rushabh Mehtaf0b45622017-03-31 12:53:05 +053089 }
Doridel Cahanap2b14d6a2018-11-13 14:37:16 +080090 }
Doridel Cahanap2b14d6a2018-11-13 14:37:16 +080091 else {
Rushabh Mehtaf0b45622017-03-31 12:53:05 +053092 return{
93 query: "erpnext.controllers.queries.item_query",
Ankush Menat0e875f52022-05-16 12:14:07 +053094 filters: { 'supplier': me.frm.doc.supplier, 'is_purchase_item': 1, 'has_variants': 0}
Rushabh Mehtaf0b45622017-03-31 12:53:05 +053095 }
96 }
97 });
Rohit Waghchaure3cf24362019-06-02 16:03:05 +053098
99
100 this.frm.set_query("manufacturer", "items", function(doc, cdt, cdn) {
101 const row = locals[cdt][cdn];
102 return {
103 query: "erpnext.controllers.queries.item_manufacturer_query",
104 filters:{ 'item_code': row.item_code }
105 }
106 });
Deepesh Gargef0d26c2020-01-06 15:34:15 +0530107
108 if(this.frm.fields_dict["items"].grid.get_field('item_code')) {
109 this.frm.set_query("item_tax_template", "items", function(doc, cdt, cdn) {
110 return me.set_query_for_item_tax_template(doc, cdt, cdn)
111 });
112 }
Faris Ansari1fe891b2021-04-23 08:04:00 +0530113 }
Rushabh Mehtaf0b45622017-03-31 12:53:05 +0530114
Faris Ansari1fe891b2021-04-23 08:04:00 +0530115 refresh(doc) {
Rushabh Mehtaf0b45622017-03-31 12:53:05 +0530116 frappe.dynamic_link = {doc: this.frm.doc, fieldname: 'supplier', doctype: 'Supplier'};
117
118 this.frm.toggle_display("supplier_name",
119 (this.frm.doc.supplier_name && this.frm.doc.supplier_name!==this.frm.doc.supplier));
120
121 if(this.frm.doc.docstatus==0 &&
122 (this.frm.doctype==="Purchase Order" || this.frm.doctype==="Material Request")) {
123 this.set_from_product_bundle();
124 }
125
Rohit Waghchaure110e1522021-06-15 17:29:52 +0530126 this.toggle_subcontracting_fields();
Faris Ansari1fe891b2021-04-23 08:04:00 +0530127 super.refresh();
Rohit Waghchauref0dfea12021-06-20 10:20:35 +0530128 }
Rushabh Mehtaf0b45622017-03-31 12:53:05 +0530129
Rohit Waghchauref0dfea12021-06-20 10:20:35 +0530130 toggle_subcontracting_fields() {
Rohit Waghchaure110e1522021-06-15 17:29:52 +0530131 if (in_list(['Purchase Receipt', 'Purchase Invoice'], this.frm.doc.doctype)) {
132 this.frm.fields_dict.supplied_items.grid.update_docfield_property('consumed_qty',
133 'read_only', this.frm.doc.__onload && this.frm.doc.__onload.backflush_based_on === 'BOM');
134
135 this.frm.set_df_property('supplied_items', 'cannot_add_rows', 1);
136 this.frm.set_df_property('supplied_items', 'cannot_delete_rows', 1);
137 }
Rohit Waghchauref0dfea12021-06-20 10:20:35 +0530138 }
Rohit Waghchaure110e1522021-06-15 17:29:52 +0530139
Rohit Waghchauref0dfea12021-06-20 10:20:35 +0530140 supplier() {
Rushabh Mehtaf0b45622017-03-31 12:53:05 +0530141 var me = this;
Nabin Haite45ec662018-08-01 17:44:34 +0530142 erpnext.utils.get_party_details(this.frm, null, null, function(){
143 me.apply_price_list();
144 });
Faris Ansari1fe891b2021-04-23 08:04:00 +0530145 }
Rushabh Mehtaf0b45622017-03-31 12:53:05 +0530146
Faris Ansari1fe891b2021-04-23 08:04:00 +0530147 supplier_address() {
Rushabh Mehtaf0b45622017-03-31 12:53:05 +0530148 erpnext.utils.get_address_display(this.frm);
Saif Ur Rehmanfd531a62018-12-29 01:49:11 +0500149 erpnext.utils.set_taxes_from_address(this.frm, "supplier_address", "supplier_address", "supplier_address");
Faris Ansari1fe891b2021-04-23 08:04:00 +0530150 }
Rushabh Mehtaf0b45622017-03-31 12:53:05 +0530151
Faris Ansari1fe891b2021-04-23 08:04:00 +0530152 buying_price_list() {
Rushabh Mehtaf0b45622017-03-31 12:53:05 +0530153 this.apply_price_list();
Faris Ansari1fe891b2021-04-23 08:04:00 +0530154 }
Rushabh Mehtaf0b45622017-03-31 12:53:05 +0530155
Faris Ansari1fe891b2021-04-23 08:04:00 +0530156 discount_percentage(doc, cdt, cdn) {
Rohit Waghchaure8bfe3302019-03-18 14:34:19 +0530157 var item = frappe.get_doc(cdt, cdn);
158 item.discount_amount = 0.0;
159 this.price_list_rate(doc, cdt, cdn);
Faris Ansari1fe891b2021-04-23 08:04:00 +0530160 }
Rohit Waghchaure8bfe3302019-03-18 14:34:19 +0530161
Faris Ansari1fe891b2021-04-23 08:04:00 +0530162 discount_amount(doc, cdt, cdn) {
Nabin Hait593242f2019-04-05 19:35:02 +0530163 var item = frappe.get_doc(cdt, cdn);
164 item.discount_percentage = 0.0;
Rushabh Mehtaf0b45622017-03-31 12:53:05 +0530165 this.price_list_rate(doc, cdt, cdn);
Faris Ansari1fe891b2021-04-23 08:04:00 +0530166 }
Rushabh Mehtaf0b45622017-03-31 12:53:05 +0530167
Faris Ansari1fe891b2021-04-23 08:04:00 +0530168 qty(doc, cdt, cdn) {
Rushabh Mehtaf0b45622017-03-31 12:53:05 +0530169 if ((doc.doctype == "Purchase Receipt") || (doc.doctype == "Purchase Invoice" && (doc.update_stock || doc.is_return))) {
marination5fb5a752021-11-08 13:22:57 +0530170 this.calculate_received_qty(doc, cdt, cdn)
Rushabh Mehtaf0b45622017-03-31 12:53:05 +0530171 }
Faris Ansari1fe891b2021-04-23 08:04:00 +0530172 super.qty(doc, cdt, cdn);
173 }
Rushabh Mehtaf0b45622017-03-31 12:53:05 +0530174
marination5fb5a752021-11-08 13:22:57 +0530175 rejected_qty(doc, cdt, cdn) {
176 this.calculate_received_qty(doc, cdt, cdn)
177 }
178
179 calculate_received_qty(doc, cdt, cdn){
180 var item = frappe.get_doc(cdt, cdn);
181 frappe.model.round_floats_in(item, ["qty", "rejected_qty"]);
182
183 if(!doc.is_return && this.validate_negative_quantity(cdt, cdn, item, ["qty", "rejected_qty"])){ return }
184
185 let received_qty = flt(item.qty + item.rejected_qty, precision("received_qty", item));
186 let received_stock_qty = flt(item.conversion_factor, precision("conversion_factor", item)) * flt(received_qty);
187
188 frappe.model.set_value(cdt, cdn, "received_qty", received_qty);
189 frappe.model.set_value(cdt, cdn, "received_stock_qty", received_stock_qty);
190 }
191
Faris Ansari1fe891b2021-04-23 08:04:00 +0530192 batch_no(doc, cdt, cdn) {
193 super.batch_no(doc, cdt, cdn);
194 }
Deepesh Gargbd9bdc52021-01-28 12:05:57 +0530195
Faris Ansari1fe891b2021-04-23 08:04:00 +0530196 validate_negative_quantity(cdt, cdn, item, fieldnames){
Rushabh Mehtaf0b45622017-03-31 12:53:05 +0530197 if(!item || !fieldnames) { return }
198
199 var is_negative_qty = false;
200 for(var i = 0; i<fieldnames.length; i++) {
201 if(item[fieldnames[i]] < 0){
Mohammad Hasnain Mohsin Rajan90e33e52020-11-25 15:37:54 +0530202 frappe.msgprint(__("Row #{0}: {1} can not be negative for item {2}", [item.idx,__(frappe.meta.get_label(cdt, fieldnames[i], cdn)), item.item_code]));
Rushabh Mehtaf0b45622017-03-31 12:53:05 +0530203 is_negative_qty = true;
204 break;
205 }
206 }
207
208 return is_negative_qty
Faris Ansari1fe891b2021-04-23 08:04:00 +0530209 }
Rushabh Mehtaf0b45622017-03-31 12:53:05 +0530210
Faris Ansari1fe891b2021-04-23 08:04:00 +0530211 warehouse(doc, cdt, cdn) {
Rushabh Mehtaf0b45622017-03-31 12:53:05 +0530212 var item = frappe.get_doc(cdt, cdn);
213 if(item.item_code && item.warehouse) {
214 return this.frm.call({
215 method: "erpnext.stock.get_item_details.get_bin_details",
216 child: item,
217 args: {
218 item_code: item.item_code,
Anupam4980dd62021-03-15 11:37:46 +0530219 warehouse: item.warehouse,
220 company: doc.company
Rushabh Mehtaf0b45622017-03-31 12:53:05 +0530221 }
222 });
223 }
Faris Ansari1fe891b2021-04-23 08:04:00 +0530224 }
Rushabh Mehtaf0b45622017-03-31 12:53:05 +0530225
Faris Ansari1fe891b2021-04-23 08:04:00 +0530226 project(doc, cdt, cdn) {
Rushabh Mehtaf0b45622017-03-31 12:53:05 +0530227 var item = frappe.get_doc(cdt, cdn);
228 if(item.project) {
229 $.each(this.frm.doc["items"] || [],
230 function(i, other_item) {
231 if(!other_item.project) {
232 other_item.project = item.project;
233 refresh_field("project", other_item.name, other_item.parentfield);
234 }
235 });
236 }
Faris Ansari1fe891b2021-04-23 08:04:00 +0530237 }
Rushabh Mehtaf0b45622017-03-31 12:53:05 +0530238
Faris Ansari1fe891b2021-04-23 08:04:00 +0530239 rejected_warehouse(doc, cdt) {
marination8a30cb22020-04-23 00:18:21 +0530240 // trigger autofill_warehouse only if parent rejected_warehouse field is triggered
241 if (["Purchase Invoice", "Purchase Receipt"].includes(cdt)) {
242 this.autofill_warehouse(doc.items, "rejected_warehouse", doc.rejected_warehouse);
243 }
Faris Ansari1fe891b2021-04-23 08:04:00 +0530244 }
marination8a30cb22020-04-23 00:18:21 +0530245
Faris Ansari1fe891b2021-04-23 08:04:00 +0530246 category(doc, cdt, cdn) {
Rushabh Mehtaf0b45622017-03-31 12:53:05 +0530247 // should be the category field of tax table
248 if(cdt != doc.doctype) {
249 this.calculate_taxes_and_totals();
250 }
Faris Ansari1fe891b2021-04-23 08:04:00 +0530251 }
252 add_deduct_tax(doc, cdt, cdn) {
Rushabh Mehtaf0b45622017-03-31 12:53:05 +0530253 this.calculate_taxes_and_totals();
Faris Ansari1fe891b2021-04-23 08:04:00 +0530254 }
Rushabh Mehtaf0b45622017-03-31 12:53:05 +0530255
Faris Ansari1fe891b2021-04-23 08:04:00 +0530256 set_from_product_bundle() {
Rushabh Mehtaf0b45622017-03-31 12:53:05 +0530257 var me = this;
258 this.frm.add_custom_button(__("Product Bundle"), function() {
259 erpnext.buying.get_items_from_product_bundle(me.frm);
marinatione14fdf42020-10-30 17:06:00 +0530260 }, __("Get Items From"));
Faris Ansari1fe891b2021-04-23 08:04:00 +0530261 }
Rushabh Mehtaf0b45622017-03-31 12:53:05 +0530262
Faris Ansari1fe891b2021-04-23 08:04:00 +0530263 shipping_address(){
Rushabh Mehtaf0b45622017-03-31 12:53:05 +0530264 var me = this;
265 erpnext.utils.get_address_display(this.frm, "shipping_address",
Faris Ansariab74ca72017-05-30 12:54:42 +0530266 "shipping_address_display", true);
Faris Ansari1fe891b2021-04-23 08:04:00 +0530267 }
Rushabh Mehtaf0b45622017-03-31 12:53:05 +0530268
Faris Ansari1fe891b2021-04-23 08:04:00 +0530269 billing_address() {
Deepesh Garg67600772020-06-13 22:40:23 +0530270 erpnext.utils.get_address_display(this.frm, "billing_address",
271 "billing_address_display", true);
Faris Ansari1fe891b2021-04-23 08:04:00 +0530272 }
Deepesh Garg67600772020-06-13 22:40:23 +0530273
Faris Ansari1fe891b2021-04-23 08:04:00 +0530274 tc_name() {
Rushabh Mehtaf0b45622017-03-31 12:53:05 +0530275 this.get_terms();
Faris Ansari1fe891b2021-04-23 08:04:00 +0530276 }
Charles-Henri Decultot8b223102018-06-28 10:57:58 +0200277
Faris Ansari1fe891b2021-04-23 08:04:00 +0530278 update_auto_repeat_reference(doc) {
Charles-Henri Decultot8b223102018-06-28 10:57:58 +0200279 if (doc.auto_repeat) {
280 frappe.call({
Rucha Mahabal65a627c2019-07-17 13:50:32 +0530281 method:"frappe.automation.doctype.auto_repeat.auto_repeat.update_reference",
Nabin Haita39f3242019-01-21 18:50:50 +0530282 args:{
Charles-Henri Decultot8b223102018-06-28 10:57:58 +0200283 docname: doc.auto_repeat,
284 reference:doc.name
285 },
286 callback: function(r){
287 if (r.message=="success") {
288 frappe.show_alert({message:__("Auto repeat document updated"), indicator:'green'});
289 } else {
290 frappe.show_alert({message:__("An error occurred during the update process"), indicator:'red'});
291 }
292 }
293 })
294 }
Faris Ansari1fe891b2021-04-23 08:04:00 +0530295 }
Rohit Waghchaure3cf24362019-06-02 16:03:05 +0530296
Faris Ansari1fe891b2021-04-23 08:04:00 +0530297 manufacturer(doc, cdt, cdn) {
Rohit Waghchaure3cf24362019-06-02 16:03:05 +0530298 const row = locals[cdt][cdn];
299
300 if(row.manufacturer) {
301 frappe.call({
302 method: "erpnext.stock.doctype.item_manufacturer.item_manufacturer.get_item_manufacturer_part_no",
303 args: {
304 'item_code': row.item_code,
305 'manufacturer': row.manufacturer
306 },
307 callback: function(r) {
308 if (r.message) {
309 frappe.model.set_value(cdt, cdn, 'manufacturer_part_no', r.message);
310 }
311 }
312 });
313 }
Faris Ansari1fe891b2021-04-23 08:04:00 +0530314 }
marination3e7a8ab2020-04-07 21:00:57 +0530315
Faris Ansari1fe891b2021-04-23 08:04:00 +0530316 manufacturer_part_no(doc, cdt, cdn) {
marination3e7a8ab2020-04-07 21:00:57 +0530317 const row = locals[cdt][cdn];
318
319 if (row.manufacturer_part_no) {
320 frappe.model.get_value('Item Manufacturer',
321 {
322 'item_code': row.item_code,
323 'manufacturer': row.manufacturer,
324 'manufacturer_part_no': row.manufacturer_part_no
325 },
326 'name',
327 function(data) {
328 if (!data) {
329 let msg = {
330 message: __("Manufacturer Part Number <b>{0}</b> is invalid", [row.manufacturer_part_no]),
331 title: __("Invalid Part Number")
332 }
333 frappe.throw(msg);
334 }
335 });
336
337 }
338 }
Faris Ansari1fe891b2021-04-23 08:04:00 +0530339};
Rushabh Mehtaf0b45622017-03-31 12:53:05 +0530340
341cur_frm.add_fetch('project', 'cost_center', 'cost_center');
342
marinationa1196882020-09-24 15:22:46 +0530343erpnext.buying.link_to_mrs = function(frm) {
marinationa1196882020-09-24 15:22:46 +0530344 frappe.call({
345 method: "erpnext.buying.utils.get_linked_material_requests",
346 args:{
marination359778e2020-10-16 16:47:23 +0530347 items: frm.doc.items.map((item) => item.item_code)
marinationa1196882020-09-24 15:22:46 +0530348 },
349 callback: function(r) {
marination359778e2020-10-16 16:47:23 +0530350 if (!r.message || r.message.length == 0) {
351 frappe.throw({
352 message: __("No pending Material Requests found to link for the given items."),
353 title: __("Note")
354 });
marinationa1196882020-09-24 15:22:46 +0530355 }
marination359778e2020-10-16 16:47:23 +0530356
357 var item_length = frm.doc.items.length;
358 for (let item of frm.doc.items) {
359 var qty = item.qty;
360 (r.message[0] || []).forEach(function(d) {
361 if (d.qty > 0 && qty > 0 && item.item_code == d.item_code && !item.material_request_item)
362 {
363 item.material_request = d.mr_name;
364 item.material_request_item = d.mr_item;
365 var my_qty = Math.min(qty, d.qty);
366 qty = qty - my_qty;
367 d.qty = d.qty - my_qty;
368 item.stock_qty = my_qty*item.conversion_factor;
369 item.qty = my_qty;
370
371 frappe.msgprint("Assigning " + d.mr_name + " to " + d.item_code + " (row " + item.idx + ")");
372 if (qty > 0)
marinationa1196882020-09-24 15:22:46 +0530373 {
marination359778e2020-10-16 16:47:23 +0530374 frappe.msgprint("Splitting " + qty + " units of " + d.item_code);
375 var newrow = frappe.model.add_child(frm.doc, item.doctype, "items");
376 item_length++;
marinationa1196882020-09-24 15:22:46 +0530377
marination359778e2020-10-16 16:47:23 +0530378 for (var key in item)
marinationa1196882020-09-24 15:22:46 +0530379 {
marination359778e2020-10-16 16:47:23 +0530380 newrow[key] = item[key];
marinationa1196882020-09-24 15:22:46 +0530381 }
marination359778e2020-10-16 16:47:23 +0530382
383 newrow.idx = item_length;
384 newrow["stock_qty"] = newrow.conversion_factor*qty;
385 newrow["qty"] = qty;
386
387 newrow["material_request"] = "";
388 newrow["material_request_item"] = "";
389
marinationa1196882020-09-24 15:22:46 +0530390 }
marination359778e2020-10-16 16:47:23 +0530391 }
392 });
marinationa1196882020-09-24 15:22:46 +0530393 }
marination359778e2020-10-16 16:47:23 +0530394 refresh_field("items");
marinationa1196882020-09-24 15:22:46 +0530395 }
396 });
397}
398
Rushabh Mehtaf0b45622017-03-31 12:53:05 +0530399erpnext.buying.get_default_bom = function(frm) {
400 $.each(frm.doc["items"] || [], function(i, d) {
401 if (d.item_code && d.bom === "") {
402 return frappe.call({
403 type: "GET",
404 method: "erpnext.stock.get_item_details.get_default_bom",
405 args: {
406 "item_code": d.item_code,
407 },
408 callback: function(r) {
409 if(r) {
410 frappe.model.set_value(d.doctype, d.name, "bom", r.message);
411 }
412 }
413 })
414 }
415 });
416}
417
418erpnext.buying.get_items_from_product_bundle = function(frm) {
419 var dialog = new frappe.ui.Dialog({
420 title: __("Get Items from Product Bundle"),
421 fields: [
422 {
423 "fieldtype": "Link",
424 "label": __("Product Bundle"),
425 "fieldname": "product_bundle",
426 "options":"Product Bundle",
427 "reqd": 1
428 },
429 {
430 "fieldtype": "Currency",
431 "label": __("Quantity"),
432 "fieldname": "quantity",
433 "reqd": 1,
434 "default": 1
Rushabh Mehtaf0b45622017-03-31 12:53:05 +0530435 }
Marica9942acd2020-04-21 13:13:39 +0530436 ],
437 primary_action_label: 'Get Items',
438 primary_action(args){
439 if(!args) return;
440 dialog.hide();
441 return frappe.call({
442 type: "GET",
443 method: "erpnext.stock.doctype.packed_item.packed_item.get_items_from_product_bundle",
Rushabh Mehtaf0b45622017-03-31 12:53:05 +0530444 args: {
marination4c677ea2022-01-25 23:52:52 +0530445 row: {
Marica9942acd2020-04-21 13:13:39 +0530446 item_code: args.product_bundle,
447 quantity: args.quantity,
448 parenttype: frm.doc.doctype,
449 parent: frm.doc.name,
450 supplier: frm.doc.supplier,
451 currency: frm.doc.currency,
452 conversion_rate: frm.doc.conversion_rate,
453 price_list: frm.doc.buying_price_list,
454 price_list_currency: frm.doc.price_list_currency,
455 plc_conversion_rate: frm.doc.plc_conversion_rate,
456 company: frm.doc.company,
457 is_subcontracted: frm.doc.is_subcontracted,
458 transaction_date: frm.doc.transaction_date || frm.doc.posting_date,
459 ignore_pricing_rule: frm.doc.ignore_pricing_rule,
460 doctype: frm.doc.doctype
tundebabzyf35710d2017-08-16 08:55:18 +0100461 }
Marica9942acd2020-04-21 13:13:39 +0530462 },
463 freeze: true,
464 callback: function(r) {
465 const first_row_is_empty = function(child_table){
466 if($.isArray(child_table) && child_table.length > 0) {
467 return !child_table[0].item_code;
468 }
469 return false;
470 };
tundebabzyf35710d2017-08-16 08:55:18 +0100471
Marica9942acd2020-04-21 13:13:39 +0530472 const remove_empty_first_row = function(frm){
473 if (first_row_is_empty(frm.doc.items)){
474 frm.doc.items = frm.doc.items.splice(1);
475 }
476 };
tundebabzyf35710d2017-08-16 08:55:18 +0100477
Marica9942acd2020-04-21 13:13:39 +0530478 if(!r.exc && r.message) {
479 remove_empty_first_row(frm);
Afshaneb4b2aa2020-09-01 15:01:32 +0530480 for (var i=0; i< r.message.length; i++) {
Marica9942acd2020-04-21 13:13:39 +0530481 var d = frm.add_child("items");
482 var item = r.message[i];
Afshaneb4b2aa2020-09-01 15:01:32 +0530483 for (var key in item) {
484 if (!is_null(item[key]) && key !== "doctype") {
Marica9942acd2020-04-21 13:13:39 +0530485 d[key] = item[key];
486 }
487 }
488 if(frappe.meta.get_docfield(d.doctype, "price_list_rate", d.name)) {
489 frm.script_manager.trigger("price_list_rate", d.doctype, d.name);
Rushabh Mehtaf0b45622017-03-31 12:53:05 +0530490 }
491 }
Marica9942acd2020-04-21 13:13:39 +0530492 frm.refresh_field("items");
Rushabh Mehtaf0b45622017-03-31 12:53:05 +0530493 }
Rushabh Mehtaf0b45622017-03-31 12:53:05 +0530494 }
Marica9942acd2020-04-21 13:13:39 +0530495 })
496 }
Rushabh Mehtaf0b45622017-03-31 12:53:05 +0530497 });
Marica9942acd2020-04-21 13:13:39 +0530498
Rushabh Mehtaf0b45622017-03-31 12:53:05 +0530499 dialog.show();
Faris Ansari1fe891b2021-04-23 08:04:00 +0530500}