moved get_list_context to module
This commit is contained in:
parent
2e5be6f994
commit
9d9e31f4e8
@ -579,8 +579,7 @@ class SalesInvoice(SellingController):
|
||||
})
|
||||
)
|
||||
|
||||
@staticmethod
|
||||
def get_list_context(context=None):
|
||||
def get_list_context(context=None):
|
||||
from erpnext.controllers.website_list_for_contact import get_list_context
|
||||
list_context = get_list_context(context)
|
||||
list_context["title"] = _("My Invoices")
|
||||
|
@ -118,7 +118,7 @@ erpnext.patches.v5_0.rename_customer_issue
|
||||
erpnext.patches.v5_0.update_material_transfer_for_manufacture
|
||||
erpnext.patches.v5_0.manufacturing_activity_type
|
||||
erpnext.patches.v5_0.update_item_description_and_image
|
||||
erpnext.patches.v5_0.update_material_transferred_for_manufacturing
|
||||
erpnext.patches.v5_0.update_material_transferred_for_qty
|
||||
erpnext.patches.v5_0.stock_entry_update_value
|
||||
erpnext.patches.v5_0.convert_stock_reconciliation
|
||||
erpnext.patches.v5_0.update_projects
|
||||
|
@ -231,8 +231,7 @@ class SalesOrder(SellingController):
|
||||
def on_update(self):
|
||||
pass
|
||||
|
||||
@staticmethod
|
||||
def get_list_context(context=None):
|
||||
def get_list_context(context=None):
|
||||
from erpnext.controllers.website_list_for_contact import get_list_context
|
||||
list_context = get_list_context(context)
|
||||
list_context["title"] = _("My Orders")
|
||||
|
@ -285,8 +285,7 @@ class DeliveryNote(SellingController):
|
||||
}
|
||||
update_bin(args)
|
||||
|
||||
@staticmethod
|
||||
def get_list_context(context=None):
|
||||
def get_list_context(context=None):
|
||||
from erpnext.controllers.website_list_for_contact import get_list_context
|
||||
list_context = get_list_context(context)
|
||||
list_context["title"] = _("My Shipments")
|
||||
|
@ -48,8 +48,7 @@ class Issue(Document):
|
||||
# if no date, it should be set as None and not a blank string "", as per mysql strict config
|
||||
self.resolution_date = None
|
||||
|
||||
@staticmethod
|
||||
def get_list_context(context=None):
|
||||
def get_list_context(context=None):
|
||||
return {
|
||||
"title": _("My Issues"),
|
||||
"get_list": get_issue_list
|
||||
|
Loading…
Reference in New Issue
Block a user