當前位置: 首頁>>代碼示例>>Python>>正文


Python website_generator.WebsiteGenerator類代碼示例

本文整理匯總了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 = ""
開發者ID:MofeLee,項目名稱:erpnext,代碼行數:9,代碼來源:item_group.py

示例2: on_update

	def on_update(self):
		WebsiteGenerator.on_update(self)
		clear_cache("writers")
開發者ID:AhmedHamedTN,項目名稱:frappe,代碼行數:3,代碼來源:blog_post.py

示例3: on_trash

	def on_trash(self):
		NestedSet.on_trash(self)
		WebsiteGenerator.on_trash(self)
開發者ID:Aravinthu,項目名稱:erpnext,代碼行數:3,代碼來源:item_group.py

示例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()
開發者ID:Aravinthu,項目名稱:erpnext,代碼行數:6,代碼來源:item_group.py

示例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)
開發者ID:MofeLee,項目名稱:erpnext,代碼行數:3,代碼來源:item_group.py

示例6: on_update

 def on_update(self):
     WebsiteGenerator.on_update(self)
     clear_cache(website_group=self.name)
開發者ID:BitMistDev,項目名稱:frappe,代碼行數:3,代碼來源:website_group.py


注:本文中的frappe.website.website_generator.WebsiteGenerator類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。