1
0
forked from Mapan/odoo17e
odoo17e-kedaikipas58/addons/sign_itsme/models/sign_item_role.py
2024-12-10 09:04:09 +07:00

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'})