Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

To access QuoteConfigurator item level outputs in the template 'quote_creationWorkflowStepAssigned' for a document creation workflow:

  • Access the quote object in the template.
  • Access quote.lineItems.
  • Iterate through it and access 'outputs'.
  • Iterate through it and display the results.
<tr>
	<th align=left><b>Last Approvers</b></th>
	<td align=right>$workflowHistory.steps:{ step |

		$if(step.approved)$
		$step.executedByUsers: {user|
		$user.lastName$, $user.firstName$ [$user.loginName$]

		}$ >> $step.uniqueName$ >> <b>APPROVED</b> $step.approvalDate$<br/>
		$endif$

		$if(step.denied)$
		$step.executedByUsers: {user|
		$user.lastName$, $user.firstName$ [$user.loginName$]

		}$ >> $step.uniqueName$ >> <b>DENIED</b> $step.approvalDate$<br/>
		$endif$ 
	}$</td>
</tr>


  • No labels