Odoo modules related to surveys
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
173 B

  1. from odoo import models, fields
  2. class SurveyLabelValue(models.Model):
  3. _name = 'survey.label.value'
  4. _description = "Valeur"
  5. name = fields.Char(strring="Name")