|
|
|
@ -5,7 +5,7 @@
|
|
|
|
|
<p>
|
|
|
|
|
As the Lantern Festival approaches, all tourism resources are in high demand. We are currently offering two types of services: <br>
|
|
|
|
|
1. Single ticket sales: VIP and standard tickets.<br>
|
|
|
|
|
2. Package: The exclusive <strong>premium ticket</strong> paired with the most <strong>convenient hotel</strong> option.
|
|
|
|
|
2. Package: The exclusive <strong>premium ticket</strong> paired with the most <strong>convenient hotel</strong>.
|
|
|
|
|
</p>
|
|
|
|
|
<form id='ticket_form' action="https://www.asiahighlights.com/orders/lantern_save" method="post" >
|
|
|
|
|
<p style=" font-size: 22px;"><strong>Select Date</strong></p>
|
|
|
|
@ -426,10 +426,10 @@
|
|
|
|
|
ticketTotalPrice = ticketTotalPrice * 0.95;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Premium Hotel 票要选酒店 110 美金/间/夜
|
|
|
|
|
// Premium Hotel 票要选酒店 100 美金/间/夜
|
|
|
|
|
var hotelTotalPrice = 0;
|
|
|
|
|
if (selectedTicketType === 'Premium_hotel') {
|
|
|
|
|
hotelTotalPrice = 110 * hotelRoomValue * stayLengthValue;
|
|
|
|
|
hotelTotalPrice = 100 * hotelRoomValue * stayLengthValue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var totalPrice = ticketTotalPrice + hotelTotalPrice;
|
|
|
|
|