10 lines
246 B
Python
10 lines
246 B
Python
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
from odoo import fields, models
|
|
|
|
|
|
class ResBank(models.Model):
|
|
_name = 'res.bank'
|
|
_inherit = 'res.bank'
|
|
|
|
l10n_cl_sbif_code = fields.Char('Cod. SBIF', size=10)
|