Number of Tickets in Acknowledgement

Hi,

Is there anyway to get the number of tickets a customer has purchased in an acknowledgement letter?

The type of sentance were trying to get is:

Thank you for purchasing 50 tickets at £1000, the details of which are shown below.

Thanks!

  • That’s how I did similar calculations :

    <xsl:variable name="total" select="sum(//GetOrderDetailsInfoResults/SubLineItem[li_seq_no=$liNo]/due_amt)" />

      <xsl:variable name="totalseats" select="count(//GetOrderDetailsInfoResults/SubLineItem[li_seq_no=$liNo])" />

     

    Sabina

     

     

     

    From: Tessitura Web Forum [mailto:forums-tessitura-web@tessituranetwork.com] On Behalf Of Simon Davidson
    Sent: Friday, December 02, 2011 3:55 AM
    To: Sabina Spilkin
    Subject: [Tessitura Web Forum] Number of Tickets in Acknowledgement

     

    Hi,

    Is there anyway to get the number of tickets a customer has purchased in an acknowledgement letter?

    The type of sentance were trying to get is:

    Thank you for purchasing 50 tickets at £1000, the details of which are shown below.

    Thanks!




    You were sent this email automatically because you subscribed to the Tessitura Web forum. You may reply to this message to post to the Web forum or visit the site to search, read and post to the forums. In the interest of keeping the forum posts from becoming cluttered, we encourage you to delete previous message text from your reply before sending. Thank you!

  • Hi Sabina,

    Thanks for this, I had to brush up on my xslt but this worked perfectly.

    Much appreciated!