12 lines
380 B
Python
12 lines
380 B
Python
# Copyright 2024 Quartile (https://www.quartile.co)
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
|
|
|
from odoo import SUPERUSER_ID, api
|
|
|
|
|
|
def post_init_hook(cr, registry):
|
|
env = api.Environment(cr, SUPERUSER_ID, {})
|
|
templates = env["xlsx.template"].search([("export_ids", "!=", False)])
|
|
for template in templates:
|
|
template.add_export_action()
|