blob: 314a859718c9391dd5e2e07717e1f307964d42db (
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 IrSequence(models.Model):
_inherit = 'ir.sequence'
l10n_latam_document_type_id = fields.Many2one('l10n_latam.document.type', 'Document Type') #still needed for l10n_cl until next saas
|