diff --git a/account_payment_mode/models/__init__.py b/account_payment_mode/models/__init__.py index e59abce71..6cd633aba 100644 --- a/account_payment_mode/models/__init__.py +++ b/account_payment_mode/models/__init__.py @@ -2,4 +2,3 @@ from . import account_payment_method from . import account_payment_mode from . import account_journal -from . import res_partner_bank diff --git a/account_payment_mode/models/res_partner_bank.py b/account_payment_mode/models/res_partner_bank.py deleted file mode 100644 index f49c839c0..000000000 --- a/account_payment_mode/models/res_partner_bank.py +++ /dev/null @@ -1,16 +0,0 @@ -# © 2016 Akretion (Alexis de Lattre ) -# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). - -from odoo import models, fields - - -class ResPartnerBank(models.Model): - _inherit = 'res.partner.bank' - - # I change the label of the field in the view. - # I would also like to store the field to do easy groupby and search, - # but it's not possible because the compute method is inherited - # in base_iban (and maybe in other modules) and, when the field is - # initially computed+stored, it doesn't take into account the - # inherits of the method that compute this field - acc_type = fields.Char(string='Bank Account Type')