Skip to content
Snippets Groups Projects
Commit 47894929 authored by dht-odoo's avatar dht-odoo
Browse files

[FIX] website_slides_survey: add context to survey_id


Before this commit when user quick create a certification,
then it will create record in survey but not with certification
equals to True. Due to which it will be excluded from domain and
we will not able to find it in survey_id in elearning.

With this commit we pass certification equals to true and scoring_type
equals to scoring_without_answers in context of survey_id. So now,
it will be not excluded in domain('certificate', '=', True) in elearning.

Task Id: 2621296

closes odoo/odoo#75318

X-original-commit: 7b2b00e0
Signed-off-by: default avatarThibault Delavallee (tde) <tde@openerp.com>
parent 0429ffaa
No related branches found
No related tags found
No related merge requests found
......@@ -8,7 +8,7 @@
<xpath expr="//field[@name='slide_type']" position="after">
<field name="survey_id"
attrs="{'invisible': [('slide_type', '!=', 'certification')], 'required': [('slide_type', '=', 'certification')]}"
domain="[('certification', '=', True)]"/>
domain="[('certification', '=', True)]" context="{'default_certification': True, 'default_scoring_type': 'scoring_without_answers'}"/>
</xpath>
</field>
</record>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment