hi everyone i just want to ask if it is possible to add some text in sales invoice like on the picture below.
Can anyone teach me how to add my code??
Hi @cpsolution,
to my understanding, the report builder print format is not customisable (status v10). An option might be to create the report that you have in mind as a separate report, make it part of a custom app (so that you can place files in the report folder) and then add a (report name).html file in the reports folder with something like this in the html
{% for ( var i = 0; i < data.length; i++ ) { %}
<p>{%=data[i].subject%} ({%=data[i].starts_on%} - {%=data[i].ends_on%})</p>
{% } %}
<table>
<tr><td>Prepared by</td><td>Checked by</td><td>Approved by</td></tr>
</table>
Hope this helps.
Thank you Very Much sir…