account-financial-reporting/account_financial_report/models/account_move_line.py

71 lines
2.9 KiB
Python
Raw Permalink Normal View History

2024-05-03 08:32:39 +00:00
# Copyright 2019 ACSONE SA/NV (<http://acsone.eu>)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).-
from collections import defaultdict
from flectra import api, fields, models
2024-10-01 05:15:34 +00:00
from flectra.fields import Command
2024-05-03 08:32:39 +00:00
class AccountMoveLine(models.Model):
_inherit = "account.move.line"
analytic_account_ids = fields.Many2many(
"account.analytic.account", compute="_compute_analytic_account_ids", store=True
)
@api.depends("analytic_distribution")
def _compute_analytic_account_ids(self):
# Prefetch all involved analytic accounts
2024-10-01 05:15:34 +00:00
batch_by_analytic_account = defaultdict(lambda: self.env["account.move.line"])
for record in self.filtered("analytic_distribution"):
# NB: ``analytic_distribution`` is a JSON field where keys can be either
# 'account.id' or 'account.id,account.id'
# Eg: https://github.com/flectra/flectra/blob/8479b4e/addons/sale/models/account_move_line.py#L158
for key in record.analytic_distribution:
for account_id in map(int, key.split(",")):
batch_by_analytic_account[account_id] += record
2024-05-03 08:32:39 +00:00
existing_account_ids = set(
self.env["account.analytic.account"]
2024-10-01 05:15:34 +00:00
.browse(batch_by_analytic_account)
2024-05-03 08:32:39 +00:00
.exists()
.ids
)
# Store them
2024-10-01 05:15:34 +00:00
self.analytic_account_ids = [Command.clear()]
for account_id, records in batch_by_analytic_account.items():
if account_id in existing_account_ids:
records.analytic_account_ids = [Command.link(account_id)]
2024-05-03 08:32:39 +00:00
def init(self):
"""
The join between accounts_partners subquery and account_move_line
can be heavy to compute on big databases.
Join sample:
JOIN
account_move_line ml
ON ap.account_id = ml.account_id
AND ml.date < '2018-12-30'
AND ap.partner_id = ml.partner_id
AND ap.include_initial_balance = TRUE
By adding the following index, performances are strongly increased.
:return:
"""
self._cr.execute(
"SELECT indexname FROM pg_indexes WHERE indexname = " "%s",
("account_move_line_account_id_partner_id_index",),
)
if not self._cr.fetchone():
self._cr.execute(
"""
CREATE INDEX account_move_line_account_id_partner_id_index
ON account_move_line (account_id, partner_id)"""
)
@api.model
def search_count(self, domain, limit=None):
# In Big DataBase every time you change the domain widget this method
# takes a lot of time. This improves performance
if self.env.context.get("skip_search_count"):
return 0
return super().search_count(domain, limit=limit)