oca-technical/odoo-bringout-oca-management-system-mgmtsystem_review_survey/mgmtsystem_review_survey/report/review.xml
2025-08-29 15:43:03 +02:00

33 lines
1.3 KiB
XML

<?xml version="1.0" encoding="utf-8" ?>
<odoo>
<template id="review_report" inherit_id="mgmtsystem_review.review_report">
<t t-foreach="doc.line_ids" position="before">
<h2>
<strong>Satisfaction Survey Answers:</strong>
</h2>
<t t-foreach="doc.response_ids" t-as="response">
<h3>
<strong>
<span t-field="response.survey_id.title" />
</strong>
</h3>
<ul style="padding-left:15px">
<t t-foreach="response.user_input_line_ids" t-as="user_input">
<t
t-if="user_input.answer_type and user_input.answer_type!='suggestion'"
>
<t
t-set="user_input_key"
t-value="'value_'+str(user_input.answer_type)"
/>
<li><span t-field="user_input.question_id.title" />:
<span t-esc="user_input[user_input_key]" />
</li>
</t>
</t>
</ul>
</t>
</t>
</template>
</odoo>