Create a button to generate print from vendor return authorization

To create a button to generate print from vendor return authorization User event script define([],     () => {         /**          * Defines the function definition that is executed before record is loaded.          * @param {Object} scriptContext          * @param… Continue reading Create a button to generate print from vendor return authorization

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.