mirror of
https://gitlab.com/hibou-io/hibou-odoo/suite.git
synced 2025-01-20 12:37:31 +02:00
8 lines
162 B
Python
8 lines
162 B
Python
from odoo import models, fields
|
|
|
|
|
|
class ExceptionRule(models.Model):
|
|
_inherit = 'exception.rule'
|
|
|
|
allow_user_ignore = fields.Boolean('Allow User Ignore')
|