[MIG] base_usability to v14

This commit is contained in:
Alexis de Lattre
2020-12-01 23:38:42 +01:00
parent 9592097487
commit f3782cfa2b
18 changed files with 135 additions and 201 deletions

View File

@@ -0,0 +1,14 @@
# Copyright 2015-2020 Akretion France (http://www.akretion.com/)
# @author: Alexis de Lattre <alexis.delattre@akretion.com>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from odoo import fields, models
class ResPartnerBank(models.Model):
_inherit = 'res.partner.bank'
# In the 'base' module, they didn't put any string, so the bank name is
# displayed as 'Name', which the string of the related field it
# points to
bank_name = fields.Char(string='Bank Name')