12 lines
316 B
Python
12 lines
316 B
Python
# -*- coding: utf-8 -*-
|
|
# Copyright 2021 Joan Marín <Github@JoanMarin>
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
from odoo import fields, models, _
|
|
|
|
|
|
class IrSequence(models.Model):
|
|
_inherit = 'ir.sequence'
|
|
|
|
dian_type = fields.Selection(selection_add=[('e-payroll', _('E-Payroll'))])
|