2013-08-05 14:59:54 +05:30
|
|
|
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd.
|
|
|
|
# License: GNU General Public License v3. See license.txt
|
2012-02-23 12:35:32 +05:30
|
|
|
|
2012-07-19 13:40:31 +05:30
|
|
|
from __future__ import unicode_literals
|
2012-02-23 11:46:28 +05:30
|
|
|
"""will be called by scheduler"""
|
|
|
|
|
|
|
|
import webnotes
|
2012-02-28 11:31:46 +05:30
|
|
|
from webnotes.utils import scheduler
|
2012-02-23 11:46:28 +05:30
|
|
|
|
|
|
|
def execute_all():
|
2012-02-28 11:31:46 +05:30
|
|
|
"""
|
|
|
|
* get support email
|
|
|
|
* recurring invoice
|
|
|
|
"""
|
2012-08-02 18:03:12 +05:30
|
|
|
# pull emails
|
2013-01-15 14:17:31 +05:30
|
|
|
from support.doctype.support_ticket.get_support_mails import get_support_mails
|
2012-08-02 18:03:12 +05:30
|
|
|
run_fn(get_support_mails)
|
2013-01-15 17:23:23 +05:30
|
|
|
|
|
|
|
from hr.doctype.job_applicant.get_job_applications import get_job_applications
|
|
|
|
run_fn(get_job_applications)
|
2013-01-16 11:34:26 +05:30
|
|
|
|
|
|
|
from selling.doctype.lead.get_leads import get_leads
|
2013-01-16 12:36:07 +05:30
|
|
|
run_fn(get_leads)
|
2013-01-16 11:34:26 +05:30
|
|
|
|
2012-08-02 18:03:12 +05:30
|
|
|
from webnotes.utils.email_lib.bulk import flush
|
|
|
|
run_fn(flush)
|
2012-02-23 11:46:28 +05:30
|
|
|
|
|
|
|
def execute_daily():
|
2013-07-26 16:05:59 +05:30
|
|
|
# event reminders
|
|
|
|
from core.doctype.event.event import send_event_digest
|
|
|
|
run_fn(send_event_digest)
|
|
|
|
|
2012-08-02 18:03:12 +05:30
|
|
|
# email digest
|
|
|
|
from setup.doctype.email_digest.email_digest import send
|
|
|
|
run_fn(send)
|
|
|
|
|
2012-08-06 14:19:11 +05:30
|
|
|
# run recurring invoices
|
2012-11-30 15:11:12 +05:30
|
|
|
from accounts.doctype.sales_invoice.sales_invoice import manage_recurring_invoices
|
2012-08-06 14:19:11 +05:30
|
|
|
run_fn(manage_recurring_invoices)
|
|
|
|
|
2012-08-02 18:03:12 +05:30
|
|
|
# send bulk emails
|
2012-08-03 14:15:25 +05:30
|
|
|
from webnotes.utils.email_lib.bulk import clear_outbox
|
2012-08-02 18:03:12 +05:30
|
|
|
run_fn(clear_outbox)
|
2012-02-28 11:31:46 +05:30
|
|
|
|
2013-03-07 12:25:21 +05:30
|
|
|
# daily backup
|
2013-03-07 12:48:47 +05:30
|
|
|
from setup.doctype.backup_manager.backup_manager import take_backups_daily
|
2013-06-17 11:57:04 +05:30
|
|
|
run_fn(take_backups_daily)
|
2013-03-07 12:25:21 +05:30
|
|
|
|
2013-05-22 16:19:10 +05:30
|
|
|
# check reorder level
|
|
|
|
from stock.utils import reorder_item
|
|
|
|
run_fn(reorder_item)
|
2013-08-07 10:35:11 +05:30
|
|
|
|
|
|
|
# scheduler error
|
|
|
|
scheduler.report_errors()
|
2013-05-22 16:19:10 +05:30
|
|
|
|
2012-02-28 11:31:46 +05:30
|
|
|
def execute_weekly():
|
2013-03-07 12:48:47 +05:30
|
|
|
from setup.doctype.backup_manager.backup_manager import take_backups_weekly
|
2013-06-17 11:57:04 +05:30
|
|
|
run_fn(take_backups_weekly)
|
2012-02-28 11:31:46 +05:30
|
|
|
|
|
|
|
def execute_monthly():
|
|
|
|
pass
|
|
|
|
|
|
|
|
def execute_hourly():
|
|
|
|
pass
|
2012-08-02 18:03:12 +05:30
|
|
|
|
|
|
|
def run_fn(fn):
|
|
|
|
try:
|
|
|
|
fn()
|
|
|
|
except Exception, e:
|
|
|
|
scheduler.log(fn.func_name)
|