function init_calendar(){
jQuery(document).ready(function () {
console.log('document ready in init_calendar');
// jQuery(window).on('load',function(){
console.log('window loaded in init_calendar');
jQuery.datepicker.setDefaults( jQuery.datepicker.regional[ "de" ] );
var maxSpace=jQuery('#moreBookingsCal').parent().width() || window.innerWidth;
var w = Math.min(document.documentElement.clientWidth, window.innerWidth, screen.width, maxSpace || 0);
if (w > 768){number_of_months=3;} else if (w > 420) {number_of_months=2;} else {number_of_months=1;}
console.log('about to initialize datepicker');
jQuery('#moreBookingsCal').datepicker({
dateFormat:'d.m.yy',
numberOfMonths: number_of_months,
beforeShowDay: find_global_calendar_entry_inline,
autoclose: true,
firstDay: 0,
});
console.log('datepicker initialized');
// }); // end window load
}); // end document ready Nesting is done to ensure that the datepicker is only initialized after the page has fully loaded.
};
function preis_ermitteln2() {
var waitImage = document.getElementById('waitImage');
waitImage.style.visibility='visible';
var formcontent=jQuery('#guest_booking').serialize();
var booking_is_blocking=jQuery('#is_blocking').val();
var booking_process_step=jQuery('#booking_process_step').val();
if (booking_is_blocking!=0 || booking_process_step==410){
jQuery('.hide_if_blocking').hide();
jQuery('.hide_if_not_blocking').show();
jQuery('#show_phantom_settings').show();
}
else
{
console.log('booking is not blocking');
}
var ajaxHeaders = {};
if (typeof encToken !== 'undefined' && encToken) {
ajaxHeaders['Authorization'] = 'Bearer ' + encToken;
}
jQuery.ajax(backendHostUrl +'/public_serve_json',{
dataType: "json",
type: 'POST',
data: JSON.stringify({'function':'computeprice',
'formcontent':formcontent}),
contentType : 'application/json',
headers: ajaxHeaders
}).done(
function(result){
// jQuery('#rechnungstext').html( result.invoicetext);
console.log('result.errordict');
console.log(result.errordict);
jQuery('#rechnungstext').empty();
current_result=result;
result.invoice_dicts.forEach(
function (item, i, o) {
if(Math.round(item.price) !== item.price) {
item.price = item.price.toFixed(2);
}
if(Math.round(item.total) !== item.total) {
item.total = item.total.toFixed(2);
}
if (item.kind=='default_rate_nights'){
var text=item.first_night+' - '+item.last_night+' = '+item.number_of_nights+ ' Nächte in Standard-Saison à ' +item.price+ window.currency+' ';
// var text=item.first_night+' - '+item.last_night+' = '+item.number_of_nights+ ' Nächte in Standard-Saison à ' +item.price+ window.currency+' ';
}
else if (item.kind=='normal_season_nights'){
var text=item.first_night+' - '+item.last_night+' = '+item.number_of_nights+ ' Nächte in Saison '+item.name+' à '+item.price+ window.currency+' ';
// var text=`${item.first_night} - ${item.last_night} = ${item.number_of_nights} Nächte in Saison ${item.name} à ${item.price} ${window.currency}`;
// var text= `${item.first_night} - ${item.last_night} = ${item.number_of_nights} Nächte in Saison ${item.name} à ${item.price} ${window.currency}`;
// var text=item.first_night+' - '+item.last_night+' = '+item.number_of_nights+ ' Nächte in Saison '+item.name+' à '+item.price+ window.currency+' ';
}
else if (item.kind=='first_night_surcharge'){
var text=item.first_night+' - '+item.last_night+' = Preis f. erste Nacht in Saison '+item.season_name+' : '+item.price+ window.currency+' ';
var text=item.first_night+' - '+item.last_night+' = Preis f. erste Nacht in Saison '+item.season_name+' : '+item.price+ window.currency+' ';
}
else if (item.kind=='person_surcharge'){
var text=item.first_night+' - '+item.last_night+' = '+item.number_of_nights+ ' Nächte Aufpreis für '+item.surplus_persons+' Person(en) mehr als '+item.base_persons + ' à '+item.price+ window.currency+' ';
// var text=item.first_night+' - '+item.last_night+' = '+item.number_of_nights+ ' Nächte Aufpreis für '+item.surplus_persons+' Person(en) mehr als '+item.base_persons + ' à '+item.price+ window.currency+' ';
}
else if (item.kind=='kid_surcharge'){
var text=item.first_night+' - '+item.last_night+' = '+item.number_of_nights+ ' Nächte Aufpreis für '+item.surplus_persons+' Jugendliche(en) mehr als '+item.base_persons + ' à '+item.price+ window.currency+' ';
// var text=item.first_night+' - '+item.last_night+' = '+item.number_of_nights+ ' Nächte Aufpreis für '+item.surplus_persons+' Jugendliche(en) mehr als '+item.base_persons + ' à '+item.price+ window.currency+' ';
}
else if (item.kind=='short_stay_charge'){
var text='Kurzbucher-Aufschlag für Buchungen unter '+item.short_stay_max+' Tagen. ';
// var text='Kurzbucher-Aufschlag für Buchungen unter '+item.short_stay_max+' Tagen. ';
}
else if (
item.kind=='guest_per_night' ||
item.kind=='adult_per_night' ||
item.kind=='kid_per_night' ||
item.kind=='object_per_night'
){
var text=item.number_of_nights+ ' Nächte '+item.name+' à '+item.price+ window.currency+' ';
// var text=item.number_of_nights+ ' Nächte '+item.name+' à '+item.price+ window.currency+' ';
}
else
{
console.log('undefined pricing item: '+item.kind);
var text=item.name;
}
var lineprice=item.total + ' '+window.currency;
var zeile= "
";
jQuery('#rechnungstext').append(zeile);
} // end forEach invoice_dicts
);
console.log(result);
console.log('result currency'+result.currency);
console.log('window currency'+window.currency);
if (result.currency!==window.currency)
{ window.currency=result.currency;}
if(Math.round(result.rawprice) !== result.rawprice) {
accomodation_total = result.rawprice.toFixed(2).replace('.',',')+ ' '+window.currency;
}
else
{
accomodation_total = result.rawprice.toFixed(0)+ ' '+window.currency;
}
jQuery('#uebernachtungsbetrag').html(accomodation_total);
console.log('accomodation total: '+accomodation_total);
// jQuery('#uebernachtungsbetrag').html(result.price);
var lang='de';
for (let i = 0; i < result.billing_extras.length; i++) {
var extra_name_location='#billing_extra_name_'+i;
var extra_error_location='#billing_extra_error_'+i;
var extra_price_location='#billing_extra_price_'+i;
var extra_total_location='#billing_extra_total_'+i;
var extra_price_description_location='#billing_extra_price_target_'+i;
var extra_ordered_location='#billing_extra_ordered_'+i;
jQuery(extra_name_location).text(result.billing_extras[i].name_ml[lang]);
jQuery(extra_error_location).text(result.billing_extras[i].name_ml[lang]);
if (result.billing_extras[i].error_ml && result.billing_extras[i].error_ml[lang])
{
var appended_text=' '+result.billing_extras[i].error_ml[lang];
}
else
{
appended_text=' Please accept...';
console.log('gleich kommt was');
console.log(result.billing_extras[i]);
}
jQuery(extra_error_location).append(appended_text);
// Link in Preiserklärung-Spalte: immer nutzen, sofern gesetzt (für alle Berechnungsarten)
if (result.billing_extras[i].link_to_information_ml && result.billing_extras[i].link_to_information_ml[lang])
{
var newLink = $(" ", {
name : "link",
target: "_blank",
href : result.billing_extras[i].link_to_information_ml[lang],
text : result.billing_extras[i].pricedescription_ml[lang] || ''
});
jQuery(extra_price_description_location).empty().append(newLink);
}
else
{
jQuery(extra_price_description_location).text(result.billing_extras[i].pricedescription_ml[lang] || '');
}
if (['no_acknowledgement', 'mandatory_acknowledgement','optional_acknowledgement'].includes(result.billing_extras[i].computation))
{
item_price='';
}
else
{
var priceSuffix = ['percent_of_accomodation_mandatory','percent_of_accomodation_optional','percent_of_total_mandatory','percent_of_total_per_adult_mandatory'].includes(result.billing_extras[i].computation) ? ' %' : ' '+window.currency;
if (result.billing_extras[i].price.length===1)
{
item_price=Number(result.billing_extras[i].price);
if (Math.round(item_price) !== item_price) {
item_price = item_price.toFixed(2).replace('.',',')+priceSuffix;
}
else
{
item_price = item_price.toFixed(0)+priceSuffix;
}
}
else
{
console.log('item price for arrays first value: '+result.billing_extras[i].price[0]+' type: '+typeof(result.billing_extras[i].price[0]));
item_price='';
for (let j = 0; j < result.billing_extras[i].price.length; j++) {
item_price=item_price+Number(result.billing_extras[i].price[j])+priceSuffix+', ';
}
}
}
jQuery(extra_price_location).html(item_price);
// jQuery(extra_price_location).html(Number(result.billing_extras[i].price).toFixed(2).replace('.',',')+' '+window.currency);
jQuery(extra_total_location).html(result.billing_extras[i].price);
jQuery(extra_ordered_location).attr('name', 'extras_'+result.billing_extras[i].urlsafekey);
// The following 2 lines are needed to give the correct name to the hidden field
jQuery('#empty_checkbox_billing_extra_ordered_'+i).attr('name', 'extras_'+result.billing_extras[i].urlsafekey);
}
window.belegtliste=window['belegtliste'+result.objektkey];
// owner_booking and guest_booking need different namespaces
if (typeof window['augmented_calendar'+result.objektkey] !== 'undefined') {
window.augmented_calendar=window['augmented_calendar'+result.objektkey];
// Also update augmentedCalendars for consistency
if (!window.augmentedCalendars) {
window.augmentedCalendars = {};
}
window.augmentedCalendars[result.objektkey] = window['augmented_calendar'+result.objektkey];
}
if (result.errordict !='') {
jQuery('#errorlist').addClass('form-error');
jQuery('.booking-form-error').show();
}
else
{
jQuery('#errorlist').removeClass('form-error');
jQuery('.booking-form-error').hide();
}
jQuery('#errorlist').empty();
result.errordict.forEach(
function(entry){
if (entry.type=='overbooking') {
jQuery('#errorlist').append( 'Maximale Anzahl Gäste ist: '+entry.max_number_of_guests+ ' Sie haben '+entry.requested_number_of_guests+ ' Gäste gewählt. ')
} else if (entry.type=='collision'){
jQuery('#errorlist').append( 'Es gibt eine Überschneidung mit einer anderen Buchung. Bitte wählen Sie andere Daten. ')
} else if (entry.type=='start_day_not_valid'){
jQuery('#errorlist').append( 'Ihr Anreise-Wochentag ist in der Saison '+entry.season_name+' nicht möglich. Bitte wählen Sie einen anderen Tag. ')
} else if (entry.type=='end_day_not_valid'){
jQuery('#errorlist').append( 'Ihr Abreise-Wochentag ist in der Saison '+entry.season_name+' nicht möglich. Bitte wählen Sie einen anderen Tag. ')
} else if (entry.type=='booking_duration_not_valid'){
jQuery('#errorlist').append( 'Leider ist die Buchungsdauer in der Saison '+entry.season_name+' nicht möglich. Ihre Anfrage beträgt '+entry.days_requested+' Nächte. Das Minimum für diese Saison beträgt '+entry.season_min_duration+' Nächte.')
} else if (entry.type=='booking_duration_too_long'){
jQuery('#errorlist').append('Leider ist die Buchungsdauer in der Saison '+entry.season_name+' nicht möglich. Ihre Anfrage beträgt '+entry.days_requested+' Tage. Das Maximum für diese Saison beträgt '+entry.season_max_duration+' Tage.' )
}
}
);
jQuery('#accomodation_price').val(result.rawprice);
window.number_of_nights=result.number_of_nights;
window.number_of_guests=result.number_of_guests;
window.number_of_kids=result.number_of_kids;
window.number_of_adults=result.number_of_guests-result.number_of_kids;
// calculate_complete_form2();
apply_voucher();
// apply_voucher automatically calls calculate_complete_form2
waitImage.style.visibility = 'hidden';
});
};
function activate_datepicker(){
jQuery.datepicker.setDefaults( jQuery.datepicker.regional[ "de" ] );
jQuery('.date').datepicker({
buttonImage: 'https://fewoyieldmgmt.koberer.de//img/calendar.gif',
buttonImageOnly: true,
dateFormat:'d.m.yy',
beforeShowDay: find_global_calendar_entry_popup,
autoclose: true,
firstDay: 0,
}
);
};
function find_global_calendar_entry_inline (date){
var dmy = "d"+date.getFullYear();
dmy += ("00" + (date.getMonth() + 1)).slice(-2);
dmy += ("00" + date.getDate()).slice(-2);
ret_object= window.augmented_calendar[dmy];
if (typeof ret_object=='undefined') {
return [true, "", "frei/verfügbar"];
}
else {
if (ret_object[3]==0){
return [true, ret_object[1], 'frei/verfügbar '+ret_object[2]];
} else{
return [true, ret_object[1], 'Belegt '+ret_object[2]];
}
}
}
function find_global_calendar_entry_popup (date){
var dmy = "d"+date.getFullYear();
dmy += ("00" + (date.getMonth() + 1)).slice(-2);
dmy += ("00" + date.getDate()).slice(-2);
ret_object= window.augmented_calendar[dmy];
if (typeof ret_object=='undefined') {
return [true, "", "frei/verfügbar"];
}
else {
if (ret_object[3]=='0'){
return [true, ret_object[1], "frei/verfügbar"+ret_object[2]];
} else {
return [false, ret_object[1], ret_object[2]];
}
}
}
var augmented_calendar={"d20241001": ["d20241001", "season0", "75 \u20ac ", 0], "d20241002": ["d20241002", "season0", "75 \u20ac ", 0], "d20241003": ["d20241003", "season0", "75 \u20ac ", 0], "d20241004": ["d20241004", "season0", "75 \u20ac ", 0], "d20241005": ["d20241005", "season0", "75 \u20ac ", 0], "d20241006": ["d20241006", "season0", "75 \u20ac ", 0], "d20241007": ["d20241007", "season0", "75 \u20ac ", 0], "d20241008": ["d20241008", "season0", "75 \u20ac ", 0], "d20241009": ["d20241009", "season0", "75 \u20ac ", 0], "d20241010": ["d20241010", "season0", "75 \u20ac ", 0], "d20241011": ["d20241011", "season0", "75 \u20ac ", 0], "d20241012": ["d20241012", "season0", "75 \u20ac ", 0], "d20241013": ["d20241013", "season0", "75 \u20ac ", 0], "d20241014": ["d20241014", "season0", "75 \u20ac ", 0], "d20241015": ["d20241015", "season0", "75 \u20ac ", 0], "d20241016": ["d20241016", "season0", "75 \u20ac ", 0], "d20241017": ["d20241017", "season0", "75 \u20ac ", 0], "d20241018": ["d20241018", "season0", "75 \u20ac ", 0], "d20241019": ["d20241019", "season0", "75 \u20ac ", 0], "d20241020": ["d20241020", "season0", "75 \u20ac ", 0], "d20241021": ["d20241021", "season0", "75 \u20ac ", 0], "d20241022": ["d20241022", "season0", "75 \u20ac ", 0], "d20241023": ["d20241023", "season0", "75 \u20ac ", 0], "d20241024": ["d20241024", "season0", "75 \u20ac ", 0], "d20241025": ["d20241025", "season0", "75 \u20ac ", 0], "d20241026": ["d20241026", "season0", "75 \u20ac ", 0], "d20241027": ["d20241027", "season0", "75 \u20ac ", 0], "d20241028": ["d20241028", "season0", "75 \u20ac ", 0], "d20241029": ["d20241029", "season0", "75 \u20ac ", 0], "d20241030": ["d20241030", "season0", "75 \u20ac ", 0], "d20241031": ["d20241031", "season0", "75 \u20ac ", 0], "d20241101": ["d20241101", "season0", "75 \u20ac ", 0], "d20241102": ["d20241102", "season0", "75 \u20ac ", 0], "d20241103": ["d20241103", "season0", "75 \u20ac ", 0], "d20241104": ["d20241104", "season0", "75 \u20ac ", 0], "d20241105": ["d20241105", "season0", "75 \u20ac ", 0], "d20241106": ["d20241106", "season0", "75 \u20ac ", 0], "d20241107": ["d20241107", "season0", "75 \u20ac ", 0], "d20241108": ["d20241108", "season0", "75 \u20ac ", 0], "d20241109": ["d20241109", "season0", "75 \u20ac ", 0], "d20241110": ["d20241110", "season0", "75 \u20ac ", 0], "d20241111": ["d20241111", "season0", "75 \u20ac ", 0], "d20241112": ["d20241112", "season0", "75 \u20ac ", 0], "d20241113": ["d20241113", "season0", "75 \u20ac ", 0], "d20241114": ["d20241114", "season0", "75 \u20ac ", 0], "d20241115": ["d20241115", "season0", "75 \u20ac ", 0], "d20241116": ["d20241116", "season0", "75 \u20ac ", 0], "d20241117": ["d20241117", "season0", "75 \u20ac ", 0], "d20241118": ["d20241118", "season0", "75 \u20ac ", 0], "d20241119": ["d20241119", "season0", "75 \u20ac ", 0], "d20241120": ["d20241120", "season0", "75 \u20ac ", 0], "d20241121": ["d20241121", "season0", "75 \u20ac ", 0], "d20241122": ["d20241122", "season0", "75 \u20ac ", 0], "d20241123": ["d20241123", "season0", "75 \u20ac ", 0], "d20241124": ["d20241124", "season0", "75 \u20ac ", 0], "d20241125": ["d20241125", "season0", "75 \u20ac ", 0], "d20241126": ["d20241126", "season0", "75 \u20ac ", 0], "d20241127": ["d20241127", "season0", "75 \u20ac ", 0], "d20241128": ["d20241128", "season0", "75 \u20ac ", 0], "d20241129": ["d20241129", "season0", "75 \u20ac ", 0], "d20241130": ["d20241130", "season0", "75 \u20ac ", 0], "d20241201": ["d20241201", "season0", "75 \u20ac ", 0], "d20241202": ["d20241202", "season0", "75 \u20ac ", 0], "d20241203": ["d20241203", "season0", "75 \u20ac ", 0], "d20241204": ["d20241204", "season0", "75 \u20ac ", 0], "d20241205": ["d20241205", "season0", "75 \u20ac ", 0], "d20241206": ["d20241206", "season0", "75 \u20ac ", 0], "d20241207": ["d20241207", "season0", "75 \u20ac ", 0], "d20241208": ["d20241208", "season0", "75 \u20ac ", 0], "d20241209": ["d20241209", "season0", "75 \u20ac ", 0], "d20241210": ["d20241210", "season0", "75 \u20ac ", 0], "d20241211": ["d20241211", "season0", "75 \u20ac ", 0], "d20241212": ["d20241212", "season0", "75 \u20ac ", 0], "d20241213": ["d20241213", "season0", "75 \u20ac ", 0], "d20241214": ["d20241214", "season0", "75 \u20ac ", 0], "d20241215": ["d20241215", "season0", "75 \u20ac ", 0], "d20241216": ["d20241216", "season0", "75 \u20ac ", 0], "d20241217": ["d20241217", "season0", "75 \u20ac ", 0], "d20241218": ["d20241218", "season0", "75 \u20ac ", 0], "d20241219": ["d20241219", "season0", "75 \u20ac ", 0], "d20241220": ["d20241220", "season0", "75 \u20ac ", 0], "d20241221": ["d20241221", "season0", "75 \u20ac ", 0], "d20241222": ["d20241222", "season0", "75 \u20ac ", 0], "d20241223": ["d20241223", "season0", "75 \u20ac ", 0], "d20241224": ["d20241224", "season0", "75 \u20ac ", 0], "d20241225": ["d20241225", "season0", "75 \u20ac ", 0], "d20241226": ["d20241226", "season0", "75 \u20ac ", 0], "d20241227": ["d20241227", "season0", "75 \u20ac ", 0], "d20241228": ["d20241228", "season0", "75 \u20ac ", 0], "d20241229": ["d20241229", "season0", "75 \u20ac ", 0], "d20241230": ["d20241230", "season0", "75 \u20ac ", 0], "d20241231": ["d20241231", "season0", "75 \u20ac ", 0], "d20250101": ["d20250101", "season0", "75 \u20ac ", 0], "d20250102": ["d20250102", "season0", "75 \u20ac ", 0], "d20250103": ["d20250103", "season0", "75 \u20ac ", 0], "d20250104": ["d20250104", "season0", "75 \u20ac ", 0], "d20250105": ["d20250105", "season0", "75 \u20ac ", 0], "d20250106": ["d20250106", "season0", "75 \u20ac ", 0], "d20250107": ["d20250107", "season0", "75 \u20ac ", 0], "d20250108": ["d20250108", "season0", "75 \u20ac ", 0], "d20250109": ["d20250109", "season0", "75 \u20ac ", 0], "d20250110": ["d20250110", "season0", "75 \u20ac ", 0], "d20250111": ["d20250111", "season0", "75 \u20ac ", 0], "d20250112": ["d20250112", "season0", "75 \u20ac ", 0], "d20250113": ["d20250113", "season0", "75 \u20ac ", 0], "d20250114": ["d20250114", "season0", "75 \u20ac ", 0], "d20250115": ["d20250115", "season0", "75 \u20ac ", 0], "d20250116": ["d20250116", "season0", "75 \u20ac ", 0], "d20250117": ["d20250117", "season0", "75 \u20ac ", 0], "d20250118": ["d20250118", "season0", "75 \u20ac ", 0], "d20250119": ["d20250119", "season0", "75 \u20ac ", 0], "d20250120": ["d20250120", "season0", "75 \u20ac ", 0], "d20250121": ["d20250121", "season0", "75 \u20ac ", 0], "d20250122": ["d20250122", "season0", "75 \u20ac ", 0], "d20250123": ["d20250123", "season0", "75 \u20ac ", 0], "d20250124": ["d20250124", "season0", "75 \u20ac ", 0], "d20250125": ["d20250125", "season0", "75 \u20ac ", 0], "d20250126": ["d20250126", "season0", "75 \u20ac ", 0], "d20250127": ["d20250127", "season0", "75 \u20ac ", 0], "d20250128": ["d20250128", "season0", "75 \u20ac ", 0], "d20250129": ["d20250129", "season0", "75 \u20ac ", 0], "d20250130": ["d20250130", "season0", "75 \u20ac ", 0], "d20250131": ["d20250131", "season0", "75 \u20ac ", 0], "d20250201": ["d20250201", "season0", "75 \u20ac ", 0], "d20250202": ["d20250202", "season0", "75 \u20ac ", 0], "d20250203": ["d20250203", "season0", "75 \u20ac ", 0], "d20250204": ["d20250204", "season0", "75 \u20ac ", 0], "d20250205": ["d20250205", "season0", "75 \u20ac ", 0], "d20250206": ["d20250206", "season0", "75 \u20ac ", 0], "d20250207": ["d20250207", "season0", "75 \u20ac ", 0], "d20250208": ["d20250208", "season0", "75 \u20ac ", 0], "d20250209": ["d20250209", "season0", "75 \u20ac ", 0], "d20250210": ["d20250210", "season0", "75 \u20ac ", 0], "d20250211": ["d20250211", "season0", "75 \u20ac ", 0], "d20250212": ["d20250212", "season0", "75 \u20ac ", 0], "d20250213": ["d20250213", "season0", "75 \u20ac ", 0], "d20250214": ["d20250214", "season0", "75 \u20ac ", 0], "d20250215": ["d20250215", "season0", "75 \u20ac ", 0], "d20250216": ["d20250216", "season0", "75 \u20ac ", 0], "d20250217": ["d20250217", "season0", "75 \u20ac ", 0], "d20250218": ["d20250218", "season0", "75 \u20ac ", 0], "d20250219": ["d20250219", "season0", "75 \u20ac ", 0], "d20250220": ["d20250220", "season0", "75 \u20ac ", 0], "d20250221": ["d20250221", "season0", "75 \u20ac ", 0], "d20250222": ["d20250222", "season0", "75 \u20ac ", 0], "d20250223": ["d20250223", "season0", "75 \u20ac ", 0], "d20250224": ["d20250224", "season0", "75 \u20ac ", 0], "d20250225": ["d20250225", "season0", "75 \u20ac ", 0], "d20250226": ["d20250226", "season0", "75 \u20ac ", 0], "d20250227": ["d20250227", "season0", "75 \u20ac ", 0], "d20250228": ["d20250228", "season0", "75 \u20ac ", 0], "d20250301": ["d20250301", "season0", "75 \u20ac ", 0], "d20250302": ["d20250302", "season0", "75 \u20ac ", 0], "d20250303": ["d20250303", "season0", "75 \u20ac ", 0], "d20250304": ["d20250304", "season0", "75 \u20ac ", 0], "d20250305": ["d20250305", "season0", "75 \u20ac ", 0], "d20250306": ["d20250306", "season0", "75 \u20ac ", 0], "d20250307": ["d20250307", "season0", "75 \u20ac ", 0], "d20250308": ["d20250308", "season0", "75 \u20ac ", 0], "d20250309": ["d20250309", "season0", "75 \u20ac ", 0], "d20250310": ["d20250310", "season0", "75 \u20ac ", 0], "d20250311": ["d20250311", "season0", "75 \u20ac ", 0], "d20250312": ["d20250312", "season0", "75 \u20ac ", 0], "d20250313": ["d20250313", "season0", "75 \u20ac ", 0], "d20250314": ["d20250314", "season0", "75 \u20ac ", 0], "d20250315": ["d20250315", "season0", "75 \u20ac ", 0], "d20250316": ["d20250316", "season0", "75 \u20ac ", 0], "d20250317": ["d20250317", "season0", "75 \u20ac ", 0], "d20250318": ["d20250318", "season0", "75 \u20ac ", 0], "d20250319": ["d20250319", "season0", "75 \u20ac ", 0], "d20250320": ["d20250320", "season0", "75 \u20ac ", 0], "d20250321": ["d20250321", "season0", "75 \u20ac ", 0], "d20250322": ["d20250322", "season0", "75 \u20ac ", 0], "d20250323": ["d20250323", "season0", "75 \u20ac ", 0], "d20250324": ["d20250324", "season0", "75 \u20ac ", 0], "d20250325": ["d20250325", "season0", "75 \u20ac ", 0], "d20250326": ["d20250326", "season0", "75 \u20ac ", 0], "d20250327": ["d20250327", "season0", "75 \u20ac ", 0], "d20250328": ["d20250328", "season0", "75 \u20ac ", 0], "d20250329": ["d20250329", "season0", "75 \u20ac ", 0], "d20250330": ["d20250330", "season0", "75 \u20ac ", 0], "d20250331": ["d20250331", "season0", "75 \u20ac ", 0], "d20250401": ["d20250401", "season0", "75 \u20ac ", 0], "d20250402": ["d20250402", "season0", "75 \u20ac ", 0], "d20250403": ["d20250403", "season0", "75 \u20ac ", 0], "d20250404": ["d20250404", "season0", "75 \u20ac ", 0], "d20250405": ["d20250405", "season0", "75 \u20ac ", 0], "d20250406": ["d20250406", "season0", "75 \u20ac ", 0], "d20250407": ["d20250407", "season0", "75 \u20ac ", 0], "d20250408": ["d20250408", "season0", "75 \u20ac ", 0], "d20250409": ["d20250409", "season0", "75 \u20ac ", 0], "d20250410": ["d20250410", "season0", "75 \u20ac ", 0], "d20250411": ["d20250411", "season0", "75 \u20ac ", 0], "d20250412": ["d20250412", "season0", "75 \u20ac ", 0], "d20250413": ["d20250413", "season0", "75 \u20ac ", 0], "d20250414": ["d20250414", "season0", "75 \u20ac ", 0], "d20250415": ["d20250415", "season0", "75 \u20ac ", 0], "d20250416": ["d20250416", "season0", "75 \u20ac ", 0], "d20250417": ["d20250417", "season0", "75 \u20ac ", 0], "d20250418": ["d20250418", "season0", "75 \u20ac ", 0], "d20250419": ["d20250419", "season0", "75 \u20ac ", 0], "d20250420": ["d20250420", "season0", "75 \u20ac ", 0], "d20250421": ["d20250421", "season0", "75 \u20ac ", 0], "d20250422": ["d20250422", "season0", "75 \u20ac ", 0], "d20250423": ["d20250423", "season0", "75 \u20ac ", 0], "d20250424": ["d20250424", "season0", "75 \u20ac ", 0], "d20250425": ["d20250425", "season0", "75 \u20ac ", 0], "d20250426": ["d20250426", "season0", "75 \u20ac ", 0], "d20250427": ["d20250427", "season0", "75 \u20ac ", 0], "d20250428": ["d20250428", "season0", "75 \u20ac ", 0], "d20250429": ["d20250429", "season0", "75 \u20ac ", 0], "d20250430": ["d20250430", "season0", "75 \u20ac ", 0], "d20250501": ["d20250501", "season0", "75 \u20ac ", 0], "d20250502": ["d20250502", "season0", "75 \u20ac ", 0], "d20250503": ["d20250503", "season0", "75 \u20ac ", 0], "d20250504": ["d20250504", "season0", "75 \u20ac ", 0], "d20250505": ["d20250505", "season0", "75 \u20ac ", 0], "d20250506": ["d20250506", "season0", "75 \u20ac ", 0], "d20250507": ["d20250507", "season0", "75 \u20ac ", 0], "d20250508": ["d20250508", "season0", "75 \u20ac ", 0], "d20250509": ["d20250509", "season0", "75 \u20ac ", 0], "d20250510": ["d20250510", "season0", "75 \u20ac ", 0], "d20250511": ["d20250511", "season0", "75 \u20ac ", 0], "d20250512": ["d20250512", "season0", "75 \u20ac ", 0], "d20250513": ["d20250513", "season0", "75 \u20ac ", 0], "d20250514": ["d20250514", "season0", "75 \u20ac ", 0], "d20250515": ["d20250515", "season0", "75 \u20ac ", 0], "d20250516": ["d20250516", "season0", "75 \u20ac ", 0], "d20250517": ["d20250517", "season0", "75 \u20ac ", 0], "d20250518": ["d20250518", "season0", "75 \u20ac ", 0], "d20250519": ["d20250519", "season0", "75 \u20ac ", 0], "d20250520": ["d20250520", "season0", "75 \u20ac ", 0], "d20250521": ["d20250521", "season0", "75 \u20ac ", 0], "d20250522": ["d20250522", "season0", "75 \u20ac ", 0], "d20250523": ["d20250523", "season0", "75 \u20ac ", 0], "d20250524": ["d20250524", "season0", "75 \u20ac ", 0], "d20250525": ["d20250525", "season0", "75 \u20ac ", 0], "d20250526": ["d20250526", "season0", "75 \u20ac ", 0], "d20250527": ["d20250527", "season0", "75 \u20ac ", 0], "d20250528": ["d20250528", "season0", "75 \u20ac ", 0], "d20250529": ["d20250529", "season0", "75 \u20ac ", 0], "d20250530": ["d20250530", "season0", "75 \u20ac ", 0], "d20250531": ["d20250531", "season0", "75 \u20ac ", 0], "d20250601": ["d20250601", "season0", "75 \u20ac ", 0], "d20250602": ["d20250602", "season0", "75 \u20ac ", 0], "d20250603": ["d20250603", "season0", "75 \u20ac ", 0], "d20250604": ["d20250604", "season0", "75 \u20ac ", 0], "d20250605": ["d20250605", "season0", "75 \u20ac ", 0], "d20250606": ["d20250606", "season0", "75 \u20ac ", 0], "d20250607": ["d20250607", "season0", "75 \u20ac ", 0], "d20250608": ["d20250608", "season0", "75 \u20ac ", 0], "d20250609": ["d20250609", "season0", "75 \u20ac ", 0], "d20250610": ["d20250610", "season0", "75 \u20ac ", 0], "d20250611": ["d20250611", "season0", "75 \u20ac ", 0], "d20250612": ["d20250612", "season0", "75 \u20ac ", 0], "d20250613": ["d20250613", "season0", "75 \u20ac ", 0], "d20250614": ["d20250614", "season0", "75 \u20ac ", 0], "d20250615": ["d20250615", "season0", "75 \u20ac ", 0], "d20250616": ["d20250616", "season0", "75 \u20ac ", 0], "d20250617": ["d20250617", "season0", "75 \u20ac ", 0], "d20250618": ["d20250618", "season0", "75 \u20ac ", 0], "d20250619": ["d20250619", "season0", "75 \u20ac ", 0], "d20250620": ["d20250620", "season0", "75 \u20ac ", 0], "d20250621": ["d20250621", "season0", "75 \u20ac ", 0], "d20250622": ["d20250622", "season0", "75 \u20ac ", 0], "d20250623": ["d20250623", "season0", "75 \u20ac ", 0], "d20250624": ["d20250624", "season0", "75 \u20ac ", 0], "d20250625": ["d20250625", "season0", "75 \u20ac ", 0], "d20250626": ["d20250626", "season0", "75 \u20ac ", 0], "d20250627": ["d20250627", "season0", "75 \u20ac ", 0], "d20250628": ["d20250628", "season0", "75 \u20ac ", 0], "d20250629": ["d20250629", "season0", "75 \u20ac ", 0], "d20250630": ["d20250630", "season0", "75 \u20ac ", 0], "d20250701": ["d20250701", "season0", "75 \u20ac ", 0], "d20250702": ["d20250702", "season0", "75 \u20ac ", 0], "d20250703": ["d20250703", "season0", "75 \u20ac ", 0], "d20250704": ["d20250704", "season0", "75 \u20ac ", 0], "d20250705": ["d20250705", "season0", "75 \u20ac ", 0], "d20250706": ["d20250706", "season0", "75 \u20ac ", 0], "d20250707": ["d20250707", "season0", "75 \u20ac ", 0], "d20250708": ["d20250708", "season0", "75 \u20ac ", 0], "d20250709": ["d20250709", "season0", "75 \u20ac ", 0], "d20250710": ["d20250710", "season0", "75 \u20ac ", 0], "d20250711": ["d20250711", "season0", "75 \u20ac ", 0], "d20250712": ["d20250712", "season0", "75 \u20ac ", 0], "d20250713": ["d20250713", "season0", "75 \u20ac ", 0], "d20250714": ["d20250714", "season0", "75 \u20ac ", 0], "d20250715": ["d20250715", "season0", "75 \u20ac ", 0], "d20250716": ["d20250716", "season0", "75 \u20ac ", 0], "d20250717": ["d20250717", "season0", "75 \u20ac ", 0], "d20250718": ["d20250718", "season0", "75 \u20ac ", 0], "d20250719": ["d20250719", "season0", "75 \u20ac ", 0], "d20250720": ["d20250720", "season0", "75 \u20ac ", 0], "d20250721": ["d20250721", "season0", "75 \u20ac ", 0], "d20250722": ["d20250722", "season0", "75 \u20ac ", 0], "d20250723": ["d20250723", "season0", "75 \u20ac ", 0], "d20250724": ["d20250724", "season0", "75 \u20ac ", 0], "d20250725": ["d20250725", "season0", "75 \u20ac ", 0], "d20250726": ["d20250726", "season0", "75 \u20ac ", 0], "d20250727": ["d20250727", "season0", "75 \u20ac ", 0], "d20250728": ["d20250728", "season0", "75 \u20ac ", 0], "d20250729": ["d20250729", "season0", "75 \u20ac ", 0], "d20250730": ["d20250730", "season0", "75 \u20ac ", 0], "d20250731": ["d20250731", "season0", "75 \u20ac ", 0], "d20250801": ["d20250801", "season0", "75 \u20ac ", 0], "d20250802": ["d20250802", "season0", "75 \u20ac ", 0], "d20250803": ["d20250803", "season0", "75 \u20ac ", 0], "d20250804": ["d20250804", "season0", "75 \u20ac ", 0], "d20250805": ["d20250805", "season0", "75 \u20ac ", 0], "d20250806": ["d20250806", "season0", "75 \u20ac ", 0], "d20250807": ["d20250807", "season0", "75 \u20ac ", 0], "d20250808": ["d20250808", "season0", "75 \u20ac ", 0], "d20250809": ["d20250809", "season0", "75 \u20ac ", 0], "d20250810": ["d20250810", "season0", "75 \u20ac ", 0], "d20250811": ["d20250811", "season0", "75 \u20ac ", 0], "d20250812": ["d20250812", "season0", "75 \u20ac ", 0], "d20250813": ["d20250813", "season0", "75 \u20ac ", 0], "d20250814": ["d20250814", "season0", "75 \u20ac ", 0], "d20250815": ["d20250815", "season0", "75 \u20ac ", 0], "d20250816": ["d20250816", "season0", "75 \u20ac ", 0], "d20250817": ["d20250817", "season0", "75 \u20ac ", 0], "d20250818": ["d20250818", "season0", "75 \u20ac ", 0], "d20250819": ["d20250819", "season0", "75 \u20ac ", 0], "d20250820": ["d20250820", "season0", "75 \u20ac ", 0], "d20250821": ["d20250821", "season0", "75 \u20ac ", 0], "d20250822": ["d20250822", "season0", "75 \u20ac ", 0], "d20250823": ["d20250823", "season0", "75 \u20ac ", 0], "d20250824": ["d20250824", "season0", "75 \u20ac ", 0], "d20250825": ["d20250825", "season0", "75 \u20ac ", 0], "d20250826": ["d20250826", "season0", "75 \u20ac ", 0], "d20250827": ["d20250827", "season0", "75 \u20ac ", 0], "d20250828": ["d20250828", "season0", "75 \u20ac ", 0], "d20250829": ["d20250829", "season0", "75 \u20ac ", 0], "d20250830": ["d20250830", "season0", "75 \u20ac ", 0], "d20250831": ["d20250831", "season0", "75 \u20ac ", 0], "d20250901": ["d20250901", "season0", "75 \u20ac ", 0], "d20250902": ["d20250902", "season0", "75 \u20ac ", 0], "d20250903": ["d20250903", "season0", "75 \u20ac ", 0], "d20250904": ["d20250904", "season0", "75 \u20ac ", 0], "d20250905": ["d20250905", "season0", "75 \u20ac ", 0], "d20250906": ["d20250906", "season0", "75 \u20ac ", 0], "d20250907": ["d20250907", "season0", "75 \u20ac ", 0], "d20250908": ["d20250908", "season0", "75 \u20ac ", 0], "d20250909": ["d20250909", "season0", "75 \u20ac ", 0], "d20250910": ["d20250910", "season0", "75 \u20ac ", 0], "d20250911": ["d20250911", "season0", "75 \u20ac ", 0], "d20250912": ["d20250912", "season0", "75 \u20ac ", 0], "d20250913": ["d20250913", "season0", "75 \u20ac ", 0], "d20250914": ["d20250914", "season0", "75 \u20ac ", 0], "d20250915": ["d20250915", "season0", "75 \u20ac ", 0], "d20250916": ["d20250916", "season0", "75 \u20ac ", 0], "d20250917": ["d20250917", "season0", "75 \u20ac ", 0], "d20250918": ["d20250918", "season0", "75 \u20ac ", 0], "d20250919": ["d20250919", "season0", "75 \u20ac ", 0], "d20250920": ["d20250920", "season0", "75 \u20ac ", 0], "d20250921": ["d20250921", "season0", "75 \u20ac ", 0], "d20250922": ["d20250922", "season0", "75 \u20ac ", 0], "d20250923": ["d20250923", "season0", "75 \u20ac ", 0], "d20250924": ["d20250924", "season0", "75 \u20ac ", 0], "d20250925": ["d20250925", "season0", "75 \u20ac ", 0], "d20250926": ["d20250926", "season0", "75 \u20ac ", 0], "d20250927": ["d20250927", "season0", "75 \u20ac ", 0], "d20250928": ["d20250928", "season0", "75 \u20ac ", 0], "d20250929": ["d20250929", "season0", "75 \u20ac ", 0], "d20250930": ["d20250930", "season0", "75 \u20ac ", 0], "d20251001": ["d20251001", "season0", "75 \u20ac ", 0], "d20251002": ["d20251002", "season0", "75 \u20ac ", 0], "d20251003": ["d20251003", "season0", "75 \u20ac ", 0], "d20251004": ["d20251004", "season0", "75 \u20ac ", 0], "d20251005": ["d20251005", "season0", "75 \u20ac ", 0], "d20251006": ["d20251006", "season0", "75 \u20ac ", 0], "d20251007": ["d20251007", "season0", "75 \u20ac ", 0], "d20251008": ["d20251008", "season0", "75 \u20ac ", 0], "d20251009": ["d20251009", "season0", "75 \u20ac ", 0], "d20251010": ["d20251010", "season0", "75 \u20ac ", 0], "d20251011": ["d20251011", "season0", "75 \u20ac ", 0], "d20251012": ["d20251012", "season0", "75 \u20ac ", 0], "d20251013": ["d20251013", "season0", "75 \u20ac ", 0], "d20251014": ["d20251014", "season0", "75 \u20ac ", 0], "d20251015": ["d20251015", "season0", "75 \u20ac ", 0], "d20251016": ["d20251016", "season0", "75 \u20ac ", 0], "d20251017": ["d20251017", "season0", "75 \u20ac ", 0], "d20251018": ["d20251018", "season0", "75 \u20ac ", 0], "d20251019": ["d20251019", "season0", "75 \u20ac ", 0], "d20251020": ["d20251020", "season0", "75 \u20ac ", 0], "d20251021": ["d20251021", "season0", "75 \u20ac ", 0], "d20251022": ["d20251022", "season0", "75 \u20ac ", 0], "d20251023": ["d20251023", "season0", "75 \u20ac ", 0], "d20251024": ["d20251024", "season0", "75 \u20ac ", 0], "d20251025": ["d20251025", "season0", "75 \u20ac ", 0], "d20251026": ["d20251026", "season0", "75 \u20ac ", 0], "d20251027": ["d20251027", "season0", "75 \u20ac ", 0], "d20251028": ["d20251028", "season0", "75 \u20ac ", 0], "d20251029": ["d20251029", "season0", "75 \u20ac ", 0], "d20251030": ["d20251030", "season0", "75 \u20ac ", 0], "d20251031": ["d20251031", "season0", "75 \u20ac ", 0], "d20251101": ["d20251101", "season0", "75 \u20ac ", 0], "d20251102": ["d20251102", "season0", "75 \u20ac ", 0], "d20251103": ["d20251103", "season0", "75 \u20ac ", 0], "d20251104": ["d20251104", "season0", "75 \u20ac ", 0], "d20251105": ["d20251105", "season0", "75 \u20ac ", 0], "d20251106": ["d20251106", "season0", "75 \u20ac ", 0], "d20251107": ["d20251107", "season0", "75 \u20ac ", 0], "d20251108": ["d20251108", "season0", "75 \u20ac ", 0], "d20251109": ["d20251109", "season0", "75 \u20ac ", 0], "d20251110": ["d20251110", "season0", "75 \u20ac ", 0], "d20251111": ["d20251111", "season0", "75 \u20ac ", 0], "d20251112": ["d20251112", "season0", "75 \u20ac ", 0], "d20251113": ["d20251113", "season0", "75 \u20ac ", 0], "d20251114": ["d20251114", "season0", "75 \u20ac ", 0], "d20251115": ["d20251115", "season0", "75 \u20ac ", 0], "d20251116": ["d20251116", "season0", "75 \u20ac ", 0], "d20251117": ["d20251117", "season0", "75 \u20ac ", 0], "d20251118": ["d20251118", "season0", "75 \u20ac ", 0], "d20251119": ["d20251119", "season0", "75 \u20ac ", 0], "d20251120": ["d20251120", "season0", "75 \u20ac ", 0], "d20251121": ["d20251121", "season0", "75 \u20ac ", 0], "d20251122": ["d20251122", "season0", "75 \u20ac ", 0], "d20251123": ["d20251123", "season0", "75 \u20ac ", 0], "d20251124": ["d20251124", "season0", "75 \u20ac ", 0], "d20251125": ["d20251125", "season0", "75 \u20ac ", 0], "d20251126": ["d20251126", "season0", "75 \u20ac ", 0], "d20251127": ["d20251127", "season0", "75 \u20ac ", 0], "d20251128": ["d20251128", "season0", "75 \u20ac ", 0], "d20251129": ["d20251129", "season0", "75 \u20ac ", 0], "d20251130": ["d20251130", "season0", "75 \u20ac ", 0], "d20251201": ["d20251201", "season0", "75 \u20ac ", 0], "d20251202": ["d20251202", "season0", "75 \u20ac ", 0], "d20251203": ["d20251203", "season0", "75 \u20ac ", 0], "d20251204": ["d20251204", "season0", "75 \u20ac ", 0], "d20251205": ["d20251205", "season0", "75 \u20ac ", 0], "d20251206": ["d20251206", "season0", "75 \u20ac ", 0], "d20251207": ["d20251207", "season0", "75 \u20ac ", 0], "d20251208": ["d20251208", "season0", "75 \u20ac ", 0], "d20251209": ["d20251209", "season0", "75 \u20ac ", 0], "d20251210": ["d20251210", "season0", "75 \u20ac ", 0], "d20251211": ["d20251211", "season0", "75 \u20ac ", 0], "d20251212": ["d20251212", "season0", "75 \u20ac ", 0], "d20251213": ["d20251213", "season0", "75 \u20ac ", 0], "d20251214": ["d20251214", "season0", "75 \u20ac ", 0], "d20251215": ["d20251215", "season0", "75 \u20ac ", 0], "d20251216": ["d20251216", "season0", "75 \u20ac ", 0], "d20251217": ["d20251217", "season0", "75 \u20ac ", 0], "d20251218": ["d20251218", "season0", "75 \u20ac ", 0], "d20251219": ["d20251219", "season0", "75 \u20ac ", 0], "d20251220": ["d20251220", "season0", "75 \u20ac ", 0], "d20251221": ["d20251221", "season0", "75 \u20ac ", 0], "d20251222": ["d20251222", "season0", "75 \u20ac ", 0], "d20251223": ["d20251223", "season0", "75 \u20ac ", 0], "d20251224": ["d20251224", "season0", "75 \u20ac ", 0], "d20251225": ["d20251225", "season0", "75 \u20ac ", 0], "d20251226": ["d20251226", "season0", "75 \u20ac ", 0], "d20251227": ["d20251227", "season0", "75 \u20ac ", 0], "d20251228": ["d20251228", "season0", "75 \u20ac ", 0], "d20251229": ["d20251229", "season0", "75 \u20ac ", 0], "d20251230": ["d20251230", "season0", "75 \u20ac ", 0], "d20251231": ["d20251231", "season0", "75 \u20ac ", 0], "d20260101": ["d20260101", "season0", "75 \u20ac ", 0], "d20260102": ["d20260102", "season0", "75 \u20ac ", 0], "d20260103": ["d20260103", "season0", "75 \u20ac ", 0], "d20260104": ["d20260104", "season0", "75 \u20ac ", 0], "d20260105": ["d20260105", "season0", "75 \u20ac ", 0], "d20260106": ["d20260106", "season0", "75 \u20ac ", 0], "d20260107": ["d20260107", "season0", "75 \u20ac ", 0], "d20260108": ["d20260108", "season0", "75 \u20ac ", 0], "d20260109": ["d20260109", "season0", "75 \u20ac ", 0], "d20260110": ["d20260110", "season0", "75 \u20ac ", 0], "d20260111": ["d20260111", "season0", "75 \u20ac ", 0], "d20260112": ["d20260112", "season0", "75 \u20ac ", 0], "d20260113": ["d20260113", "season0", "75 \u20ac ", 0], "d20260114": ["d20260114", "season0", "75 \u20ac ", 0], "d20260115": ["d20260115", "season0", "75 \u20ac ", 0], "d20260116": ["d20260116", "season0", "75 \u20ac ", 0], "d20260117": ["d20260117", "season0", "75 \u20ac ", 0], "d20260118": ["d20260118", "season0", "75 \u20ac ", 0], "d20260119": ["d20260119", "season0", "75 \u20ac ", 0], "d20260120": ["d20260120", "season0", "75 \u20ac ", 0], "d20260121": ["d20260121", "season0", "75 \u20ac ", 0], "d20260122": ["d20260122", "season0", "75 \u20ac ", 0], "d20260123": ["d20260123", "season0", "75 \u20ac ", 0], "d20260124": ["d20260124", "season0", "75 \u20ac ", 0], "d20260125": ["d20260125", "season0", "75 \u20ac ", 0], "d20260126": ["d20260126", "season0", "75 \u20ac ", 0], "d20260127": ["d20260127", "season0", "75 \u20ac ", 0], "d20260128": ["d20260128", "season0", "75 \u20ac ", 0], "d20260129": ["d20260129", "season0", "75 \u20ac ", 0], "d20260130": ["d20260130", "season0", "75 \u20ac ", 0], "d20260131": ["d20260131", "season0", "75 \u20ac ", 0], "d20260201": ["d20260201", "season0", "75 \u20ac ", 0], "d20260202": ["d20260202", "season0", "75 \u20ac ", 0], "d20260203": ["d20260203", "season0", "75 \u20ac ", 0], "d20260204": ["d20260204", "season0", "75 \u20ac ", 0], "d20260205": ["d20260205", "season0", "75 \u20ac ", 0], "d20260206": ["d20260206", "season0", "75 \u20ac ", 0], "d20260207": ["d20260207", "season0", "75 \u20ac ", 0], "d20260208": ["d20260208", "season0", "75 \u20ac ", 0], "d20260209": ["d20260209", "season0", "75 \u20ac ", 0], "d20260210": ["d20260210", "season0", "75 \u20ac ", 0], "d20260211": ["d20260211", "season0", "75 \u20ac ", 0], "d20260212": ["d20260212", "season0", "75 \u20ac ", 0], "d20260213": ["d20260213", "season0", "75 \u20ac ", 0], "d20260214": ["d20260214", "season0", "75 \u20ac ", 0], "d20260215": ["d20260215", "season0", "75 \u20ac ", 0], "d20260216": ["d20260216", "season0", "75 \u20ac ", 0], "d20260217": ["d20260217", "season0", "75 \u20ac ", 0], "d20260218": ["d20260218", "season0", "75 \u20ac ", 0], "d20260219": ["d20260219", "season0", "75 \u20ac ", 0], "d20260220": ["d20260220", "season0", "75 \u20ac ", 0], "d20260221": ["d20260221", "season0", "75 \u20ac ", 0], "d20260222": ["d20260222", "season0", "75 \u20ac ", 0], "d20260223": ["d20260223", "season0", "75 \u20ac ", 0], "d20260224": ["d20260224", "season0", "75 \u20ac ", 0], "d20260225": ["d20260225", "season0", "75 \u20ac ", 0], "d20260226": ["d20260226", "season0", "75 \u20ac ", 0], "d20260227": ["d20260227", "season0", "75 \u20ac ", 0], "d20260228": ["d20260228", "season0", "75 \u20ac ", 0], "d20260301": ["d20260301", "season0", "75 \u20ac ", 0], "d20260302": ["d20260302", "season0", "75 \u20ac ", 0], "d20260303": ["d20260303", "season0", "75 \u20ac ", 0], "d20260304": ["d20260304", "season0", "75 \u20ac ", 0], "d20260305": ["d20260305", "season0", "75 \u20ac ", 0], "d20260306": ["d20260306", "season0", "75 \u20ac ", 0], "d20260307": ["d20260307", "season0", "75 \u20ac ", 0], "d20260308": ["d20260308", "season0", "75 \u20ac ", 0], "d20260309": ["d20260309", "season0", "75 \u20ac ", 0], "d20260310": ["d20260310", "season0", "75 \u20ac ", 0], "d20260311": ["d20260311", "season0", "75 \u20ac ", 0], "d20260312": ["d20260312", "season0", "75 \u20ac ", 0], "d20260313": ["d20260313", "season0", "75 \u20ac ", 0], "d20260314": ["d20260314", "season0", "75 \u20ac ", 0], "d20260315": ["d20260315", "season0", "75 \u20ac ", 0], "d20260316": ["d20260316", "season0", "75 \u20ac ", 0], "d20260317": ["d20260317", "season0", "75 \u20ac ", 0], "d20260318": ["d20260318", "season0", "75 \u20ac ", 0], "d20260319": ["d20260319", "season0", "75 \u20ac ", 0], "d20260320": ["d20260320", "season0", "75 \u20ac ", 0], "d20260321": ["d20260321", "season0", "75 \u20ac ", 0], "d20260322": ["d20260322", "season0", "75 \u20ac ", 0], "d20260323": ["d20260323", "season0", "75 \u20ac ", 0], "d20260324": ["d20260324", "season0", "75 \u20ac ", 0], "d20260325": ["d20260325", "season0", "75 \u20ac ", 0], "d20260326": ["d20260326", "season0", "75 \u20ac ", 0], "d20260327": ["d20260327", "season0", "75 \u20ac ", 0], "d20260328": ["d20260328", "season0", "75 \u20ac ", 0], "d20260329": ["d20260329", "season0", "75 \u20ac ", 0], "d20260330": ["d20260330", "season0", "75 \u20ac ", 0], "d20260331": ["d20260331", "season0", "75 \u20ac ", 0], "d20260401": ["d20260401", "season0", "75 \u20ac ", 0], "d20260402": ["d20260402", "season0", "75 \u20ac ", 0], "d20260403": ["d20260403", "season0", "75 \u20ac ", 0], "d20260404": ["d20260404", "season0", "75 \u20ac ", 0], "d20260405": ["d20260405", "season0", "75 \u20ac ", 0], "d20260406": ["d20260406", "season0", "75 \u20ac ", 0], "d20260407": ["d20260407", "season0", "75 \u20ac ", 0], "d20260408": ["d20260408", "season0", "75 \u20ac ", 0], "d20260409": ["d20260409", "season0", "75 \u20ac ", 0], "d20260410": ["d20260410", "season0", "75 \u20ac ", 0], "d20260411": ["d20260411", "season0", "75 \u20ac ", 0], "d20260412": ["d20260412", "season0", "75 \u20ac ", 0], "d20260413": ["d20260413", "season0", "75 \u20ac ", 0], "d20260414": ["d20260414", "season0", "75 \u20ac ", 0], "d20260415": ["d20260415", "season0", "75 \u20ac ", 0], "d20260416": ["d20260416", "season0", "75 \u20ac ", 0], "d20260417": ["d20260417", "season0", "75 \u20ac ", 0], "d20260418": ["d20260418", "season0", "75 \u20ac ", 0], "d20260419": ["d20260419", "season0", "75 \u20ac ", 0], "d20260420": ["d20260420", "season0", "75 \u20ac ", 0], "d20260421": ["d20260421", "season0", "75 \u20ac ", 0], "d20260422": ["d20260422", "season0", "75 \u20ac ", 0], "d20260423": ["d20260423", "season0", "75 \u20ac ", 0], "d20260424": ["d20260424", "season0", "75 \u20ac ", 0], "d20260425": ["d20260425", "season0", "75 \u20ac ", 0], "d20260426": ["d20260426", "season0", "75 \u20ac ", 0], "d20260427": ["d20260427", "season0", "75 \u20ac ", 0], "d20260428": ["d20260428", "season0", "75 \u20ac ", 0], "d20260429": ["d20260429", "season0", "75 \u20ac ", 0], "d20260430": ["d20260430", "season0", "75 \u20ac ", 0], "d20260501": ["d20260501", "season0", "75 \u20ac ", 0], "d20260502": ["d20260502", "season0", "75 \u20ac ", 0], "d20260503": ["d20260503", "season0", "75 \u20ac ", 0], "d20260504": ["d20260504", "season0", "75 \u20ac ", 0], "d20260505": ["d20260505", "season0", "75 \u20ac ", 0], "d20260506": ["d20260506", "season0", "75 \u20ac ", 0], "d20260507": ["d20260507", "season0", "75 \u20ac ", 0], "d20260508": ["d20260508", "season0", "75 \u20ac ", 0], "d20260509": ["d20260509", "season0", "75 \u20ac ", 0], "d20260510": ["d20260510", "season0", "75 \u20ac ", 0], "d20260511": ["d20260511", "season0", "75 \u20ac ", 0], "d20260512": ["d20260512", "season0", "75 \u20ac ", 0], "d20260513": ["d20260513", "season0", "75 \u20ac ", 0], "d20260514": ["d20260514", "season0", "75 \u20ac ", 0], "d20260515": ["d20260515", "season0", "75 \u20ac ", 0], "d20260516": ["d20260516", "season0", "75 \u20ac ", 0], "d20260517": ["d20260517", "season0", "75 \u20ac ", 0], "d20260518": ["d20260518", "season0", "75 \u20ac ", 0], "d20260519": ["d20260519", "season0", "75 \u20ac ", 0], "d20260520": ["d20260520", "season0", "75 \u20ac ", 0], "d20260521": ["d20260521", "season0", "75 \u20ac ", 0], "d20260522": ["d20260522", "season0", "75 \u20ac ", 0], "d20260523": ["d20260523", "season0", "75 \u20ac ", 0], "d20260524": ["d20260524", "season0", "75 \u20ac ", 0], "d20260525": ["d20260525", "season0", "75 \u20ac ", 0], "d20260526": ["d20260526", "season0", "75 \u20ac ", 0], "d20260527": ["d20260527", "season0", "75 \u20ac ", 0], "d20260528": ["d20260528", "season0", "75 \u20ac ", 0], "d20260529": ["d20260529", "season0", "75 \u20ac ", 0], "d20260530": ["d20260530", "season0", "75 \u20ac ", 0], "d20260531": ["d20260531", "season0", "75 \u20ac ", 0], "d20260601": ["d20260601", "season0", "75 \u20ac ", 0], "d20260602": ["d20260602", "season0", "75 \u20ac ", 0], "d20260603": ["d20260603", "season0", "75 \u20ac ", 0], "d20260604": ["d20260604", "season0", "75 \u20ac ", 0], "d20260605": ["d20260605", "season0", "75 \u20ac ", 0], "d20260606": ["d20260606", "season0", "75 \u20ac ", 0], "d20260607": ["d20260607", "season0", "75 \u20ac ", 0], "d20260608": ["d20260608", "season0", "75 \u20ac ", 0], "d20260609": ["d20260609", "season0", "75 \u20ac ", 0], "d20260610": ["d20260610", "season0", "75 \u20ac ", 0], "d20260611": ["d20260611", "season0", "75 \u20ac ", 0], "d20260612": ["d20260612", "season0", "75 \u20ac ", 0], "d20260613": ["d20260613", "season0", "75 \u20ac ", 0], "d20260614": ["d20260614", "season0", "75 \u20ac ", 0], "d20260615": ["d20260615", "season0", "75 \u20ac ", 0], "d20260616": ["d20260616", "season0", "75 \u20ac ", 0], "d20260617": ["d20260617", "season0", "75 \u20ac ", 0], "d20260618": ["d20260618", "season0", "75 \u20ac ", 0], "d20260619": ["d20260619", "season0", "75 \u20ac ", 0], "d20260620": ["d20260620", "season0", "75 \u20ac ", 0], "d20260621": ["d20260621", "season0", "75 \u20ac ", 0], "d20260622": ["d20260622", "season0", "75 \u20ac ", 0], "d20260623": ["d20260623", "season0", "75 \u20ac ", 0], "d20260624": ["d20260624", "season0", "75 \u20ac ", 0], "d20260625": ["d20260625", "season0", "75 \u20ac ", 0], "d20260626": ["d20260626", "season0", "75 \u20ac ", 0], "d20260627": ["d20260627", "season0", "75 \u20ac ", 0], "d20260628": ["d20260628", "season0", "75 \u20ac ", 0], "d20260629": ["d20260629", "season0", "75 \u20ac ", 0], "d20260630": ["d20260630", "season0", "75 \u20ac ", 0], "d20260701": ["d20260701", "season0", "75 \u20ac ", 0], "d20260702": ["d20260702", "season0", "75 \u20ac ", 0], "d20260703": ["d20260703", "season0", "75 \u20ac ", 0], "d20260704": ["d20260704", "season0", "75 \u20ac ", 0], "d20260705": ["d20260705", "season0", "75 \u20ac ", 0], "d20260706": ["d20260706", "season0", "75 \u20ac ", 0], "d20260707": ["d20260707", "season0", "75 \u20ac ", 0], "d20260708": ["d20260708", "season0", "75 \u20ac ", 0], "d20260709": ["d20260709", "season0", "75 \u20ac ", 0], "d20260710": ["d20260710", "season0", "75 \u20ac ", 0], "d20260711": ["d20260711", "season0", "75 \u20ac ", 0], "d20260712": ["d20260712", "season0", "75 \u20ac ", 0], "d20260713": ["d20260713", "season0", "75 \u20ac ", 0], "d20260714": ["d20260714", "season0", "75 \u20ac ", 0], "d20260715": ["d20260715", "season0", "75 \u20ac ", 0], "d20260716": ["d20260716", "season0", "75 \u20ac ", 0], "d20260717": ["d20260717", "season0", "75 \u20ac ", 0], "d20260718": ["d20260718", "season0", "75 \u20ac ", 0], "d20260719": ["d20260719", "season0", "75 \u20ac ", 0], "d20260720": ["d20260720", "season0", "75 \u20ac ", 0], "d20260721": ["d20260721", "season0", "75 \u20ac ", 0], "d20260722": ["d20260722", "season0", "75 \u20ac ", 0], "d20260723": ["d20260723", "season0", "75 \u20ac ", 0], "d20260724": ["d20260724", "season0", "75 \u20ac ", 0], "d20260725": ["d20260725", "season0", "75 \u20ac ", 0], "d20260726": ["d20260726", "season0", "75 \u20ac ", 0], "d20260727": ["d20260727", "season0", "75 \u20ac ", 0], "d20260728": ["d20260728", "season0", "75 \u20ac ", 0], "d20260729": ["d20260729", "season0", "75 \u20ac ", 0], "d20260730": ["d20260730", "season0", "75 \u20ac ", 0], "d20260731": ["d20260731", "season0", "75 \u20ac ", 0], "d20260801": ["d20260801", "season0", "75 \u20ac ", 0], "d20260802": ["d20260802", "season0", "75 \u20ac ", 0], "d20260803": ["d20260803", "season0", "75 \u20ac ", 0], "d20260804": ["d20260804", "season0", "75 \u20ac ", 0], "d20260805": ["d20260805", "season0", "75 \u20ac ", 0], "d20260806": ["d20260806", "season0", "75 \u20ac ", 0], "d20260807": ["d20260807", "season0", "75 \u20ac ", 0], "d20260808": ["d20260808", "season0", "75 \u20ac ", 0], "d20260809": ["d20260809", "season0", "75 \u20ac ", 0], "d20260810": ["d20260810", "season0", "75 \u20ac ", 0], "d20260811": ["d20260811", "season0", "75 \u20ac ", 0], "d20260812": ["d20260812", "season0", "75 \u20ac ", 0], "d20260813": ["d20260813", "season0", "75 \u20ac ", 0], "d20260814": ["d20260814", "season0", "75 \u20ac ", 0], "d20260815": ["d20260815", "season0", "75 \u20ac ", 0], "d20260816": ["d20260816", "season0", "75 \u20ac ", 0], "d20260817": ["d20260817", "season0", "75 \u20ac ", 0], "d20260818": ["d20260818", "season0", "75 \u20ac ", 0], "d20260819": ["d20260819", "season0", "75 \u20ac ", 0], "d20260820": ["d20260820", "season0", "75 \u20ac ", 0], "d20260821": ["d20260821", "season0", "75 \u20ac ", 0], "d20260822": ["d20260822", "season0", "75 \u20ac ", 0], "d20260823": ["d20260823", "season0", "75 \u20ac ", 0], "d20260824": ["d20260824", "season0", "75 \u20ac ", 0], "d20260825": ["d20260825", "season0", "75 \u20ac ", 0], "d20260826": ["d20260826", "season0", "75 \u20ac ", 0], "d20260827": ["d20260827", "season0", "75 \u20ac ", 0], "d20260828": ["d20260828", "season0", "75 \u20ac ", 0], "d20260829": ["d20260829", "season0", "75 \u20ac ", 0], "d20260830": ["d20260830", "season0", "75 \u20ac ", 0], "d20260831": ["d20260831", "season0", "75 \u20ac ", 0], "d20260901": ["d20260901", "season0", "75 \u20ac ", 0], "d20260902": ["d20260902", "season0", "75 \u20ac ", 0], "d20260903": ["d20260903", "season0", "75 \u20ac ", 0], "d20260904": ["d20260904", "season0", "75 \u20ac ", 0], "d20260905": ["d20260905", "season0", "75 \u20ac ", 0], "d20260906": ["d20260906", "season0", "75 \u20ac ", 0], "d20260907": ["d20260907", "season0", "75 \u20ac ", 0], "d20260908": ["d20260908", "season0", "75 \u20ac ", 0], "d20260909": ["d20260909", "season0", "75 \u20ac ", 0], "d20260910": ["d20260910", "season0", "75 \u20ac ", 0], "d20260911": ["d20260911", "season0", "75 \u20ac ", 0], "d20260912": ["d20260912", "season0", "75 \u20ac ", 0], "d20260913": ["d20260913", "season0", "75 \u20ac ", 0], "d20260914": ["d20260914", "season0", "75 \u20ac ", 0], "d20260915": ["d20260915", "season0", "75 \u20ac ", 0], "d20260916": ["d20260916", "season0", "75 \u20ac ", 0], "d20260917": ["d20260917", "season0", "75 \u20ac ", 0], "d20260918": ["d20260918", "season0", "75 \u20ac ", 0], "d20260919": ["d20260919", "season0", "75 \u20ac ", 0], "d20260920": ["d20260920", "season0", "75 \u20ac ", 0], "d20260921": ["d20260921", "season0", "75 \u20ac ", 0], "d20260922": ["d20260922", "season0", "75 \u20ac ", 0], "d20260923": ["d20260923", "season0", "75 \u20ac ", 0], "d20260924": ["d20260924", "season0", "75 \u20ac ", 0], "d20260925": ["d20260925", "season0", "75 \u20ac ", 0], "d20260926": ["d20260926", "season0", "75 \u20ac ", 0], "d20260927": ["d20260927", "season0", "75 \u20ac ", 0], "d20260928": ["d20260928", "season0", "75 \u20ac ", 0], "d20260929": ["d20260929", "season0", "75 \u20ac ", 0], "d20260930": ["d20260930", "season0", "75 \u20ac ", 0], "d20261001": ["d20261001", "season0", "75 \u20ac ", 0], "d20261002": ["d20261002", "season0", "75 \u20ac ", 0], "d20261003": ["d20261003", "season0", "75 \u20ac ", 0], "d20261004": ["d20261004", "season0", "75 \u20ac ", 0], "d20261005": ["d20261005", "season0", "75 \u20ac ", 0], "d20261006": ["d20261006", "season0", "75 \u20ac ", 0], "d20261007": ["d20261007", "season0", "75 \u20ac ", 0], "d20261008": ["d20261008", "season0", "75 \u20ac ", 0], "d20261009": ["d20261009", "season0", "75 \u20ac ", 0], "d20261010": ["d20261010", "season0", "75 \u20ac ", 0], "d20261011": ["d20261011", "season0", "75 \u20ac ", 0], "d20261012": ["d20261012", "season0", "75 \u20ac ", 0], "d20261013": ["d20261013", "season0", "75 \u20ac ", 0], "d20261014": ["d20261014", "season0", "75 \u20ac ", 0], "d20261015": ["d20261015", "season0", "75 \u20ac ", 0], "d20261016": ["d20261016", "season0", "75 \u20ac ", 0], "d20261017": ["d20261017", "season0", "75 \u20ac ", 0], "d20261018": ["d20261018", "season0", "75 \u20ac ", 0], "d20261019": ["d20261019", "season0", "75 \u20ac ", 0], "d20261020": ["d20261020", "season0", "75 \u20ac ", 0], "d20261021": ["d20261021", "season0", "75 \u20ac ", 0], "d20261022": ["d20261022", "season0", "75 \u20ac ", 0], "d20261023": ["d20261023", "season0", "75 \u20ac ", 0], "d20261024": ["d20261024", "season0", "75 \u20ac ", 0]};
var javascript_literals= {"Apartments": "Apartments", "Ferienhaus": "Ferienh\u00e4user", "Ferienwohnung": "Ferienwohnungen", "Hausboot": "Hausboote", "Objekt": "Objekte", "Trike": "Trikes", "Villa": "Villen", "Wohnmobil": "Wohnmobile", "activities": "Aktivit\u00e4ten", "address_title": "Adresse", "amenities": "Ausstattung", "anything_per_night_text": "item.number_of_nights+ \u0027 N\u00e4chte \u0027+item.name+\u0027 \u00e0 \u0027+item.price+ window.currency+\u0027 \u0027", "arrival": "Anreisedatum", "arrival_calendar": "Anreise", "arrival_days": "Anreise-Tage", "availability": "Kalender", "available": "frei/verf\u00fcgbar", "basic_price": "Grundpreis, wenn keine Saison", "booking": "Buchung", "booking_button_label": "Preisauskunft \u0026 Buchung", "booking_duration_not_valid_text": "\u0027Leider ist die Buchungsdauer in der Saison \u0027+entry.season_name+\u0027 nicht m\u00f6glich. Ihre Anfrage betr\u00e4gt \u0026nbsp;\u0027+entry.days_requested+\u0027\u0026nbsp; N\u00e4chte. Das Minimum f\u00fcr diese Saison betr\u00e4gt \u0026nbsp;\u0027+entry.season_min_duration+\u0027 N\u00e4chte.\u0027", "booking_fee": "Buchungsgeb\u00fchr", "booking_headline_dates_and_people": "Ihre Reisedaten", "booking_headline_extras": "Zusatzleistungen", "booking_headline_guest_data": "Ihre Kontaktdaten", "booking_menu_label": "Preisauskunft \u0026 Buchung", "calendar_title": "Belegungskalender", "city": "Ort", "click_here": "ansehen", "close_window": "Fenster schlie\u00dfen", "collision_text": "\u0027Es gibt eine \u00dcberschneidung mit einer anderen Buchung. Bitte w\u00e4hlen Sie andere Daten. \u003cbr\u003e\u0027", "company_name": "Firma", "contact_owner_label": "Vermieter kontaktieren", "country": "Land", "days": "N\u00e4chte", "december": "Dezember", "default_prompt_for_number_of_kids": "davon unter 18 Jahre", "default_rate_nights_text": "item.first_night+\u0027 - \u0027+item.last_night+\u0027 = \u0027+item.number_of_nights+ \u0027 N\u00e4chte in Standard-Saison \u00e0 \u0027 +item.price+ window.currency+\u0027 \u0027", "departure": "Abreisedatum", "departure_calendar": "Abreise/frei", "departure_days": "Abreise-Tage", "description": "Beschreibung", "email": "E-Mail", "end_day_not_valid_text": "\u0027Ihr Abreise-Wochentag ist in der Saison \u0026nbsp;\u0027+entry.season_name+\u0027 nicht m\u00f6glich. Bitte w\u00e4hlen Sie einen anderen Tag. \u003cbr\u003e\u0027", "error_please_correct_booking": "Bitte \u00e4ndern Sie Ihre Buchungsdaten.", "error_please_correct_data": "Bitte \u00e4ndern Sie die markierten Daten", "error_please_enter": "Bitte eingeben.", "expired": "Der Gutschein ist leider abgelaufen", "facts": "Fakten", "final_cleaning": "Endreinigung", "first_name": "Vorname", "first_night": "Erste Nacht", "first_night_surcharge_text": "item.first_night+\u0027 - \u0027+item.last_night+\u0027 = Preis f. erste Nacht in Saison \u0027+item.season_name+\u0027 : \u0027+item.price+ window.currency+\u0027 \u0027", "from": "von", "gdpr_title": "Datenschutz-Erkl\u00e4rung", "import_file_season_list": "season_list_de.html", "imprint_title": "Impressum", "invalid": "Gutscheincode ist nicht g\u00fcltig", "invoice_items": "Rechnungspositionen", "january": "Januar", "kid_surcharge_text": "item.first_night+\u0027 - \u0027+item.last_night+\u0027 = \u0027+item.number_of_nights+ \u0027 N\u00e4chte Aufpreis f\u00fcr \u0027+item.surplus_persons+\u0027 Jugendliche(en) mehr als \u0027+item.base_persons + \u0027 \u00e0 \u0027+item.price+ window.currency+\u0027 \u0027", "kids_beds": "Kinderbetten", "kids_chairs": "Kinder-Hochst\u00fchle", "last_name": "Nachname", "linen_towels": "Bettw\u00e4sche / Handt\u00fccher", "load_maps_image": "https://lh3.googleusercontent.com/HPvTwkrM0x5tXt7j2iBhu418jho2GZvamj-bPk90yFOigPsMSgCUZMGjgFyPd06RHh3kVpMZt0tfWAKIkbHavasRKjWF_J24H3Z4koM=s0", "load_maps_text": "Wir respektieren Ihre Privatsph\u00e4re: Erst wenn Sie hier klicken, wird die passende Karte von Google-Maps geladen. Mit Ihrem Klick erkl\u00e4ren Sie sich damit einverstanden. ", "location": "Lage", "location_title": "Lage und Umgebung", "map_title": "Karte", "mb_slogan": "Websites f\u00fcr Ferienwohnungen", "message": "Nachricht", "message_placeholder": "Ihre Nachricht an uns...", "minimum_booking": "Min. Buchung", "more_bookings_promo": "Sichere Buchungs- und Kontaktfunktion. Bereitgestellt von More-Bookings", "night": "Nacht", "normal_season_nights_text": "item.first_night+\u0027 - \u0027+item.last_night+\u0027 = \u0027+item.number_of_nights+ \u0027 N\u00e4chte in Saison \u0027+item.name+\u0027 \u00e0 \u0027+item.price+ window.currency+\u0027 \u0027", "number_of_guests": "G\u00e4ste", "occupied": "Belegt", "or": "oder", "or_enter_email": "oder E-Mail eingeben", "or_enter_phone": "oder Telefon eingeben", "overbooking_text": "\u0027Maximale Anzahl G\u00e4ste ist:\u0026nbsp;\u0027+entry.max_number_of_guests+ \u0027\u0026nbsp;Sie haben\u0026nbsp; \u0027+entry.requested_number_of_guests+ \u0027\u0026nbsp;G\u0026auml;ste gew\u0026auml;hlt. \u003cbr\u003e\u0027", "per_night": "pro Nacht", "person": "Person", "person_surcharge_text": "item.first_night+\u0027 - \u0027+item.last_night+\u0027 = \u0027+item.number_of_nights+ \u0027 N\u00e4chte Aufpreis f\u00fcr \u0027+item.surplus_persons+\u0027 Person(en) mehr als \u0027+item.base_persons + \u0027 \u00e0 \u0027+item.price+ window.currency+\u0027 \u0027", "phone": "Telefon", "phone_number": "Telefon", "photos": "Fotos", "please_correct_the_red_inputs": "Bitte korrigieren Sie die in rot markierten Felder", "please_enter": "bitte eingeben", "postcode": "Postleitzahl", "price": "Preis", "price_per_night": "Preis / Nacht", "prices": "Preise", "pricing_from": "ab", "pricing_title": "Preisliste", "promo_text": "Kalender und Buchungsfunktion bereitgestellt von More-Bookings - Clevere Websites f\u00fcr Ferienwohnungen", "redeemed": "Dieser Gutschein wurde schon eingel\u00f6st", "salutation_firma": "Firma", "salutation_frau": "Frau", "salutation_herr": "Herr", "salutation_label": "Anrede", "season_name": "Saison", "send_booking": "Buchung absenden", "send_enquiry": "Anfrage absenden", "short_stay_charge_text": "\u0027Kurzbucher-Aufschlag f\u00fcr Buchungen unter \u0027+item.short_stay_max+\u0027 Tagen. \u0027", "short_stay_surcharge_up_to": "Kurzbucher-Aufschlag bis zu", "start_day_not_valid_text": "\u0027Ihr Anreise-Wochentag ist in der Saison \u0026nbsp;\u0027+entry.season_name+\u0027 nicht m\u00f6glich. Bitte w\u00e4hlen Sie einen anderen Tag. \u003cbr\u003e\u0027", "street_with_number": "Strasse/Nr.", "subsequent_night": "Folgenacht", "surcharge_from_person_number": "Aufpreis ab Person Nummer", "thank_you_for_your_enquiry": "Vielen Dank f\u00fcr Ihre Anfrage", "thank_you_for_your_interest": "Vielen Dank f\u00fcr Ihr Interesse", "to": "bis", "total": "Gesamt", "total_accomodation": "Gesamt \u00dcbernachtungen", "total_total": "Gesamtpreis", "valid_only_on_following_days": "gilt nur f\u00fcr folgende Tage", "voucher_arrival_too_early": "Anreisedatum zu fr\u00fch f\u00fcr diesen Gutschein", "voucher_arrival_too_late": "Anreisedatum zu sp\u00e4t f\u00fcr diesen Gutschein", "voucher_code": "Gutschein-Code (wenn vorhanden)", "voucher_departure_too_late": "\u0027Abreisedatum zu sp\u00e4t f\u00fcr diesen Gutschein. Sp\u00e4testes Datum: \u0027+result.value", "voucher_min_duration_violation": "\u0027Gutschein gilt erst ab\u0027+result.value+\u0027N\u00e4chten\u0027", "week": "Woche", "you_wanted_to_ask_something": "Irgendetwas wollten Sie ja fragen...", "your_booking_will_be_dealt_with_shortly": "Ihre Anfrage wird versandt und Sie bekommen so schnell wie m\u00f6glich eine Buchungsbest\u00e4tigung", "your_email": "Ihre E-Mail", "your_landlord_will_contact_you_soon": "Ihr Vermieter wird sich so schnell wie m\u00f6glich mit Ihnen in Verbindung setzen ", "your_message": "Ihre Nachricht", "your_message_for_us": "Ihre Nachricht f\u00fcr uns", "your_message_to_the_owner": "Ihre Nachricht an den Vermieter", "your_surname": "Ihr Name", "your_team_from_more_bookings": "Ihr Team von More-Bookings"};
var backendHostUrl='https://fewoyieldmgmt.koberer.de/';
function guest_booking2(myelement, formname){
if (! document.getElementById("popupcontent")){
jQuery('body').append("");
}
var waitImage = document.getElementById('waitImage');
var backendHostUrl = 'https://fewoyieldmgmt.koberer.de/';
waitImage.style.visibility='visible';
var lang=jQuery(myelement).attr('data-lang');
var nom=jQuery(myelement).attr('data-nom');
var dialogue=jQuery(myelement).attr('data-dialogue');
var object_key = jQuery(myelement).attr('data-objectkey');
if (formname){
console.log('formname: '+formname);
var myId='#'+formname;
var myform=jQuery(myId);
var formcontent=myform.serialize();
console.log('myform: '+myform);
console.log('formcontent: '+formcontent);
}
else {
var formcontent='';
var formname='Objekt buchen'
}
var contact_intent = jQuery(myelement).attr('data-contact_intent');
if (contact_intent=='contact_owner'){
// var api_endpoint='http://localhost:8080/public_booking_dialogue?object_id=ag1mZXdveWllbGRtZ210chwLEhFjdXN0b21lcl9wcm9wZXJ0eSIFZGVtbzEM&lang=de&nom=3'
var api_endpoint=backendHostUrl+'/public_contact_owner_dialogue';
}
else {
var api_endpoint=backendHostUrl+'/public_booking_dialogue';
}
jQuery.ajax(api_endpoint, {
type: 'POST',
data: JSON.stringify({
'object_key':object_key,
'lang':lang,
'nom':nom,
'dialogue':dialogue,
'formcontent':formcontent }),
success: function(data){
jQuery('#popupcontent').html(data);
var wWidth = jQuery(window).width();
var dWidth = wWidth * 0.85;
var wHeight = jQuery(window).height();
var dHeight = wHeight * 0.9;
waitImage.style.visibility='hidden';
var mydialog=jQuery("#popupcontent").dialog({
modal: true,
title: 'Buchungsanfrage',
overlay: { opacity: 0.1, background: "black" },
width: dWidth,
height: dHeight,
draggable: true,
resizable: true
});
}
});
}
function guest_booking(myelement, formname){
var waitImage = document.getElementById('waitImage');
waitImage.style.visibility='visible';
var object_key = '';
var lang=jQuery(myelement).attr('data-lang');
var nom=jQuery(myelement).attr('data-nom');
if (formname){
console.log('formname: '+formname);
var myId='#'+formname;
var myform=jQuery(myId);
var formcontent=myform.serialize();
console.log('myform: '+myform);
console.log('formcontent: '+formcontent);
}
else {
var formcontent='';
var formname='Objekt buchen'
}
var contact_intent = jQuery(myelement).attr('data-contact_intent');
if (contact_intent=='contact_owner'){
var api_endpoint=backendHostUrl+'/public_contact_owner_dialogue';
var title = 'Vermieter kontaktieren More-Bookings 17404';
}
else {
var api_endpoint=backendHostUrl+'/public_booking_dialogue';
var title = 'Preisauskunft & Buchung More-Bookings 17404';
}
jQuery.ajax(api_endpoint, {
type: 'POST',
data: JSON.stringify({'object_key':object_key,
'lang':lang,
'nom':nom,
'formcontent':formcontent }),
success: function(data){
jQuery('#popupcontent').html(data);
var wWidth = jQuery(window).width();
var dWidth = wWidth * 0.85;
var wHeight = jQuery(window).height();
var dHeight = wHeight * 0.9;
waitImage.style.visibility='hidden';
var mydialog=jQuery("#popupcontent").dialog({
modal: true,
title: title,
overlay: { opacity: 0.1, background: "black" },
width: dWidth,
height: dHeight,
draggable: true,
resizable: true
});
}
});
}
function apply_voucher()
{
calculate_complete_form2();
}
function calculate_complete_form2()
{
var result=current_result;
if (result==='still empty') {
return;
}
function multiply_array(price, value_ordered){
var last_price_for_multiple=price[price.length-1];
var number_of_additions=Math.min(value_ordered,price.length);
var number_of_multiplications_with_last_price=value_ordered-number_of_additions;
var total=0;
for (let j = 0; j < number_of_additions; j++) {
total=total+price[j];
}
total=total+(last_price_for_multiple*number_of_multiplications_with_last_price);
return total;
}
var accomodation_price_manual=parseFloat(jQuery('#accomodation_price_manual').val());
console.log('accomodation price manual: '+accomodation_price_manual+typeof(accomodation_price_manual));
// var accomodation_price_computed=parseFloat(jQuery('#uebernachtungsbetrag').html().replace(',','.'));
var accomodation_price_computed=Number(result.rawprice);
console.log('accomodation price computed: '+accomodation_price_computed+typeof(accomodation_price_computed));
if ( isNaN(accomodation_price_manual))
{
// var accomodation_price=55;
var accomodation_price=Number(accomodation_price_computed);
console.log('accomodation price is from computed: '+accomodation_price);
}
else
{
console.log('accomodation price is from manual: '+accomodation_price_manual);
var accomodation_price=Number(accomodation_price_manual);
jQuery('#uebernachtungsbetrag').html(accomodation_price_manual+' '+window.currency);
};
console.log('accomodation price is now: '+accomodation_price);
var accomodation_items_manual=jQuery('#accomodation_items_manual').val();
if (accomodation_items_manual)
{
console.log('accomodation items manual was set: '+accomodation_items_manual);
jQuery('#rechnungstext').html(accomodation_items_manual);
}
console.log('accomodation price is now: '+accomodation_price);
// alert('accomodation price is now: '+accomodation_price);
// var accomodation_price=parseFloat(jQuery('#uebernachtungsbetrag').html())
billing_extra_total=0;
for (let i = 0; i < result.billing_extras.length; i++) {
var extra_total_location='#billing_extra_total_'+i;
var extra_price_target_location='#billing_extra_price_target_'+i;
var item_target='';
computation=result.billing_extras[i].computation;
price= result.billing_extras[i].price;
target_for_variable_price=result.billing_extras[i].target_for_variable_price;
console.log('last price: '+price[0]);
if (jQuery('#billing_extra_ordered_'+i).is(':checkbox'))
{
console.log('is checkbox');
if (jQuery('#billing_extra_ordered_'+i).is(':checked'))
{
console.log('is checked');
var value_ordered=1;
}
else
{
console.log('is not checked');
var value_ordered=0;
}
}
else
{
var value_ordered=Number(jQuery('#billing_extra_ordered_'+i).val());
}
console.log('value ordered: '+value_ordered);
if (computation==='number_per_day'){
item_target='pro Tag'
console.log('number_per_day. number ordered: '+value_ordered);
if (target_for_variable_price=='days'){
var total=multiply_array(price, window.number_of_nights)*value_ordered;
}
else {
var total=multiply_array(price, value_ordered)*window.number_of_nights;
}
}
else if (computation==='number_per_guest'){
item_target='pro Person'
if (target_for_variable_price=='guests'){
var total=multiply_array(price, window.number_of_guests)*value_ordered;
}
else {
var total=multiply_array(price, value_ordered)*window.number_of_guests;
}
}
else if (computation==='number'){
var total=multiply_array(price, value_ordered);
}
else if (['per_guest_per_day_mandatory','per_guest_per_day_optional', 'number_per_guest_per_day'].includes(computation)){
item_target='pro Person pro Tag'
if (target_for_variable_price=='days'){
var total=multiply_array(price, window.number_of_nights)*value_ordered*window.number_of_guests;
}
else if (target_for_variable_price=='guests'){
var total=multiply_array(price, window.number_of_guests)*window.number_of_nights*value_ordered;
}
else {
var total=multiply_array(price, value_ordered)*window.number_of_nights*window.number_of_guests;
}
}
else if (['per_adult_per_day_mandatory','per_adult_per_day_optional', 'number_per_adult_per_day'].includes(computation)){
item_target='pro Person pro Tag'
if (target_for_variable_price=='days'){
var total=multiply_array(price, window.number_of_nights)*value_ordered*window.number_of_adults;
}
else if (target_for_variable_price=='guests'){
var total=multiply_array(price, window.number_of_adults)*window.number_of_nights*value_ordered;
}
else {
var total=multiply_array(price, value_ordered)*window.number_of_nights*window.number_of_adults;
}
}
else if (['per_kid_per_day_mandatory','per_kid_per_day_optional', 'number_per_kid_per_day'].includes(computation)){
item_target='pro Person pro Tag'
if (target_for_variable_price=='days'){
var total=multiply_array(price, window.number_of_nights)*value_ordered*window.number_of_kids;
}
else if (target_for_variable_price=='guests'){
var total=multiply_array(price, window.number_of_kids)*window.number_of_nights*value_ordered;
}
else {
var total=multiply_array(price, value_ordered)*window.number_of_nights*window.number_of_kids;
}
}
else if (['per_guest_mandatory','per_guest_optional'].includes(computation)){
item_target='pro Person'
var total=multiply_array(price, window.number_of_guests)*value_ordered;
}
else if (['per_adult_mandatory','per_adult_optional'].includes(computation)){
item_target='pro Person'
var total=multiply_array(price, window.number_of_adults)*value_ordered;
}
else if (['per_kid_mandatory','per_kid_optional'].includes(computation)){
item_target='pro Person'
var total=multiply_array(price, window.number_of_kids)*value_ordered;
}
else if (['per_day_mandatory','per_day_optional'].includes(computation)){
item_target='pro Tag'
var total=multiply_array(price, window.number_of_nights)*value_ordered;
}
else if (['flat_mandatory','flat_optional'].includes(computation)){
var total=value_ordered*price;
}
else if (['percent_of_accomodation_mandatory','percent_of_accomodation_optional'].includes(computation)){
var total=accomodation_price*price*value_ordered/100;
}
else if (computation==='percent_of_total_mandatory'){
var pct = Array.isArray(price) ? Number(price[0]) : Number(price);
var base = (accomodation_price || 0) + (billing_extra_total || 0);
var total = value_ordered ? Math.round(base * pct / 100 * 100) / 100 : 0;
}
else if (computation==='percent_of_total_per_adult_mandatory'){
var pct = Array.isArray(price) ? Number(price[0]) : Number(price);
var base = (accomodation_price || 0) + (billing_extra_total || 0);
var total = 0;
if (window.number_of_guests && value_ordered) {
total = Math.round(base * pct / 100 * window.number_of_adults / window.number_of_guests * 100) / 100;
}
}
else {
console.log('computation not found');
console.log('computation: '+computation);
var total=Number(price);
}
billing_extra_total=billing_extra_total+total;
console.log('total für diese Zeile: '+total+typeof(total));
console.log('extra total: '+billing_extra_total);
// jQuery(extra_price_target_location).html(item_target);
jQuery(extra_total_location).html(total.toFixed(2).replace('.',',')+' '+window.currency);
}
var voucher_amount=Number(jQuery('#hidden_voucher_price').val())
console.log('voucher amount from hidden voucher price: '+voucher_amount);
var manual_voucher_amount=Number(jQuery('#voucher_amount').val());
var extra_amount=Number(jQuery('#extra_amount').val());
var total_total=(accomodation_price || 0)+(billing_extra_total || 0)
-(manual_voucher_amount || 0)
+(voucher_amount || 0)
+(extra_amount || 0);
jQuery('#total_total').html(total_total.toFixed(2).replace('.',',')+' '+window.currency);
jQuery('#total_amount').val(total_total);
}
function calculate_complete_form_old()
{
var linen_towels_price=parseFloat(jQuery('#linen_towels_price').html())
var linen_towels_ordered=Number(jQuery('#linen_towels_ordered').val());
var add1_ordered=Number(jQuery('#add1_ordered').val());
var add1_price=parseFloat(jQuery('#add1_price').html())
var add2_ordered=Number(jQuery('#add2_ordered').val());
var add2_price=parseFloat(jQuery('#add2_price').html());
var add1_computation=jQuery('#add1_computation').val();
var add2_computation=jQuery('#add2_computation').val();
console.log('add1_price: '+add1_price);
console.log('add1_ordered: '+add1_ordered);
console.log('add1_computation: '+add1_computation);
if (add1_computation ==='number_per_day')
{var add1_total=add1_ordered*window.number_of_nights*add1_price;
}
else if (add1_computation ==='flat')
{var add1_total=add1_price;}
else if (add1_computation ==='number')
{var add1_total=add1_ordered*add1_price;
}
else if (add1_computation ==='per_day')
{var add1_total=window.number_of_nights*add1_price;}
else if (add1_computation ==='per_guest_per_day')
{var number_of_guests=Number(jQuery('#number_of_guests').val());
var add1_total=window.number_of_nights*add1_price*number_of_guests;}
else if (add1_computation ==='per_adult_per_day')
{var number_of_guests=Number(jQuery('#number_of_guests').val()-jQuery('#number_of_kids').val());
var add1_total=window.number_of_nights*add1_price*number_of_guests;}
else if (add1_computation ==='per_kid_per_day')
{var number_of_guests=Number(jQuery('#number_of_kids').val());
var add1_total=window.number_of_nights*add1_price*number_of_guests;}
else if (add1_computation ==='per_guest')
{var number_of_guests=Number(jQuery('#number_of_guests').val());
var add1_total=number_of_guests*add1_price;}
else if (add1_computation ==='per_adult')
{var number_of_guests=Number(jQuery('#number_of_guests').val()-jQuery('#number_of_kids').val());
var add1_total=number_of_guests*add1_price;}
else if (add1_computation ==='per_kid')
{var number_of_guests=Number(jQuery('#number_of_kids').val());
var add1_total=number_of_guests*add1_price;}
else {var add1_total=add1_price;}
if (add2_computation ==='number_per_day')
{var add2_total=add2_ordered*window.number_of_nights*add2_price;
}
else if (add2_computation ==='flat')
{var add2_total=add2_price;}
else if (add2_computation ==='number')
{var add2_total=add2_ordered*add2_price;
}
else if (add2_computation ==='per_day')
{var add2_total=window.number_of_nights*add2_price;}
else if (add2_computation ==='per_guest_per_day')
{var number_of_guests=Number(jQuery('#number_of_guests').val());
var add2_total=window.number_of_nights*add2_price*number_of_guests;}
else if (add2_computation ==='per_adult_per_day')
{var number_of_guests=Number(jQuery('#number_of_guests').val()-jQuery('#number_of_kids').val());
var add2_total=window.number_of_nights*add2_price*number_of_guests;}
else if (add2_computation ==='per_kid_per_day')
{var number_of_guests=Number(jQuery('#number_of_kids').val());
var add2_total=window.number_of_nights*add2_price*number_of_guests;}
else if (add2_computation ==='per_guest')
{var number_of_guests=Number(jQuery('#number_of_guests').val());
var add2_total=number_of_guests*add2_price;}
else if (add2_computation ==='per_adult')
{var number_of_guests=Number(jQuery('#number_of_guests').val()-jQuery('#number_of_kids').val());
var add2_total=number_of_guests*add2_price;}
else if (add2_computation ==='per_kid')
{var number_of_guests=Number(jQuery('#number_of_kids').val());
var add2_total=number_of_guests*add2_price;}
else {var add2_total=add2_price;}
var linen_towels_total=linen_towels_price*linen_towels_ordered;
var kids_bed_price=parseFloat(jQuery('#kids_bed_price').html())
var kids_bed_ordered=Number(jQuery('#kids_bed_ordered').val());
var kids_bed_total=kids_bed_price*kids_bed_ordered;
// var voucher_amount=Number(jQuery('#voucher_amount').val())
var voucher_amount=Number(jQuery('#hidden_voucher_price').val())
console.log('voucher amount: '+voucher_amount);
var extra_amount=Number(jQuery('#extra_amount').val())
var kids_chair_price=parseFloat(jQuery('#kids_chair_price').html())
var kids_chair_ordered=Number(jQuery('#kids_chair_ordered').val());
var kids_chair_total=kids_chair_price*kids_chair_ordered;
// var booking_fee=Number(jQuery('#hidden_booking_fee').val());
var extra_amount=Number(jQuery('#extra_amount').val())
var pricelist_booking_fee_price=parseFloat(jQuery('#hidden_booking_fee').val());
console.log('hidden_booking_fee: '+pricelist_booking_fee_price);
// var pricelist_booking_fee_price=parseFloat(jQuery('#booking_fee_price').html());
var pricelist_final_cleaning_price=parseFloat(jQuery('#final_cleaning_price').html());
var accomodation_price=parseFloat(jQuery('#uebernachtungsbetrag').html().replace(',','.'))
console.log('accomodation_price: '+accomodation_price);
if (jQuery('#booking_fee_ordered').is(':checked')){
// if (jQuery("#booking_fee_ordered").prop("checked")){
console.log('booking fee checked');
var booking_fee_price=pricelist_booking_fee_price;
}
else {
var booking_fee_price=0;
console.log('booking fee unchecked');
}
if (jQuery("#final_cleaning_ordered").prop("checked")){
var final_cleaning_price=pricelist_final_cleaning_price;
console.log('cleaning fee checked');
}
else {
var final_cleaning_price=0;
}
var total_total=
( kids_bed_total || 0)
+(accomodation_price || 0)
+(booking_fee_price || 0)
+(kids_chair_total || 0)
+(linen_towels_total || 0)
+(add1_total || 0)
+(add2_total || 0)
+(voucher_amount || 0)
+(extra_amount || 0)
+(final_cleaning_price || 0);
if (linen_towels_total % 1 == 0){jQuery('#linen_towels_total').html(linen_towels_total.toFixed(0)+' '+'€');}
else {jQuery('#linen_towels_total').html(linen_towels_total.toFixed(2)+' '+'€');}
if (add1_total % 1 == 0){jQuery('#add1_total').html(add1_total.toFixed(0)+' '+'€');}
else {jQuery('#add1_total').html(add1_total.toFixed(2)+' '+'€');}
if (add2_total % 1 == 0){jQuery('#add2_total').html(add2_total.toFixed(0)+' '+'€');}
else {jQuery('#add2_total').html(add2_total.toFixed(2)+' '+'€');}
if (kids_chair_total % 1 == 0){jQuery('#kids_chair_total').html(kids_chair_total.toFixed(0)+' '+'€');}
else {jQuery('#kids_chair_total').html(kids_chair_total.toFixed(2)+' '+'€');}
if (kids_bed_total % 1 == 0){jQuery('#kids_bed_total').html(kids_bed_total.toFixed(0)+' '+'€');}
else {jQuery('#kids_bed_total').html(kids_bed_total.toFixed(2)+' '+'€');}
if (total_total % 1 == 0){jQuery('#total_total').html(total_total.toFixed(0)+' '+'€');}
else {jQuery('#total_total').html(total_total.toFixed(2)+' '+'€');}
jQuery('#booking_fee_total').html(booking_fee_price+' '+'€');
jQuery('#final_cleaning_total').html(final_cleaning_price+' '+'€');
jQuery('#total_amount').val(total_total);
};
function apply_voucher()
{
var waitImage = document.getElementById('waitImage');
waitImage.style.visibility = 'display';
var fewo_key=document.getElementById('object_id').value;
var voucher_id=jQuery('#voucher_id').val();
if (voucher_id == '') {
jQuery('#voucher_price').val('');
jQuery('#voucher_price').html('');
jQuery('#hidden_voucher_price').val(0);
jQuery('#hidden_voucher_text').val('');
jQuery('#voucher_text').html('');
calculate_complete_form2();
}
else {
var accomodation_price=parseFloat(document.getElementById('accomodation_price').value);
var formcontent=jQuery('#guest_booking').serialize();
console.log('formcontent in apply_voucher: '+formcontent);
jQuery.ajax(backendHostUrl+'/public_serve_json',{
dataType: "json",
method: 'POST',
data: JSON.stringify({'function':'voucherContent',
'fewo_key':fewo_key,
'voucher_id':voucher_id,
'accomodation_price': accomodation_price,
'formcontent': formcontent
}),
contentType : 'application/json'
}).done(
function(result){
if (result.code=='valid') {
jQuery('#voucher_text').html(result.text);
jQuery('#hidden_voucher_text').html(result.text);
jQuery('#voucher_price').html(result.price.toFixed(0)+ ' '+window.currency);
jQuery('#hidden_voucher_price').val(result.price.toFixed(0));
calculate_complete_form2();
}
else {
try {
var voucher_text=eval(javascript_literals[result.code]);
} catch (e) {
var voucher_text=javascript_literals[result.code];
}
console.log('voucher_text: '+voucher_text);
jQuery('#voucher_text').html(voucher_text);
jQuery('#voucher_price').val('');
jQuery('#voucher_price').html('');
jQuery('#hidden_voucher_price').val(0);
calculate_complete_form2();
}
waitImage.style.visibility = 'hidden';
});
}
}
// if (! document.getElementById("popupcontent")){
// alert('popupcontent does not exist');
// jQuery('body').append("");
// }
// else {
// alert('popupcontent exists');
// }
var create_buttons_and_legend = function(){
jQuery( document ).ready(function() {
jQuery( "#moreBookingsCal" ).addClass( "datepicker-center");
jQuery( "#moreBookingsCal" ).wrapAll( "
");
jQuery('body').append("");
jQuery('body').append("");
jQuery( " " ).insertAfter( "#moreBookingsCal" );
jQuery( "\t " ).insertAfter( "#moreBookingsCal" );
jQuery( " ").insertAfter('#moreBookingsCal');
jQuery( " \
\
\
frei/verfügbar \
\
Anreise \
\
Belegt \
\
Abreise/frei \
\
\
\
\
\
\
ab 75 € pro Nacht\
\
\
\
\
").insertAfter('#moreBookingsCal');
jQuery('head').append(' ');
jQuery('head').append(' ');
// I am trying to find out if the bootstrap css is already loaded. If not, I will load it.
var load_bootstrap = true;
for (var i = 0; i < document.styleSheets.length; i++) {
if (document.styleSheets[i].href && document.styleSheets[i].href.match("bootstrap")) {
load_bootstrap = false;
}
}
if (load_bootstrap) {
jQuery('head').append(' ');
}
});
}
var functions_depending_on_jquery = function()
{
jQuery( document ).ready(function() {
create_buttons_and_legend();
// insert jquery-ui only when it is not already loaded in order to avoid conflicts
if (typeof jQuery.ui == 'undefined' || typeof jQuery.ui.datepicker == 'undefined'){
console.log('jquery-ui datepicker or whole library does not exist, need to load it');
jQuery.getScript("https://ajax.googleapis.com/ajax/libs/jqueryui/1.14.1/jquery-ui.min.js").done( function(){
console.log('jquery-ui loaded, done invoked');
jQuery.getScript('https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.1/i18n/jquery-ui-i18n.min.js', function() {
console.log('calling init_calendar');
init_calendar();
});
}
)
} // end if jquery-ui does not exist
else
{
console.log('jquery-ui was already loaded on page');
console.log('jQuery.ui.version: '+jQuery.ui.version);
jQuery.getScript('https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.1/i18n/jquery-ui-i18n.min.js').done(function() {
init_calendar();
}); // end getScript
}
}); // end document ready
}; // end functions depending on jquery
/*This is supposed to be jQuery(document).ready in plain javascript*/
function ready(fn) {
if (document.readyState !== 'loading') {
fn();
return;
}
document.addEventListener('DOMContentLoaded', fn);
}
ready(function(){
if (typeof jQuery == 'undefined' || jQuery.fn.jquery < '1.7.0')
{
var script = document.createElement('script');
document.head.appendChild(script);
script.type = "text/javascript";
script.src = "https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js";
script.onload=functions_depending_on_jquery;
console.log('had to load jquery');
}
else
{
console.log('jquery already loaded on original page');
functions_depending_on_jquery();
}
console.log('waited until document loaded and checked for jquery only then...');
}) // end ready
function openInfo(Link, w, h) {
parameters=jQuery('#MoreBookingsPre').serialize();
console.log('Parameters: '+parameters);
wide=parseInt(w);
high=parseInt(h);
var hoehe = screen.availHeight;
var breite = screen.availWidth;
console.log('Breite: '+breite);
var ypos = 100;
high=hoehe-150;
// wide=breite-150;
wide=900;
// if(high+100 > hoehe && hoehe > 300)
// {
// high = hoehe-100;
// ypos = 0;
// }
// name=String("info");
dimension=String("width=" + wide + "," + "height=" + high + "," + "screenX=100" + "," + "screenY=" + ypos + "," + "scrollbars");
info = window.open(Link+'&'+parameters, "New booking" ,dimension);
info.focus();
info.resizeTo(wide,high);
info.moveTo(100,ypos);
}
function openInfo2(Link, w, h) {
parameters=jQuery('#MoreBookingsPre').serialize();
console.log('Parameters: '+parameters);
wide=parseInt(w);
high=parseInt(h);
var hoehe = screen.availHeight;
var breite = screen.availWidth;
console.log('Breite: '+breite);
var ypos = 100;
high=hoehe-150;
wide=900;
dimension=String("width=" + wide + "," + "height=" + high + "," + "screenX=100" + "," + "screenY=" + ypos + "," + "scrollbars");
info = window.open(Link+'&'+parameters, "New booking" ,dimension);
info.focus();
info.resizeTo(wide,high);
info.moveTo(100,ypos);
}
function guest_booking2(myelement, formname){
if (! document.getElementById("popupcontent")){
jQuery('body').append("");
}
var waitImage = document.getElementById('waitImage');
var backendHostUrl = 'https://fewoyieldmgmt.koberer.de/';
waitImage.style.visibility='visible';
var lang=jQuery(myelement).attr('data-lang');
var nom=jQuery(myelement).attr('data-nom');
var dialogue=jQuery(myelement).attr('data-dialogue');
var object_key = jQuery(myelement).attr('data-objectkey');
if (formname){
console.log('formname: '+formname);
var myId='#'+formname;
var myform=jQuery(myId);
var formcontent=myform.serialize();
console.log('myform: '+myform);
console.log('formcontent: '+formcontent);
}
else {
var formcontent='';
var formname='Objekt buchen'
}
var contact_intent = jQuery(myelement).attr('data-contact_intent');
if (contact_intent=='contact_owner'){
// var api_endpoint='http://localhost:8080/public_booking_dialogue?object_id=ag1mZXdveWllbGRtZ210chwLEhFjdXN0b21lcl9wcm9wZXJ0eSIFZGVtbzEM&lang=de&nom=3'
var api_endpoint=backendHostUrl+'/public_contact_owner_dialogue';
var title = 'Vermieter kontaktieren More-Bookings 17404';
}
else {
var title = 'Preisauskunft & Buchung More-Bookings 17404';
var api_endpoint=backendHostUrl+'/public_booking_dialogue';
}
jQuery.ajax(api_endpoint, {
type: 'POST',
data: JSON.stringify({
'object_key':object_key,
'lang':lang,
'nom':nom,
'dialogue':dialogue,
'formcontent':formcontent }),
success: function(data){
jQuery('#popupcontent').html(data);
var wWidth = jQuery(window).width();
var dWidth = wWidth * 0.85;
var wHeight = jQuery(window).height();
var dHeight = wHeight * 0.9;
waitImage.style.visibility='hidden';
var mydialog=jQuery("#popupcontent").dialog({
modal: true,
title: title,
overlay: { opacity: 0.1, background: "black" },
width: dWidth,
height: dHeight,
draggable: true,
resizable: true
});
}
});
}