call item on_update from UOM Replace Utility
This commit is contained in:
parent
326f88cce6
commit
fd03762445
@ -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'
|
||||
|
@ -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()
|
Loading…
Reference in New Issue
Block a user