On Fri, Apr 26, 2013 at 2:57 PM, Marko Cupać <[email protected]> wrote:
> Is it possible (maybe by help of TransactionBatchStage) to include text > of original request in owner change template, similar to including last > comment on ticket resolve? > > You don't need batch stage for that. You just need first transaction of type Create. ... my $txns = $ticket->Transactions; $txns->Limit( FIELD => 'Type', VALUE => 'Create' ); my $txn = $txns->First; ... -- > Marko Cupać > -- Best regards, Ruslan.
