Merge pull request #22164 from frappe/revert-21123-patch-1

Revert "fix: docfield of sales_order is not fetching route options for new doc"
This commit is contained in:
Deepesh Garg 2020-06-09 17:42:42 +05:30 committed by GitHub
commit 0dd925cfc8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,7 +18,7 @@ frappe.ui.form.on("Project", {
};
},
onload: function (frm) {
var so = frm.get_docfield("Project", "sales_order");
var so = frappe.meta.get_docfield("Project", "sales_order");
so.get_route_options_for_new_doc = function (field) {
if (frm.is_new()) return;
return {
@ -135,4 +135,4 @@ function open_form(frm, doctype, child_doctype, parentfield) {
frappe.ui.form.make_quick_entry(doctype, null, null, new_doc);
});
}
}