本文整理汇总了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)