Skip to Content
Menu
This question has been flagged
2 Replies
4664 Views

I want to display signature box at the last page of QWEB report. I am using ver 13.

Any idea will be highly appreciated!

Thanks.

Avatar
Discard
Best Answer

Hi,

Please refer this link

https://www.odoo.com/forum/help-1/hello-everyone-how-to-display-binary-filed-in-in-qweb-reports-159757

Thanks

Muhammed Ali M - iWesabe

Avatar
Discard
Best Answer

In odoo 13 they added signature widget. We can have binary field and use signature widget like below:

In model:

signature = fields.Binary(string='Signature')

In view:

<field name="signature" widget="signature_stu"/>


After capturing the signature we can use it in the report template.

Avatar
Discard