Order Confirmations: Children's Shows Seat Numbers

Hello!

I've been fairly successful making different group order confirmations meddling with the standard Order Confirmation template. For our Children's shows, I would like to not list the individual seat numbers, while still retaining the line item number of tickets total purchased, the price per ticket, total amount, and total paid. 

So for example:

"Cinderella"                         Price Type: Group 30+       Number of Tickets: 105        Price: $7.00        Total: $$$
Stage
Time

                                                                                                                                                              Total Paid: $$$
                                                                                                                                                               Total Due: $$$

I'd love to be able to do this since we sell our kid's show groups as "GA" (But I pre-seat them in tess seat map and hand that info to the HM), and often times the number of tickets purchased can be up to 300, and I'd like to not list 300 random seats. 

I'm using v 15.0.6.52288 and the example HTML order confirmation template. 

Any and all help is greatly appreciated. 

Best, 
Katrina
Group Sales
Broadway Rose Theatre Company
kat@broadwayrose.org

Parents
  • Katrina,
    This has worked for us:

    @foreach (var subLineItem in product.Performance.LineItem.SubLineItems)
    {
    if (facilityDetail.Theater.Description == "General Admission")
    {
    <text> GA </text><br/>
    }
    else
    {
    var seatRow = string.IsNullOrEmpty(subLineItem.Seat.Number) ? "TBD" : subLineItem.Seat.Row + " " + subLineItem.Seat.Number;
    @seatRow<br />
    }

    Let me know if you need additional information to add this to your confirmation!

    Best,
    Madeline

Reply
  • Katrina,
    This has worked for us:

    @foreach (var subLineItem in product.Performance.LineItem.SubLineItems)
    {
    if (facilityDetail.Theater.Description == "General Admission")
    {
    <text> GA </text><br/>
    }
    else
    {
    var seatRow = string.IsNullOrEmpty(subLineItem.Seat.Number) ? "TBD" : subLineItem.Seat.Row + " " + subLineItem.Seat.Number;
    @seatRow<br />
    }

    Let me know if you need additional information to add this to your confirmation!

    Best,
    Madeline

Children
No Data