mirror of
https://gitlab.com/flectra-community/account-financial-reporting.git
synced 2024-11-22 13:42:07 +00:00
54 lines
1.9 KiB
Python
54 lines
1.9 KiB
Python
# Copyright 2016 Antonio Espinosa <antonio.espinosa@tecnativa.com>
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
from flectra import _, api, fields, models
|
|
|
|
|
|
class AccountMove(models.Model):
|
|
_inherit = "account.move"
|
|
|
|
@api.model
|
|
def _selection_financial_type(self):
|
|
return [
|
|
("other", _("Other")),
|
|
("liquidity", _("Liquidity")),
|
|
("receivable", _("Receivable")),
|
|
("receivable_refund", _("Receivable refund")),
|
|
("payable", _("Payable")),
|
|
("payable_refund", _("Payable refund")),
|
|
]
|
|
|
|
financial_type = fields.Selection(
|
|
selection="_selection_financial_type",
|
|
compute="_compute_financial_type",
|
|
store=True,
|
|
readonly=True,
|
|
)
|
|
|
|
@api.depends("line_ids.account_id.account_type", "line_ids.balance")
|
|
def _compute_financial_type(self):
|
|
def _balance_get(line_ids, account_type):
|
|
return sum(
|
|
line_ids.filtered(
|
|
lambda x: x.account_id.account_type == account_type
|
|
).mapped("balance")
|
|
)
|
|
|
|
for move in self:
|
|
account_types = move.line_ids.mapped("account_id.account_type")
|
|
if (
|
|
"asset_cash" in account_types
|
|
or "liability_credit_card" in account_types
|
|
):
|
|
move.financial_type = "liquidity"
|
|
elif "liability_payable" in account_types:
|
|
balance = _balance_get(move.line_ids, "liability_payable")
|
|
move.financial_type = "payable" if balance < 0 else "payable_refund"
|
|
elif "asset_receivable" in account_types:
|
|
balance = _balance_get(move.line_ids, "asset_receivable")
|
|
move.financial_type = (
|
|
"receivable" if balance > 0 else "receivable_refund"
|
|
)
|
|
else:
|
|
move.financial_type = "other"
|