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.

17 lines
566 B

  1. from odoo import models, fields, api, _
  2. from odoo.exceptions import UserError
  3. class SurveySurvey(models.Model):
  4. _inherit = "survey.survey"
  5. description_done_pass = fields.Html(
  6. string="Passed end message",
  7. translate=True,
  8. help="This message will be displayed when survey is completed and the user passed the test.",
  9. )
  10. description_done_fail = fields.Html(
  11. string="Failed end message",
  12. translate=True,
  13. help="This message will be displayed when survey is completed and the user failed the test.",
  14. )