2015-08-18 07:09:50 +00:00
|
|
|
# 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():
|
2015-08-19 08:45:28 +00:00
|
|
|
for p in frappe.get_all("Project", filters={"docstatus": 0}):
|
2015-08-18 07:09:50 +00:00
|
|
|
project = frappe.get_doc("Project", p.name)
|
|
|
|
project.update_purchase_costing()
|
|
|
|
project.save()
|