Hello all,
I am using v15. In the survey module, i want only the questions of the current record questions in an another Many2one field. How can i achieve it. Here is my code:
class SurveyQuestion(models.Model):
_name = 'survey.question.question'
survey = fields.Many2one('survey.survey')
question = fields.Many2one('survey.question')
Thanks in regards.