Skip to main content
Solved

Different Letterhead on Forms by Order Type

  • 17 March 2022
  • 1 reply
  • 77 views

Is it possible to have different letterhead populate on forms (Sales Order Confirmation, Shipment Confirmation) based on order type? We are acquiring a new brand and would like to avoid having a separate branch but would still like to have the ability to have the branding different based on the order. Is this possible? 

1 reply

Userlevel 6
Badge +5

 Yes, you would just need to edit the reports in the Report Designer and add the necessary conditions.

For instance if you want to change the logo on the image component you would need to change the source value depending on the order type. 

NoteFiles will grab the first image attached to the Order Type

 

=IIf( [SOOrder.OrderType] = 'SO', [SOOrderType.NoteFiles], [Branch.OrganizationLogoNameReport])

 

Reply