コード例 #1
0
ファイル: item_group.py プロジェクト: Anirudh887/erpnext
	def on_update(self):
		DocTypeNestedSet.on_update(self)
		WebsiteGenerator.on_update(self)
		
		self.validate_name_with_item()
		
		from selling.utils.product import invalidate_cache_for
		invalidate_cache_for(self.doc.name)
				
		self.validate_one_root()
コード例 #2
0
ファイル: item_group.py プロジェクト: saurabh6790/OFF-RISAPP
    def on_update(self):
        DocTypeNestedSet.on_update(self)
        WebsiteGenerator.on_update(self)

        self.validate_name_with_item()

        from selling.utils.product import invalidate_cache_for
        invalidate_cache_for(self.doc.name)

        self.validate_one_root()
コード例 #3
0
	def on_update(self):
		if not webnotes.flags.in_rebuild_config:
			DocTypeNestedSet.on_update(self)
コード例 #4
0
ファイル: unit.py プロジェクト: anandpdoshi/aapkamanch
	def on_update(self):
		DocTypeNestedSet.on_update(self)
		cache = webnotes.cache()
		for key in ("is_public", "unit_html", "unit_title"):
			cache.delete_value(key + ":" + self.doc.name)
コード例 #5
0
ファイル: unit.py プロジェクト: butu5/aapkamanch
	def on_update(self):
		DocTypeNestedSet.on_update(self)
		clear_cache(self.doc.name)