Open EdvinasBaranauskas opened 1 month ago
Hello, sorry for the delay
The extension comes prepared so that the necessary dependencies are automatically added to translate the data, when you write
{{img_data customerSignature}}
either
{{sign_date customerSignature}}
You are making a call to a created function or Helper (espocrm info: https://docs.espocrm.com/development/template-custom-helper/)
functions in the extension code
It should not fail if it has been installed correctly and the data is saved in the database.
Could you share with me the PDF template you have made and the combinations you have tried to make so I can help you better?
You have to keep in mind that the pdf engine you should use is dompdf
Hello, I am using Espom CRM v. 8.0.6. Trying out your extention.
What seems that no signature is embedded in the pdf. In the template i tried multiple things to embed it with (taken from your documentation/readme file). In the API (and database) i see that the signature is saved as base64 encoded image. PDF does not support such encoding. I assume the extention should process such data. But either i am getting the base64 data printed in pdf if i simply do
{{img_data customerSignature}}
or{{sign_date customerSignature}}
Or i am getting nothing (no image nothing) while doing<img src='{{ img_data customerSignature}}'>
in a code view.Wondering if this could be caused by my epsocrm version or the extention.