Merge pull request #176 from anandpdoshi/master

Patch to enable income year to date summary in email digest
This commit is contained in:
Anand Doshi 2011-12-22 04:48:57 -08:00
commit 27b05eac7a

View File

@ -0,0 +1,10 @@
import webnotes
def execute():
companies_list = webnotes.conn.sql("SELECT company_name FROM `tabCompany`", as_list=1)
for company in companies_list:
if company and company[0]:
edigest = Document('Email Digest', "Default Weekly Digest - " + company[0])
if edigest:
edigest.income_year_to_date = 1
edigest.save()