call item on_update from UOM Replace Utility

This commit is contained in:
Nabin Hait 2012-08-06 13:18:32 +05:30
parent 326f88cce6
commit fd03762445
2 changed files with 4 additions and 6 deletions

View File

@ -66,7 +66,7 @@ class DocType:
if cstr(d.uom) == cstr(self.doc.stock_uom):
if flt(d.conversion_factor) != 1:
msgprint("Conversion Fator of UOM : %s should be equal to 1. As UOM : %s is Stock UOM of Item: %s." % ( cstr(d.uom), cstr(d.uom), cstr(self.doc.name)))
msgprint("Conversion Factor of UOM : %s should be equal to 1. As UOM : %s is Stock UOM of Item: %s." % ( cstr(d.uom), cstr(d.uom), cstr(self.doc.name)))
raise Exception
# else set uom_exist as true
uom_exist='true'

View File

@ -44,10 +44,6 @@ class DocType:
if not cstr(self.doc.item_code):
msgprint("Please Enter an Item.")
raise Exception
if not cstr(self.doc.current_stock_uom):
msgprint("There is no Current Stock UOM for Item Code" + cstr(self.doc.item_code))
raise Exception
if not cstr(self.doc.new_stock_uom):
msgprint("Please Enter New Stock UOM.")
@ -118,4 +114,6 @@ class DocType:
self.update_stock_ledger_entry()
# update bin
self.update_bin()
self.update_bin()
get_obj("Item", self.doc.item_code).on_update()