8 lines
188 B
Python
8 lines
188 B
Python
# -*- coding: utf-8 -*-
|
|
from odoo import fields, models
|
|
|
|
class SurveySurvey(models.Model):
|
|
_inherit = 'survey.survey'
|
|
|
|
is_disc_test = fields.Boolean("Is DISC Test", default=False)
|