New version (2.0.0) released, compatible with Espo 6.0.6 https://github.com/telecastg/esignat...ts-for-espocrm
Announcement
Collapse
No announcement yet.
Tutorial - How to add electronic signature capability to espoCRM
Collapse
X
-
Espo Version 6.0.8
eSignature version 2.0.0
everything works perfectly, until the moment the signature is printed
place holder @@sig[{{eSignature}}]/sig@@ displays SVG code, not the image itself
code "<img src="{{field-name}}">" - does not work
Comment
-
Originally posted by alexisc View PostEspo Version 6.0.8
eSignature version 2.0.0
everything works perfectly, until the moment the signature is printed
place holder @@sig[{{eSignature}}]/sig@@ displays SVG code, not the image itself
Suggestions:
1) Try: @@sig[eSignature]/sig@@ (no double bracket)
2) Make sure that you are using the "print" icon at the top of the document to print and not the Print to Pdf Espo option
Originally posted by alexisc View Postcode "<img src="{{field-name}}">" - does not workLast edited by telecastg; 01-12-2021, 07:55 PM.
Comment
-
2) Make sure that you are using the "print" icon at the top of the document to print and not the Print to Pdf Espo option
this is my mistake, it looks like eSignature only works for "Work Order". I am trying to use it on an existing Entity - "Contact" and "Opportunity". I do not have "Display eSignature Document" in the menu, only "Print to PDF"
if there is a solution to how to connect "eSignature", I will be very grateful for the hint
Comment
-
Originally posted by item View PostHello,
you must add eSignature field to your entity. it's a new type of field like varchar, integer, float, image,....
go admin section, entity manager, contact, add field "eSignature".
same for opportuinity.
I create a new print layout in pdf and add a signature placeholder there, it doesn't workLast edited by alexisc; 01-26-2021, 09:31 AM.
Comment
-
Looks like you did not complete this step in the tutorial:
6) To accomplish the above for the Work Order entity, it is necessary first to modify the Work Order clientDefs settings file to let Espo know that the extension's custom record detail view must be used to render the Work Order in detail display:
custom/Espo/Custom/Resources/metadata/clientDefs/WorkOrder.json
Code:
"recordViews": { "detail": "esignature:views/record/detail" }
Create if it doesn't exist a custom clientDefs json file for your entity and specify the view "esignature:views/record/detail" as the view to use to render your entity in detail mode.
For example, if your entity name is "Client" then create custom/Espo/Resources/metadata/clientDefs/Client.json and enter:Code:{ "recordViews": { "detail": "esignature:views/record/detail" } }
Last edited by telecastg; 01-14-2021, 08:54 PM.
- Likes 1
Comment
-
Originally posted by telecastg View PostLooks like you did not complete this step in the tutorial:
Code:{ "recordViews": { "detail": "esignature:views/record/detail" } }
But
place holder @@sig[{{eSignature}}]/sig@@ displays SVG code,
place holder @@sig[eSignature]/sig@@ (no double bracket), does not work
Comment
-
I don't know why the SVG code is being rendered instead of the image in the document, as I mentioned we have this extension installed working perfectly with Chrome and Edge browsers.
Looking at the picture that you sent, I don't even see the placeholders being replaced in the rendered document
Is the eSignature field displaying properly in your entity's detail view ?
If so, the issue might have something to do with your template. I can't help with code debugging but what I can do is share here screen shots of a detail view, a document vie and the template code for an eSignature field that we user for our "WorkOrder" entity and hopefully you will be able to figure out what is not working for you.
Entity Detail View
Document View
Template code
Another possible answer might have something to do with your server settings (I got that from a search at stokoverflow.com https://stackoverflow.com/questions/...stead-of-image ) but I don't know much about server settings so I can't give more more info about it.
- Likes 1
Comment
-
I checked again, the reason why SVG code is being rendered, instead of the image, is that you are using the double brackets so Espo (Handlebars) engine identifies the field content as text and renders its contents accordingly.
You must use the custom placeholders WITHOUT the handlebar brackets just the field name inside the placeholders.
As to why the image is not being rendered in the document view when the correct notation is used I still suspect that it has something to do with your template code since the image renders perfectly in detail view, so it's not a browser issue. Hope this helpsLast edited by telecastg; 01-16-2021, 04:46 PM.
-
-
You're welcome.
Another question: how to resize, the signature is too large and takes up half the page, needs to be placed in a specific location with a predefined size
Notice how in our template the esignature is wrapped in a <div class="col-md-4"></div> element. (If you are not familiar with Bootstrap notation I suggest that you get familiar with it, there's a ton of documentation online.)
The advantage of using direct rendering without TCPDF is that the document structure and styles will be rendered by your browser so you can use all CSS styling that you wish.Last edited by telecastg; 01-18-2021, 07:59 PM.
- Likes 1
Comment
-
It certainly does work for phone; I sometime use it (rarely though since phone is quite small). It does have one weakness I feel while using it, my web browser scroll as I get people to sign the documents.
There doesn't seem to be a way to force my web browser to lock scroll until the signing is finish.
Phone and tablet essential same thing, one just bigger screen so I'm sure if it work on phone it will work on bigger "phone".
Comment
-
Hi esforim ,
Thanks for the help. Can you please clarify when you mention "It does have one weakness I feel while using it, my web browser scroll as I get people to sign the documents."?
What web browser do you use in your phone? Does this scrolling issue affects the user from signing?
Thanks for your time.
Comment
Comment