Display SO Item Table in Customer Deposit PDF.

Currently, the customer deposit standard print doesn’t provide a direct connection to SO and print item table in Advanced PDF template. SOLUTION Create a UE script in customer deposit and create a custom hidden field to store the SO item data and fetch this data in advanced pdf template and print the table And on… Continue reading Display SO Item Table in Customer Deposit PDF.

Dynamically Printing the Currency Symbol Depending on the Total

When using the Standard Advanced PDF/HTML Template the currency will always print the US Dollar sign. applying this changes will print the correct symbol of the currency on the total. Solution Navigate to Customization > Forms > Advanced PDF/HTML Template Click Edit beside the Preferred Customer Payment PDF/HTML Template Top Right Corner: Toggle Source Code Add the code below: Click Save

Add QR Code in Advanced PDF Template

codetype = qrcode Sample – <barcode codetype=”qrcode” height=”100px” showtext=”true” value=”Company Name:${subsidiary.name};VAT Number:${record.vatregnum};VAT Amount:${record.taxtotal};Grand Total:${record.total}”/> The data in the “Value” part will display when scanning the QR code. We can also give static values to the QR Code.

Remove a part of String in Advanced PDF template

These are the built-ins for the Advanced PDf template 1. Keep afterRemoves the part of the string that is not after the first occurrence of the given substring. Ex: ${item.employeefullname?keep_after(” “)} – This removes the string before the first occurrence of “space”. That is if the employee’s name is “E170 John Mathew” then the result… Continue reading Remove a part of String in Advanced PDF template