I have created html field in the form view. Then user will add content in that field. The content will have some field variables of form view same as we declare in email template. Then user will print pdf report and that report should display values instead of the variables.
-Example Html field content :
Hello ${object.employee_id.name},
Your amount ${object.employee_id.amount}
____________________
- PDF Report should contain:
Hello Marks,
Your amount 500
How can I achieve this? Thanks in advance.
the problem is not to print the Html field
it is to display the variables that is in this field Html
as the example