Properly redirect supplier after quotations submit (#10903)
diff --git a/erpnext/hooks.py b/erpnext/hooks.py
index 8306290..a087b83 100644
--- a/erpnext/hooks.py
+++ b/erpnext/hooks.py
@@ -81,7 +81,7 @@
{"from_route": "/supplier-quotations/<path:name>", "to_route": "order",
"defaults": {
"doctype": "Supplier Quotation",
- "parents": [{"label": _("Supplier Quotation"), "route": "quotations"}]
+ "parents": [{"label": _("Supplier Quotation"), "route": "supplier-quotations"}]
}
},
{"from_route": "/quotations", "to_route": "Quotation"},
diff --git a/erpnext/templates/includes/rfq.js b/erpnext/templates/includes/rfq.js
index 3b45cbe..b56c416 100644
--- a/erpnext/templates/includes/rfq.js
+++ b/erpnext/templates/includes/rfq.js
@@ -85,7 +85,7 @@
frappe.unfreeze();
if(r.message){
$('.btn-sm').hide()
- window.location.href = "/quotations/" + encodeURIComponent(r.message);
+ window.location.href = "/supplier-quotations/" + encodeURIComponent(r.message);
}
}
})