[minor] [selling/buying] use script_manager.trigger instead of calling cscript function directly post item details fetch, so that custom code can be executed
diff --git a/buying/doctype/purchase_common/purchase_common.js b/buying/doctype/purchase_common/purchase_common.js
index e93d34e..e54319d 100644
--- a/buying/doctype/purchase_common/purchase_common.js
+++ b/buying/doctype/purchase_common/purchase_common.js
@@ -129,7 +129,7 @@
},
callback: function(r) {
if(!r.exc) {
- me.import_ref_rate(me.frm.doc, cdt, cdn);
+ me.frm.script_manager.trigger("import_ref_rate", cdt, cdn);
}
}
});
diff --git a/selling/doctype/sales_common/sales_common.js b/selling/doctype/sales_common/sales_common.js
index 9c11eea..a0ba0df 100644
--- a/selling/doctype/sales_common/sales_common.js
+++ b/selling/doctype/sales_common/sales_common.js
@@ -202,7 +202,7 @@
},
callback: function(r) {
if(!r.exc) {
- me.ref_rate(me.frm.doc, cdt, cdn);
+ me.frm.script_manager.trigger("ref_rate", cdt, cdn);
}
}
});