12 lines
207 B
Python
12 lines
207 B
Python
from odoo import fields, models
|
|
|
|
|
|
class Certificate(models.Model):
|
|
_inherit = 'certificate.certificate'
|
|
|
|
scope = fields.Selection(
|
|
selection_add=[
|
|
('sii', 'SII')
|
|
],
|
|
)
|