28 lines
957 B
Python
28 lines
957 B
Python
# Copyright 2024 ForgeFlow
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
|
|
|
from odoo import models
|
|
|
|
|
|
class AccountBankStatementLine(models.Model):
|
|
_inherit = "account.bank.statement.line"
|
|
|
|
# TODO: Delete if merged https://github.com/odoo/odoo/pull/182497
|
|
def _compute_running_balance(self):
|
|
# We need to set value to all records because super() does not do it using sql.
|
|
for item in self:
|
|
item.running_balance = item.running_balance
|
|
return super()._compute_running_balance()
|
|
|
|
def action_open_journal_entry(self):
|
|
self.ensure_one()
|
|
if not self:
|
|
return {}
|
|
result = self.env["ir.actions.act_window"]._for_xml_id(
|
|
"account.action_move_line_form"
|
|
)
|
|
res = self.env.ref("account.view_move_form", False)
|
|
result["views"] = [(res and res.id or False, "form")]
|
|
result["res_id"] = self.move_id.id
|
|
return result
|