* "Kombination mit" im Suchfilter ausblenden
* Behoben: Fehlermeldung wenn im TT-Suchfilter keine Reisezeitraum angegeben wird * Reiseprogrammseite: Komfort-Optionen über ausgeschlossenen Leistungen * Änderung Angebotsdaten im Buchungformular (Formatierung der Posten) * Such- und Angebotsboxen auf "sunstar"-Seiten ausblenden in der Sidebar * Behoben: Oberer Teil der Boxen (pageBox) nicht mehr klickbar git-svn-id: http://78.47.251.156/svn/dev/sterntours-3@3321 f459cee4-fb09-11de-96c3-f9c5f16c3c76
This commit is contained in:
parent
077163634e
commit
28a7ef76d1
7 changed files with 37 additions and 20 deletions
|
|
@ -215,9 +215,9 @@ class BookingController extends Controller
|
|||
{
|
||||
$outHtmlSummary[] = [
|
||||
'value' => $a,
|
||||
'label' => $travelerCount .'x '. ($departure->getExtraCharge() > 0 ? 'Aufschlag' : 'Abzug') .
|
||||
' für Abfahrts-/Abflugort "'. $departure->getName() .'" <strong>'.
|
||||
Util::formatPrice($departure->getExtraCharge()) .'</strong>'
|
||||
'label' => ($departure->getExtraCharge() > 0 ? 'Aufschlag' : 'Abzug') .
|
||||
' für Abfahrts-/Abflugort "'. $departure->getName() .'" <strong>['. $travelerCount .' x '.
|
||||
Util::formatPrice($departure->getExtraCharge()) .' pro Person]</strong>'
|
||||
];
|
||||
}
|
||||
}
|
||||
|
|
@ -231,8 +231,8 @@ class BookingController extends Controller
|
|||
{
|
||||
$outHtmlSummary[] = [
|
||||
'value' => $a,
|
||||
'label' => $travelerCount .'x zugebuchte Leistung: '. $travelOption->getName() .' <strong>'.
|
||||
Util::formatPrice($travelOption->getPrice()) .'</strong>'
|
||||
'label' => $travelOption->getName() .' <strong>['. $travelerCount .' x '.
|
||||
Util::formatPrice($travelOption->getPrice()) .' pro Person]</strong>'
|
||||
];
|
||||
}
|
||||
if (isset($outPriceInfo))
|
||||
|
|
@ -271,8 +271,8 @@ class BookingController extends Controller
|
|||
{
|
||||
$outHtmlSummary[] = [
|
||||
'value' => $a,
|
||||
'label' => $room['persons']['total'] .'x zugebuchte Leistung: Komfort-Kategorie <strong>'.
|
||||
Util::formatPrice($room['price']->getEffectiveComfortPrice()) .'</strong>'
|
||||
'label' => 'Komfort-Kategorie <strong>['. $travelerCount .' x '.
|
||||
Util::formatPrice($room['price']->getEffectiveComfortPrice()) .' pro Person]</strong>'
|
||||
];
|
||||
}
|
||||
if (isset($outPriceInfo))
|
||||
|
|
@ -312,8 +312,8 @@ class BookingController extends Controller
|
|||
|
||||
if (isset($outHtmlSummary))
|
||||
{
|
||||
$label = '1x '. $room['priceType']->getName() .' [Personen: '. $adultCount .' x <strong>'.
|
||||
Util::formatPrice($singleFullPrice) .'</strong>';
|
||||
$label = $room['priceType']->getName() .' <strong>['. $adultCount .' x '.
|
||||
Util::formatPrice($singleFullPrice) .' pro Person]</strong>';
|
||||
if ($room['persons']['children'] != 0)
|
||||
{
|
||||
$label .= ', Kinder: '. $room['persons']['children'] .' x <strong>'.
|
||||
|
|
@ -328,8 +328,8 @@ class BookingController extends Controller
|
|||
{
|
||||
$outHtmlSummary[] = [
|
||||
'value' => $discount,
|
||||
'label' => $adultCount .'x '.
|
||||
Util::formatPrice($singleFullPrice - $singleDiscountPrice) .' Rabatt'
|
||||
'label' => 'Rabatt <strong>['. $adultCount .'x '.
|
||||
Util::formatPrice($singleFullPrice - $singleDiscountPrice) .' pro Person]</strong>'
|
||||
];
|
||||
}
|
||||
if ($bookingRequest->getInsurance() && $adultCount > 0)
|
||||
|
|
@ -347,9 +347,9 @@ class BookingController extends Controller
|
|||
{
|
||||
$insuranceHtmlSummary[] = [
|
||||
'value' => $a,
|
||||
'label' => $adultCount .'x RV '. $bookingRequest->getInsurance()->getName() .' ('.
|
||||
$insurancePrice->getCode() .') <strong>'. Util::formatPrice($insurancePriceValue) .
|
||||
'</strong>'
|
||||
'label' => 'RV '. $bookingRequest->getInsurance()->getName() .' ('.
|
||||
$insurancePrice->getCode() .') <strong>['. $adultCount .' x '.
|
||||
Util::formatPrice($insurancePriceValue) . ' pro Person]</strong>'
|
||||
];
|
||||
}
|
||||
if (isset($outPriceInfo))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue