16 lines
487 B
Python
16 lines
487 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||
|
|
||
|
from . import models
|
||
|
from . import controllers
|
||
|
from . import report
|
||
|
from . import wizard
|
||
|
from . import populate
|
||
|
|
||
|
|
||
|
def _synchronize_cron(env):
|
||
|
send_invoice_cron = env.ref('sale.send_invoice_cron', raise_if_not_found=False)
|
||
|
if send_invoice_cron:
|
||
|
config = env['ir.config_parameter'].get_param('sale.automatic_invoice', False)
|
||
|
send_invoice_cron.active = bool(config)
|