To create custom advanced templates for pick tickets:
- Using the Administrator role, go to Customization > Forms > Advanced PDF/HTML Templates.
- From the Advanced PDF/HTML Templates list, click Customize for Standard Pick Ticket/Pick Report PDF/HTML Template.
- If you want to display standard or custom fields from a pick ticket saved search, do the following:
- On the New Element subtab, you can find the section or table where you want to display the field.
- (The pick ticket template includes the tables for single and multi-order picking types. You can use the Source Code editor to add or remove elements from the table for one or both picking types).
- On the upper-right side of the page, click the Source Code toggle.
- On the Source Code editor, configure the internal ID of the field in a new or existing section or table column.
For example, you want to display a custom field after the Pick Task # column of the table for single order pick tickets. You can add the table header and table data tags and set the internal ID of the field as follows:
- Table header – After the line for the pick task number column heading (Line 175 by default), you can copy and add a
<th>tag with its default attributes. Set the internal ID of the custom field for the label. <th class="thStyleOrderItem" style="width:8%">${lineitem.samplecustomfieldID@label}</th>- Table data – After the line for the pick task number data (Line 200 by default), you can copy and add the corresponding
<td>tag with its default attributes. Set the internal ID of the custom field for the cell or data. <td align="center" class="tdStyle" line-height="100%" style="width:6%" vertical-align="middle">${lineitem.samplecustomfieldID}</td>
e. For each tag, you can modify attribute values, like width or vertical alignment, fit the data within the columns of a table or margins of a page.
4. If you want to set your custom template as the preferred template for custom wave forms, do the following:
- Click Template Setup.
- On the Template Setup popup window, check the Template is Preferred box.
- If you want to replace the template name, in the Title field, enter the template name.
- Click Save.
5.Click Save.
After you create your custom advanced print template, you can assign it to a custom wave form. Your wave form can use the custom advanced print template to generate pick tickets.