16 lines
567 B
Python
16 lines
567 B
Python
|
# Copyright (c) 2017, Frappe and Contributors
|
||
|
# License: GNU General Public License v3. See license.txt
|
||
|
|
||
|
from __future__ import unicode_literals
|
||
|
import frappe
|
||
|
from erpnext.setup.doctype.company.company import update_company_current_month_sales, update_company_monthly_sales
|
||
|
|
||
|
def execute():
|
||
|
'''Update company monthly sales history based on sales invoices'''
|
||
|
frappe.reload_doctype("Company")
|
||
|
companies = [d['name'] for d in frappe.get_list("Company")]
|
||
|
|
||
|
for company in companies:
|
||
|
update_company_current_month_sales(company)
|
||
|
update_company_monthly_sales(company)
|