Has anyone customized the email order acknowledgement template to hide seat locations if the performance is general admission? I'd be interested in seeing this code. I'm assuming I need to tweak this section:
<td align="left" valign="top" width="108">
<xsl:for-each select="//GetOrderDetailsInfoResults/SubLineItem[li_seq_no=$liNo]">
<xsl:if test="string(seat_num) != ''">
<xsl:value-of select="seat_row"/>
<xsl:value-of select="seat_num"/>
<BR/>
</xsl:if>
<xsl:if test="string(seat_num) = ''">
TBD<BR/>
</xsl:for-each>
</td>
Thanks,~Dan
Here is mine <td align="left" valign="top" width="108"> <xsl:for-each select="//GetOrderDetailsInfoResults/SubLineItem[li_seq_no=$liNo]"> <xsl:choose> <xsl:when test="section_desc='General Admission' and not(contains(zone_desc,'Valet Parking'))" > <xsl:value-of select="section_short_desc"/> </xsl:when> <xsl:when test="contains(zone_desc,'Valet Parking')"> </xsl:when> <xsl:otherwise> <xsl:value-of select="seat_row"/> <xsl:value-of select="seat_num"/> </xsl:otherwise> </xsl:choose> <BR/> </xsl:for-each> </td> Marty From: Tessitura Technical Forum [mailto:forums-technical@tessituranetwork.com] On Behalf Of Dan Taraborrelli Sent: Friday, July 30, 2010 1:27 PM To: Martin A. Jones Subject: [Tessitura Technical Forum] Email confirmations and GA houses Has anyone customized the email order acknowledgement template to hide seat locations if the performance is general admission? I'd be interested in seeing this code. I'm assuming I need to tweak this section: <td align="left" valign="top" width="108"> <xsl:for-each select="//GetOrderDetailsInfoResults/SubLineItem[li_seq_no=$liNo]"> <xsl:if test="string(seat_num) != ''"> <xsl:value-of select="seat_row"/> <xsl:value-of select="seat_num"/> <BR/> </xsl:if> <xsl:if test="string(seat_num) = ''"> TBD<BR/> </xsl:if> </xsl:for-each> </td> Thanks, ~Dan This message was sent automatically to you by www.tessituranetwork.com because you subscribed to the Tessitura Technical Forum. You may reply to this message to post to the Technical 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! This message was sent automatically to you by www.tessituranetwork.com because you subscribed to the Tessitura Technical Forum. You may reply to this message to post to the Technical 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!
Here is mine
<xsl:choose>
<xsl:when test="section_desc='General Admission' and not(contains(zone_desc,'Valet Parking'))" >
<xsl:value-of select="section_short_desc"/>
</xsl:when>
<xsl:when test="contains(zone_desc,'Valet Parking')">
<xsl:otherwise>
</xsl:otherwise>
</xsl:choose>
Marty
From: Tessitura Technical Forum [mailto:forums-technical@tessituranetwork.com] On Behalf Of Dan Taraborrelli Sent: Friday, July 30, 2010 1:27 PM To: Martin A. Jones Subject: [Tessitura Technical Forum] Email confirmations and GA houses
Thanks, ~Dan
This message was sent automatically to you by www.tessituranetwork.com because you subscribed to the Tessitura Technical Forum. You may reply to this message to post to the Technical 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!