fixes in item after change in website
This commit is contained in:
parent
c842f79811
commit
0e0b2317e1
@ -25,7 +25,7 @@ from webnotes import msgprint
|
|||||||
|
|
||||||
sql = webnotes.conn.sql
|
sql = webnotes.conn.sql
|
||||||
|
|
||||||
class DocType():
|
class DocType:
|
||||||
def __init__(self, doc, doclist=[]):
|
def __init__(self, doc, doclist=[]):
|
||||||
self.doc = doc
|
self.doc = doc
|
||||||
self.doclist = doclist
|
self.doclist = doclist
|
||||||
@ -38,9 +38,13 @@ class DocType():
|
|||||||
return ret
|
return ret
|
||||||
|
|
||||||
def on_update(self):
|
def on_update(self):
|
||||||
# webpage updates
|
if self.doc.show_in_website:
|
||||||
from website.utils import update_page_name
|
# webpage updates
|
||||||
update_page_name(self.doc, self.doc.item_name)
|
from website.utils import update_page_name
|
||||||
|
update_page_name(self.doc, self.doc.item_name)
|
||||||
|
elif self.doc.page_name:
|
||||||
|
from website.web_cache import delete_page_cache
|
||||||
|
delete_page_cache(self.doc.page_name)
|
||||||
|
|
||||||
bin = sql("select stock_uom from `tabBin` where item_code = '%s' " % self.doc.item_code)
|
bin = sql("select stock_uom from `tabBin` where item_code = '%s' " % self.doc.item_code)
|
||||||
if bin and cstr(bin[0][0]) != cstr(self.doc.stock_uom):
|
if bin and cstr(bin[0][0]) != cstr(self.doc.stock_uom):
|
||||||
@ -80,8 +84,10 @@ class DocType():
|
|||||||
sql("""delete from `tabStock Ledger Entry`
|
sql("""delete from `tabStock Ledger Entry`
|
||||||
where item_code=%s and is_cancelled='Yes' """, self.doc.item_code)
|
where item_code=%s and is_cancelled='Yes' """, self.doc.item_code)
|
||||||
|
|
||||||
self.delete_web_cache(self.doc.page_name)
|
if self.doc.page_name:
|
||||||
|
from website.web_cache import delete_page_cache
|
||||||
|
delete_page_cache(self.doc.page_name)
|
||||||
|
|
||||||
# Check whether Ref Rate is not entered twice for same Price List and Currency
|
# Check whether Ref Rate is not entered twice for same Price List and Currency
|
||||||
def check_ref_rate_detail(self):
|
def check_ref_rate_detail(self):
|
||||||
check_list=[]
|
check_list=[]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user