Skip to content

Commit

Permalink
[FIX] account_statement_import_ofx_invert_type: running_balance
Browse files Browse the repository at this point in the history
  • Loading branch information
Tiago370 committed Jan 9, 2025
1 parent 78f8ed7 commit d6a4f98
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
from . import account_journal
from . import account_bank_statement_line
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Copyright 2024 KMEE
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).

from odoo import fields, models


class AccountBankStatementLine(models.Model):

_inherit = "account.bank.statement.line"

running_balance = fields.Monetary(
compute="_compute_running_balance",
store=True,
)

0 comments on commit d6a4f98

Please sign in to comment.