brotherton-erpnext/patches/march_2013/p07_update_valuation_rate.py

13 lines
624 B
Python
Raw Normal View History

import webnotes
def execute():
for purchase_invoice in webnotes.conn.sql_list("""select distinct parent
2013-03-29 11:12:33 +00:00
from `tabPurchase Invoice Item` pi_item where docstatus = 1 and ifnull(valuation_rate, 0)=0
and exists(select name from `tabPurchase Invoice` where name = pi_item.parent)"""):
pi = webnotes.get_obj("Purchase Invoice", purchase_invoice)
pi.calculate_taxes_and_totals()
pi.update_raw_material_cost()
pi.update_valuation_rate("entries")
for item in pi.doclist.get({"parentfield": "entries"}):
webnotes.conn.set_value("Purchase Invoice Item", item.name, "valuation_rate",
item.valuation_rate)