This question has been flagged
2 Replies
3179 Views

i want to generate pdf report based on dynamic field values in screen. based on these values i want generated pdf report with print button on screen.

Avatar
Discard
Best Answer

Hi, You can use rml report. You can able to call field values and methods in your py file...

Avatar
Discard
Best Answer

u can use like this


<t t-foreach="docs" t-as="o">

<p t-if="o.somefield == 'value' ">

<t t-call="module.qweb_template_name">

</t>

</p>

Avatar
Discard