2015-03-03 14:55:30 +05:30
|
|
|
# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
|
2014-12-19 10:57:46 +05:30
|
|
|
# License: GNU General Public License v3. See license.txt
|
|
|
|
|
|
|
|
import frappe
|
|
|
|
|
|
|
|
def execute():
|
2014-12-23 17:38:33 +05:30
|
|
|
frappe.reload_doc("stock", "doctype", "stock_entry")
|
2015-05-07 16:29:51 +05:30
|
|
|
if "total_fixed_cost" in frappe.db.get_table_columns("Stock Entry"):
|
|
|
|
frappe.db.sql("update `tabStock Entry` set additional_operating_cost = total_fixed_cost")
|