mirror of
https://github.com/frappe/erpnext.git
synced 2026-06-02 11:49:10 +00:00
[Fix] Request for Quotation Portal Title (#10489)
This commit is contained in:
committed by
Makarand Bauskar
parent
a1637d8343
commit
a6a93cbe06
@@ -195,8 +195,12 @@ def check_portal_enabled(reference_doctype):
|
|||||||
def get_list_context(context=None):
|
def get_list_context(context=None):
|
||||||
from erpnext.controllers.website_list_for_contact import get_list_context
|
from erpnext.controllers.website_list_for_contact import get_list_context
|
||||||
list_context = get_list_context(context)
|
list_context = get_list_context(context)
|
||||||
list_context["show_sidebar"] = True
|
list_context.update({
|
||||||
list_context["title"] = "Request for Quotation"
|
'show_sidebar': True,
|
||||||
|
'show_search': True,
|
||||||
|
'no_breadcrumbs': True,
|
||||||
|
'title': _('Request for Quotation'),
|
||||||
|
})
|
||||||
return list_context
|
return list_context
|
||||||
|
|
||||||
def get_supplier_contacts(doctype, txt, searchfield, start, page_len, filters):
|
def get_supplier_contacts(doctype, txt, searchfield, start, page_len, filters):
|
||||||
|
|||||||
Reference in New Issue
Block a user