Skip to main content
Answer

Different Letterhead on Forms by Order Type

  • March 17, 2022
  • 1 reply
  • 96 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? 

Best answer by markusray17

 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])

 

1 reply

Forum|alt.badge.img+5
  • Jr Varsity II
  • Answer
  • March 17, 2022

 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])