Skip to content

Commit

Permalink
Merge PR OCA#275 into 14.0
Browse files Browse the repository at this point in the history
Signed-off-by sergiocorato
  • Loading branch information
OCA-git-bot committed Oct 31, 2023
2 parents 3ebea64 + dc80b4c commit f857bbe
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="utf-8" ?>
<odoo>
<record id="fiscalyear_closing_multi_company_rule" model="ir.rule">
<field
name="domain_force"
>['|', ('company_id', '=', False), ('company_id', 'in', company_ids)]</field>
</record>

<record id="fiscalyear_closing_template_multi_company_rule" model="ir.rule">
<field
name="domain_force"
>['|', ('company_id', '=', False), ('company_id', 'in', company_ids)]</field>
</record>
</odoo>
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
from openupgradelib import openupgrade


@openupgrade.migrate()
def migrate(env, version):

openupgrade.load_data(
env.cr,
"account_fiscal_year_closing",
"migrations/14.0.1.0.3/noupdate_changes.xml",
)
4 changes: 4 additions & 0 deletions account_fiscal_year_closing/readme/CONTRIBUTORS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,7 @@
* `CorporateHub <https://corporatehub.eu/>`__

* Alexey Pelykh <alexey.pelykh@corphub.eu>

* `Ooops <https://ooops404.com>`__

* Giovanni Serra <giovanni@gslab.it>

0 comments on commit f857bbe

Please sign in to comment.