forked from Mapan/odoo17e
12 lines
323 B
Python
12 lines
323 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import fields, models
|
|
|
|
class SignItemParty(models.Model):
|
|
_inherit = "sign.item.role"
|
|
|
|
auth_method = fields.Selection(selection_add=[
|
|
('itsme', 'Via itsme®')
|
|
], ondelete={'itsme': 'cascade'})
|