blob: 611c14e17d10642fc9d6317f3d40405b1bf68584 (
plain)
1
2
3
4
5
6
7
8
9
|
# 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)
|