brotherton-erpnext/erpnext/patches/v5_4/update_purchase_cost_against_project.py
2015-08-19 11:56:23 +05:30

11 lines
336 B
Python

# Copyright (c) 2015, Web Notes Technologies Pvt. Ltd. and Contributors
# License: GNU General Public License v3. See license.txt
from __future__ import unicode_literals
import frappe
def execute():
for p in frappe.get_all("Project"):
project = frappe.get_doc("Project", p.name)
project.update_purchase_costing()
project.save()