本文整理匯總了Python中frappe.website.website_generator.WebsiteGenerator類的典型用法代碼示例。如果您正苦於以下問題:Python WebsiteGenerator類的具體用法?Python WebsiteGenerator怎麽用?Python WebsiteGenerator使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
在下文中一共展示了WebsiteGenerator類的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: set_parent_website_route
def set_parent_website_route(self):
"""Overwrite `parent_website_route` from `WebsiteGenerator`.
Only set `parent_website_route` if parent is visble.
e.g. If `show_in_website` is set for Products then url should be `/products`"""
if self.parent_item_group and frappe.db.get_value("Item Group", self.parent_item_group, "show_in_website"):
WebsiteGenerator.set_parent_website_route(self)
else:
self.parent_website_route = ""
示例2: on_update
def on_update(self):
WebsiteGenerator.on_update(self)
clear_cache("writers")
示例3: on_trash
def on_trash(self):
NestedSet.on_trash(self)
WebsiteGenerator.on_trash(self)
示例4: on_update
def on_update(self):
NestedSet.on_update(self)
WebsiteGenerator.on_update(self)
invalidate_cache_for(self)
self.validate_name_with_item()
self.validate_one_root()
示例5: after_rename
def after_rename(self, olddn, newdn, merge=False):
NestedSet.after_rename(self, olddn, newdn, merge)
WebsiteGenerator.after_rename(self, olddn, newdn, merge)
示例6: on_update
def on_update(self):
WebsiteGenerator.on_update(self)
clear_cache(website_group=self.name)