forked from Mapan/odoo17e
9 lines
182 B
Python
9 lines
182 B
Python
# -*- coding: utf-8 -*-
|
|
from odoo import fields, models
|
|
|
|
|
|
class Certificate(models.Model):
|
|
_inherit = 'l10n_cl.certificate'
|
|
|
|
last_rest_token = fields.Char('Last REST Token')
|