mirror of
https://github.com/OCA/account-financial-tools.git
synced 2025-02-02 12:47:26 +02:00
10 lines
314 B
Python
10 lines
314 B
Python
# Copyright 2021 Trey, Kilobytes de Soluciones - Vicent Cubells
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
from odoo import models
|
|
|
|
|
|
class AccountBankStatement(models.Model):
|
|
_inherit = ["account.bank.statement", "mail.thread", "mail.activity.mixin"]
|
|
_name = "account.bank.statement"
|