本文整理汇总了Python中frappe.utils.nestedset.NestedSet.on_update方法的典型用法代码示例。如果您正苦于以下问题:Python NestedSet.on_update方法的具体用法?Python NestedSet.on_update怎么用?Python NestedSet.on_update使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类frappe.utils.nestedset.NestedSet
的用法示例。
在下文中一共展示了NestedSet.on_update方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: on_update
# 需要导入模块: from frappe.utils.nestedset import NestedSet [as 别名]
# 或者: from frappe.utils.nestedset.NestedSet import on_update [as 别名]
def on_update(self):
NestedSet.on_update(self)
if not frappe.db.sql("""select name from tabAccount
where company=%s and docstatus<2 limit 1""", self.name):
if not frappe.local.flags.ignore_chart_of_accounts:
frappe.flags.country_change = True
self.create_default_accounts()
self.create_default_warehouses()
if frappe.flags.country_change:
install_country_fixtures(self.name)
self.create_default_tax_template()
if not frappe.db.get_value("Department", {"company": self.name}):
from erpnext.setup.setup_wizard.operations.install_fixtures import install_post_company_fixtures
install_post_company_fixtures(frappe._dict({'company_name': self.name}))
if not frappe.db.get_value("Cost Center", {"is_group": 0, "company": self.name}):
self.create_default_cost_center()
if not frappe.local.flags.ignore_chart_of_accounts:
self.set_default_accounts()
if self.default_cash_account:
self.set_mode_of_payment_account()
if self.default_currency:
frappe.db.set_value("Currency", self.default_currency, "enabled", 1)
if hasattr(frappe.local, 'enable_perpetual_inventory') and \
self.name in frappe.local.enable_perpetual_inventory:
frappe.local.enable_perpetual_inventory[self.name] = self.enable_perpetual_inventory
frappe.clear_cache()
示例2: on_update
# 需要导入模块: from frappe.utils.nestedset import NestedSet [as 别名]
# 或者: from frappe.utils.nestedset.NestedSet import on_update [as 别名]
def on_update(self):
if not frappe.flags.in_rebuild_config:
NestedSet.on_update(self)
self.clear_cache()
示例3: on_update
# 需要导入模块: from frappe.utils.nestedset import NestedSet [as 别名]
# 或者: from frappe.utils.nestedset.NestedSet import on_update [as 别名]
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()
示例4: on_update
# 需要导入模块: from frappe.utils.nestedset import NestedSet [as 别名]
# 或者: from frappe.utils.nestedset.NestedSet import on_update [as 别名]
def on_update(self):
NestedSet.on_update(self)
示例5: on_update
# 需要导入模块: from frappe.utils.nestedset import NestedSet [as 别名]
# 或者: from frappe.utils.nestedset.NestedSet import on_update [as 别名]
def on_update(self):
NestedSet.on_update(self)
self.validate_one_root()
示例6: on_update
# 需要导入模块: from frappe.utils.nestedset import NestedSet [as 别名]
# 或者: from frappe.utils.nestedset.NestedSet import on_update [as 别名]
def on_update(self):
WebsiteGenerator.on_update(self)
NestedSet.on_update(self)
clear_cache(website_group=self.name)