Add "Get items from Material Request"
Allows users to pull items from multiple Material Requests into a Request for Quotation
diff --git a/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js b/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js
index 5fb8b80..aab006f 100644
--- a/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js
+++ b/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js
@@ -103,6 +103,22 @@
erpnext.buying.RequestforQuotationController = erpnext.buying.BuyingController.extend({
refresh: function() {
this._super();
+ if (this.frm.doc.docstatus===0) {
+ cur_frm.add_custom_button(__('Material Request'),
+ function() {
+ frappe.model.map_current_doc({
+ method: "erpnext.stock.doctype.material_request.material_request.make_request_for_quotation",
+ source_doctype: "Material Request",
+ get_query_filters: {
+ material_request_type: "Purchase",
+ docstatus: 1,
+ status: ["!=", "Stopped"],
+ per_ordered: ["<", 99.99],
+ company: cur_frm.doc.company
+ }
+ })
+ }, __("Get items from"));
+ }
},
calculate_taxes_and_totals: function() {