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.
14 lines
434 B
14 lines
434 B
from odoo import models, fields, api
|
|
|
|
|
|
class SurveySurvey(models.Model):
|
|
_inherit = 'survey.survey'
|
|
|
|
@api.model
|
|
def next_page(self, user_input, page_id, go_back=False):
|
|
res = super(SurveySurvey, self).next_page(user_input, page_id, go_back)
|
|
if not user_input.date_start and page_id == 0:
|
|
user_input.write({
|
|
'date_start': fields.Datetime.now(),
|
|
})
|
|
return res
|