Public release from ruodoo-project: 19.0 - 2026-05-10 21:19:01 UTC

This commit is contained in:
CI Publish Bot
2026-05-10 21:19:11 +00:00
commit cbf9e6e6d6
1213 changed files with 183945 additions and 0 deletions

View File

@ -0,0 +1,2 @@
from . import account_account
from . import ir_actions_report

View File

@ -0,0 +1,7 @@
from odoo import fields, models, _
class AccountAccount(models.Model):
_inherit = "account.account"
centralized = fields.Boolean(_("Централизованно"))

View File

@ -0,0 +1,10 @@
from odoo import api, models
class IrActionsReport(models.Model):
_inherit = "ir.actions.report"
@api.model
def _prepare_account_financial_report_context(self, data):
lang = data and data.get("account_financial_report_lang") or ""
return dict(self.env.context or {}, lang=lang) if lang else False