Reputation: 13
Good day all,
Just a question, we are a new company that have started using NetSuite. When we was original sold the product we was promised the world but ... that hasn't really happened.
My question seems an easy one but I cant get my head around it, is there any way images can be added to sales orders that will be able to be seen on purchase orders, delivery notes etc.
Any help would be greatly received.
Upvotes: 1
Views: 1789
Reputation: 15367
If you are willing to use the Advanced XML/PDF template option you can easily add an image to your printed/emailed documents. If you are not using a website remember the image has to be at a publicly reachable location.
In the line item section you can reference the line item's item fields like:
<td align="right" colspan="4"><img src="${item.item.storedisplaythumbnail}" /></td>
note the item.item. The first item comes from the variable name you give in the transaction's line item iteration tag. The second one must be 'item'
Upvotes: 2