UPDATE:
please check this link https://www.espocrm.com/documentatio...-barcode-field before read this post, its new added feature, thanks for espocrm team.
I faced this request today and found a very easy trick to achieve it, it is simple but may someone find it useful,
There are several services that easily return QR image by url like this,
In the following example I am displaying both of the entity's id and name separated by comma
NOTE: you must switch the editor to the code view mode and then paste the above script
please check this link https://www.espocrm.com/documentatio...-barcode-field before read this post, its new added feature, thanks for espocrm team.
I faced this request today and found a very easy trick to achieve it, it is simple but may someone find it useful,
There are several services that easily return QR image by url like this,
In the following example I am displaying both of the entity's id and name separated by comma
HTML Code:
<img src="https://api.qrserver.com/v1/create-qr-code/?size=150x150&data={{id}},{{name}}" height="150px">
Comment