mirror of
https://github.com/bringout/oca-ocb-l10n_americas.git
synced 2026-04-26 18:31:58 +02:00
9 lines
246 B
Python
9 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)
|