[minor][fix] remove website generator call on after rename

This commit is contained in:
Saurabh 2016-06-27 12:24:55 +05:30
parent 771ab0c8c3
commit d9131ec4ff
2 changed files with 0 additions and 2 deletions

View File

@ -46,7 +46,6 @@ class ItemGroup(NestedSet, WebsiteGenerator):
def after_rename(self, olddn, newdn, merge=False):
NestedSet.after_rename(self, olddn, newdn, merge)
WebsiteGenerator.after_rename(self, olddn, newdn, merge)
def on_trash(self):
NestedSet.on_trash(self)

View File

@ -512,7 +512,6 @@ class Item(WebsiteGenerator):
frappe.db.sql("delete from `tabBin` where item_code=%s", old_name)
def after_rename(self, old_name, new_name, merge):
super(Item, self).after_rename(old_name, new_name, merge)
if self.route:
invalidate_cache_for_item(self)
clear_cache(self.route)