mirror of
https://github.com/bringout/oca-report.git
synced 2026-04-18 01:42:06 +02:00
10 lines
326 B
Python
10 lines
326 B
Python
# Copyright 2023 ACSONE SA/NV (<http://acsone.eu>)
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
|
|
|
import odoo
|
|
from odoo import api
|
|
|
|
|
|
def migrate(cr, installed_version):
|
|
env = api.Environment(cr, odoo.SUPERUSER_ID, {})
|
|
env["mis.report.instance.period"].search([])._compute_source_aml_model_id()
|