Skip to content

Commit

Permalink
Merge pull request #94 from kmee/16.0-account_statement_import_ofx_in…
Browse files Browse the repository at this point in the history
…vert_type

[FIX] account_statement_import_ofx_invert_type: running_balance
  • Loading branch information
mileo authored Jan 9, 2025
2 parents 7230a7d + d6a4f98 commit 584fe42
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 584fe42

Please sign in to comment.