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'); } jQuery.ajax(backendHostUrl +'/public_serve_json',{ dataType: "json", type: 'POST', data: JSON.stringify({'function':'computeprice', 'formcontent':formcontent}), contentType : 'application/json' }).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= "
"+text+"
"+lineprice+"
"; 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); if (['no_acknowledgement', 'mandatory_acknowledgement','optional_acknowledgement'].includes(result.billing_extras[i].computation)) { 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).text(result.billing_extras[i].pricedescription_ml[lang]+' ').append(newLink); jQuery(extra_price_description_location).append(newLink); } else { jQuery(extra_price_description_location).text(result.billing_extras[i].pricedescription_ml[lang]); } item_price=''; } else { jQuery(extra_price_description_location).text(result.billing_extras[i].pricedescription_ml[lang]); 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('.',',')+' '+window.currency; } else { item_price = item_price.toFixed(0)+' '+window.currency; } } 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])+' '+window.currency+', '; } } } 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); } // jQuery('#final_cleaning_price').html(result.pricedict.final_cleaning+' '+window.currency); // jQuery('#booking_fee_price').html(result.pricedict.booking_fee+' '+window.currency); // jQuery('#kids_bed_price').html(result.pricedict.kids_bed+' '+window.currency); // jQuery('#kids_chair_price').html(result.pricedict.kids_chair+' '+window.currency); // jQuery('#linen_towels_price').html(result.pricedict.linen_towels+' '+window.currency); // jQuery('#add1_price').html(result.pricedict.add1_price+' '+window.currency); // jQuery('#add1_name').html(result.pricedict.add1_name); // jQuery('#add1_computation').val(result.pricedict.add1_computation); // jQuery('#add2_price').html(result.pricedict.add2_price+' '+window.currency); // jQuery('#add2_name').html(result.pricedict.add2_name); // jQuery('#add2_computation').val(result.pricedict.add2_computation); 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]; } 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.') } } ); // 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('Bla 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+'  Tage. Das Minimum für diese Saison beträgt  '+entry.season_min_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 preis_ermitteln_old() { 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'); } jQuery.ajax(backendHostUrl +'/public_serve_json',{ dataType: "json", type: 'POST', data: JSON.stringify({'function':'computeprice', 'formcontent':formcontent}), contentType : 'application/json' }).done( function(result){ // jQuery('#rechnungstext').html( result.invoicetext); jQuery('#rechnungstext').empty(); 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=frei/verfügbar; } 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+' '; } 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+' '; } 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+' '; } 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+' '; } else if (item.kind=='short_stay_charge'){ 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+' '; } else { console.log('undefined pricing item: '+item.kind); var text=item.name; } var lineprice=item.total + ' '+window.currency; var zeile= "
"+text+"
"+lineprice+"
"; 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); // jQuery('#uebernachtungsbetrag').html(result.price); jQuery('#final_cleaning_price').html(result.pricedict.final_cleaning+' '+window.currency); jQuery('#booking_fee_price').html(result.pricedict.booking_fee+' '+window.currency); jQuery('#kids_bed_price').html(result.pricedict.kids_bed+' '+window.currency); jQuery('#kids_chair_price').html(result.pricedict.kids_chair+' '+window.currency); jQuery('#linen_towels_price').html(result.pricedict.linen_towels+' '+window.currency); jQuery('#add1_price').html(result.pricedict.add1_price+' '+window.currency); jQuery('#add1_name').html(result.pricedict.add1_name); jQuery('#add1_computation').val(result.pricedict.add1_computation); jQuery('#add2_price').html(result.pricedict.add2_price+' '+window.currency); jQuery('#add2_name').html(result.pricedict.add2_name); jQuery('#add2_computation').val(result.pricedict.add2_computation); 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]; } 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.') } } ); jQuery('#accomodation_price').val(result.rawprice); apply_voucher(); window.number_of_nights=result.number_of_nights; calculate_complete_form2(); waitImage.style.visibility = 'hidden'; }); }; function activate_datepicker(){ jQuery.datepicker.setDefaults( jQuery.datepicker.regional[ "de" ] ); jQuery('.date').datepicker({ buttonImage: 'https://api.more-bookings.com/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={"d20250105": ["d20250105", "season0", "69 \u20ac", 0], "d20250106": ["d20250106", "season0", "69 \u20ac", 0], "d20250107": ["d20250107", "season0", "69 \u20ac", 0], "d20250108": ["d20250108", "season0", "69 \u20ac", 0], "d20250109": ["d20250109", "season0", "69 \u20ac", 0], "d20250110": ["d20250110", "season0", "69 \u20ac", 0], "d20250111": ["d20250111", "season0", "69 \u20ac", 0], "d20250112": ["d20250112", "season0", "69 \u20ac", 0], "d20250113": ["d20250113", "season0", "69 \u20ac", 0], "d20250114": ["d20250114", "season0", "69 \u20ac", 0], "d20250115": ["d20250115", "season0", "69 \u20ac", 0], "d20250116": ["d20250116", "season0", "69 \u20ac", 0], "d20250117": ["d20250117", "season0", "69 \u20ac", 0], "d20250118": ["d20250118", "season0", "69 \u20ac", 0], "d20250119": ["d20250119", "season0", "69 \u20ac", 0], "d20250120": ["d20250120", "season0", "69 \u20ac", 0], "d20250121": ["d20250121", "season0", "69 \u20ac", 0], "d20250122": ["d20250122", "season0", "69 \u20ac", 0], "d20250123": ["d20250123", "season0", "69 \u20ac", 0], "d20250124": ["d20250124", "season0", "69 \u20ac", 0], "d20250125": ["d20250125", "season0", "69 \u20ac", 0], "d20250126": ["d20250126", "season0", "69 \u20ac", 0], "d20250127": ["d20250127", "season0", "69 \u20ac", 0], "d20250128": ["d20250128", "season0", "69 \u20ac", 0], "d20250129": ["d20250129", "season0", "69 \u20ac", 0], "d20250130": ["d20250130", "season0", "69 \u20ac", 0], "d20250131": ["d20250131", "season0", "69 \u20ac", 0], "d20250201": ["d20250201", "season0", "69 \u20ac", 0], "d20250202": ["d20250202", "season0", "69 \u20ac", 0], "d20250203": ["d20250203", "season0", "69 \u20ac", 0], "d20250204": ["d20250204", "season0", "69 \u20ac", 0], "d20250205": ["d20250205", "season0", "69 \u20ac", 0], "d20250206": ["d20250206", "season0", "69 \u20ac", 0], "d20250207": ["d20250207", "season0", "69 \u20ac", 0], "d20250208": ["d20250208", "season0", "69 \u20ac", 0], "d20250209": ["d20250209", "season0", "69 \u20ac", 0], "d20250210": ["d20250210", "season0", "69 \u20ac", 0], "d20250211": ["d20250211", "season0", "69 \u20ac", 0], "d20250212": ["d20250212", "season0", "69 \u20ac", 0], "d20250213": ["d20250213", "season0", "69 \u20ac", 0], "d20250214": ["d20250214", "season0", "69 \u20ac", 0], "d20250215": ["d20250215", "season0", "69 \u20ac", 0], "d20250216": ["d20250216", "season0", "69 \u20ac", 0], "d20250217": ["d20250217", "season0", "69 \u20ac", 0], "d20250218": ["d20250218", "season0", "69 \u20ac", 0], "d20250219": ["d20250219", "season0", "69 \u20ac", 0], "d20250220": ["d20250220", "season0", "69 \u20ac", 0], "d20250221": ["d20250221", "season0", "69 \u20ac", 0], "d20250222": ["d20250222", "season0", "69 \u20ac", 0], "d20250223": ["d20250223", "season0", "69 \u20ac", 0], "d20250224": ["d20250224", "season0", "69 \u20ac", 0], "d20250225": ["d20250225", "season0", "69 \u20ac", 0], "d20250226": ["d20250226", "season0", "69 \u20ac", 0], "d20250227": ["d20250227", "season0", "69 \u20ac", 0], "d20250228": ["d20250228", "season0", "69 \u20ac", 0], "d20250301": ["d20250301", "season0", "69 \u20ac", 0], "d20250302": ["d20250302", "season0", "69 \u20ac", 0], "d20250303": ["d20250303", "season0", "69 \u20ac", 0], "d20250304": ["d20250304", "season0", "69 \u20ac", 0], "d20250305": ["d20250305", "season0", "69 \u20ac", 0], "d20250306": ["d20250306", "season0", "69 \u20ac", 0], "d20250307": ["d20250307", "season0", "69 \u20ac", 0], "d20250308": ["d20250308", "season0", "69 \u20ac", 0], "d20250309": ["d20250309", "season0", "69 \u20ac", 0], "d20250310": ["d20250310", "season0", "69 \u20ac", 0], "d20250311": ["d20250311", "season0", "69 \u20ac", 0], "d20250312": ["d20250312", "season0", "69 \u20ac", 0], "d20250313": ["d20250313", "season0", "69 \u20ac", 0], "d20250314": ["d20250314", "season0", "69 \u20ac", 0], "d20250315": ["d20250315", "season0", "69 \u20ac", 0], "d20250316": ["d20250316", "season0", "69 \u20ac", 0], "d20250317": ["d20250317", "season0", "69 \u20ac", 0], "d20250318": ["d20250318", "season0", "69 \u20ac", 0], "d20250319": ["d20250319", "season0", "69 \u20ac", 0], "d20250320": ["d20250320", "season0", "69 \u20ac", 0], "d20250321": ["d20250321", "season0", "69 \u20ac", 0], "d20250322": ["d20250322", "season0", "69 \u20ac", 0], "d20250323": ["d20250323", "season0", "69 \u20ac", 0], "d20250324": ["d20250324", "season0", "69 \u20ac", 0], "d20250325": ["d20250325", "season0", "69 \u20ac", 0], "d20250326": ["d20250326", "season0", "69 \u20ac", 0], "d20250327": ["d20250327", "season0", "69 \u20ac", 0], "d20250328": ["d20250328", "season0", "69 \u20ac", 0], "d20250329": ["d20250329", "season0", "69 \u20ac", 0], "d20250330": ["d20250330", "season0", "69 \u20ac", 0], "d20250331": ["d20250331", "season0", "69 \u20ac", 0], "d20250401": ["d20250401", "season0", "69 \u20ac", 0], "d20250402": ["d20250402", "season0", "69 \u20ac", 0], "d20250403": ["d20250403", "season0arrival", "69 \u20ac", 0], "d20250404": ["d20250404", "season0departure", "69 \u20ac", 0], "d20250405": ["d20250405", "season0", "69 \u20ac", 0], "d20250406": ["d20250406", "season0", "69 \u20ac", 0], "d20250407": ["d20250407", "season0", "69 \u20ac", 0], "d20250408": ["d20250408", "season0", "69 \u20ac", 0], "d20250409": ["d20250409", "season0", "69 \u20ac", 0], "d20250410": ["d20250410", "season0", "69 \u20ac", 0], "d20250411": ["d20250411", "season0", "69 \u20ac", 0], "d20250412": ["d20250412", "season0arrival", "69 \u20ac", 0], "d20250413": ["d20250413", "occupied", "89 \u20ac", 1], "d20250414": ["d20250414", "occupied", "89 \u20ac", 1], "d20250415": ["d20250415", "occupied", "89 \u20ac", 1], "d20250416": ["d20250416", "occupied", "89 \u20ac", 1], "d20250417": ["d20250417", "occupied", "89 \u20ac", 1], "d20250418": ["d20250418", "occupied", "89 \u20ac", 1], "d20250419": ["d20250419", "occupied", "89 \u20ac", 1], "d20250420": ["d20250420", "occupied", "89 \u20ac", 1], "d20250421": ["d20250421", "season0departure", "89 \u20ac", 0], "d20250422": ["d20250422", "season0", "89 \u20ac", 0], "d20250423": ["d20250423", "season0", "89 \u20ac", 0], "d20250424": ["d20250424", "season0", "89 \u20ac", 0], "d20250425": ["d20250425", "season0", "89 \u20ac", 0], "d20250426": ["d20250426", "season0", "89 \u20ac", 0], "d20250427": ["d20250427", "season0", "69 \u20ac", 0], "d20250428": ["d20250428", "season0", "69 \u20ac", 0], "d20250429": ["d20250429", "season0", "89 \u20ac", 0], "d20250430": ["d20250430", "season0", "89 \u20ac", 0], "d20250501": ["d20250501", "season0", "89 \u20ac", 0], "d20250502": ["d20250502", "season0", "89 \u20ac", 0], "d20250503": ["d20250503", "season0", "89 \u20ac", 0], "d20250504": ["d20250504", "season0", "89 \u20ac", 0], "d20250505": ["d20250505", "season0", "89 \u20ac", 0], "d20250506": ["d20250506", "season0", "89 \u20ac", 0], "d20250507": ["d20250507", "season0", "89 \u20ac", 0], "d20250508": ["d20250508", "season0", "89 \u20ac", 0], "d20250509": ["d20250509", "season0", "89 \u20ac", 0], "d20250510": ["d20250510", "season0", "89 \u20ac", 0], "d20250511": ["d20250511", "season0", "89 \u20ac", 0], "d20250512": ["d20250512", "season0", "89 \u20ac", 0], "d20250513": ["d20250513", "season0", "89 \u20ac", 0], "d20250514": ["d20250514", "season0", "89 \u20ac", 0], "d20250515": ["d20250515", "season0", "89 \u20ac", 0], "d20250516": ["d20250516", "season0", "89 \u20ac", 0], "d20250517": ["d20250517", "season0", "89 \u20ac", 0], "d20250518": ["d20250518", "season0", "89 \u20ac", 0], "d20250519": ["d20250519", "season0", "89 \u20ac", 0], "d20250520": ["d20250520", "season0", "89 \u20ac", 0], "d20250521": ["d20250521", "season0", "89 \u20ac", 0], "d20250522": ["d20250522", "season0", "89 \u20ac", 0], "d20250523": ["d20250523", "season0", "89 \u20ac", 0], "d20250524": ["d20250524", "season0", "89 \u20ac", 0], "d20250525": ["d20250525", "season0", "89 \u20ac", 0], "d20250526": ["d20250526", "season0", "89 \u20ac", 0], "d20250527": ["d20250527", "season0", "89 \u20ac", 0], "d20250528": ["d20250528", "season0arrival", "89 \u20ac", 0], "d20250529": ["d20250529", "occupied", "89 \u20ac", 1], "d20250530": ["d20250530", "occupied", "89 \u20ac", 1], "d20250531": ["d20250531", "season0departure", "89 \u20ac", 0], "d20250601": ["d20250601", "season0", "89 \u20ac", 0], "d20250602": ["d20250602", "season0", "89 \u20ac", 0], "d20250603": ["d20250603", "season0", "89 \u20ac", 0], "d20250604": ["d20250604", "season0", "89 \u20ac", 0], "d20250605": ["d20250605", "season0", "89 \u20ac", 0], "d20250606": ["d20250606", "season0", "89 \u20ac", 0], "d20250607": ["d20250607", "season0arrival", "89 \u20ac", 0], "d20250608": ["d20250608", "occupied", "89 \u20ac", 1], "d20250609": ["d20250609", "season0departure", "89 \u20ac", 0], "d20250610": ["d20250610", "season0", "89 \u20ac", 0], "d20250611": ["d20250611", "season0", "89 \u20ac", 0], "d20250612": ["d20250612", "season0", "89 \u20ac", 0], "d20250613": ["d20250613", "season0arrival", "89 \u20ac", 0], "d20250614": ["d20250614", "occupied", "89 \u20ac", 1], "d20250615": ["d20250615", "occupied", "89 \u20ac", 1], "d20250616": ["d20250616", "occupied", "109 \u20ac", 1], "d20250617": ["d20250617", "occupied", "109 \u20ac", 1], "d20250618": ["d20250618", "occupied", "109 \u20ac", 1], "d20250619": ["d20250619", "occupied", "109 \u20ac", 1], "d20250620": ["d20250620", "season0departure", "109 \u20ac", 0], "d20250621": ["d20250621", "season0arrival", "109 \u20ac", 0], "d20250622": ["d20250622", "occupied", "109 \u20ac", 1], "d20250623": ["d20250623", "occupied", "109 \u20ac", 1], "d20250624": ["d20250624", "occupied", "109 \u20ac", 1], "d20250625": ["d20250625", "occupied", "109 \u20ac", 1], "d20250626": ["d20250626", "occupied", "109 \u20ac", 1], "d20250627": ["d20250627", "occupied", "109 \u20ac", 1], "d20250628": ["d20250628", "occupied", "109 \u20ac", 1], "d20250629": ["d20250629", "occupied", "109 \u20ac", 1], "d20250630": ["d20250630", "occupied", "109 \u20ac", 1], "d20250701": ["d20250701", "occupied", "109 \u20ac", 1], "d20250702": ["d20250702", "occupied", "109 \u20ac", 1], "d20250703": ["d20250703", "occupied", "109 \u20ac", 1], "d20250704": ["d20250704", "occupied", "109 \u20ac", 1], "d20250705": ["d20250705", "occupied", "109 \u20ac", 1], "d20250706": ["d20250706", "occupied", "109 \u20ac", 1], "d20250707": ["d20250707", "occupied", "109 \u20ac", 1], "d20250708": ["d20250708", "occupied", "109 \u20ac", 1], "d20250709": ["d20250709", "occupied", "109 \u20ac", 1], "d20250710": ["d20250710", "occupied", "109 \u20ac", 1], "d20250711": ["d20250711", "occupied", "109 \u20ac", 1], "d20250712": ["d20250712", "season0departure", "109 \u20ac", 0], "d20250713": ["d20250713", "season0arrival", "109 \u20ac", 0], "d20250714": ["d20250714", "occupied", "109 \u20ac", 1], "d20250715": ["d20250715", "occupied", "109 \u20ac", 1], "d20250716": ["d20250716", "occupied", "109 \u20ac", 1], "d20250717": ["d20250717", "occupied", "109 \u20ac", 1], "d20250718": ["d20250718", "occupied", "109 \u20ac", 1], "d20250719": ["d20250719", "occupied", "109 \u20ac", 1], "d20250720": ["d20250720", "occupied", "109 \u20ac", 1], "d20250721": ["d20250721", "occupied", "109 \u20ac", 1], "d20250722": ["d20250722", "occupied", "109 \u20ac", 1], "d20250723": ["d20250723", "occupied", "109 \u20ac", 1], "d20250724": ["d20250724", "occupied", "109 \u20ac", 1], "d20250725": ["d20250725", "occupied", "109 \u20ac", 1], "d20250726": ["d20250726", "occupied", "109 \u20ac", 1], "d20250727": ["d20250727", "occupied", "109 \u20ac", 1], "d20250728": ["d20250728", "occupied", "109 \u20ac", 1], "d20250729": ["d20250729", "occupied", "109 \u20ac", 1], "d20250730": ["d20250730", "occupied", "109 \u20ac", 1], "d20250731": ["d20250731", "occupied", "109 \u20ac", 1], "d20250801": ["d20250801", "occupied", "109 \u20ac", 1], "d20250802": ["d20250802", "occupied", "109 \u20ac", 1], "d20250803": ["d20250803", "occupied", "109 \u20ac", 1], "d20250804": ["d20250804", "occupied", "109 \u20ac", 1], "d20250805": ["d20250805", "occupied", "109 \u20ac", 1], "d20250806": ["d20250806", "occupied", "109 \u20ac", 1], "d20250807": ["d20250807", "occupied", "109 \u20ac", 1], "d20250808": ["d20250808", "occupied", "109 \u20ac", 1], "d20250809": ["d20250809", "occupied", "109 \u20ac", 1], "d20250810": ["d20250810", "occupied", "109 \u20ac", 1], "d20250811": ["d20250811", "occupied", "109 \u20ac", 1], "d20250812": ["d20250812", "occupied", "109 \u20ac", 1], "d20250813": ["d20250813", "season0departure", "109 \u20ac", 0], "d20250814": ["d20250814", "season0", "109 \u20ac", 0], "d20250815": ["d20250815", "season0arrival", "109 \u20ac", 0], "d20250816": ["d20250816", "occupied", "109 \u20ac", 1], "d20250817": ["d20250817", "occupied", "109 \u20ac", 1], "d20250818": ["d20250818", "season0departure", "109 \u20ac", 0], "d20250819": ["d20250819", "season0arrival", "109 \u20ac", 0], "d20250820": ["d20250820", "occupied", "109 \u20ac", 1], "d20250821": ["d20250821", "occupied", "109 \u20ac", 1], "d20250822": ["d20250822", "season0departure", "109 \u20ac", 0], "d20250823": ["d20250823", "season0", "109 \u20ac", 0], "d20250824": ["d20250824", "season0arrival", "109 \u20ac", 0], "d20250825": ["d20250825", "occupied", "109 \u20ac", 1], "d20250826": ["d20250826", "occupied", "109 \u20ac", 1], "d20250827": ["d20250827", "occupied", "109 \u20ac", 1], "d20250828": ["d20250828", "occupied", "109 \u20ac", 1], "d20250829": ["d20250829", "occupied", "109 \u20ac", 1], "d20250830": ["d20250830", "occupied", "109 \u20ac", 1], "d20250831": ["d20250831", "occupied", "109 \u20ac", 1], "d20250901": ["d20250901", "occupied", "109 \u20ac", 1], "d20250902": ["d20250902", "occupied", "109 \u20ac", 1], "d20250903": ["d20250903", "occupied", "109 \u20ac", 1], "d20250904": ["d20250904", "occupied", "109 \u20ac", 1], "d20250905": ["d20250905", "occupied", "109 \u20ac", 1], "d20250906": ["d20250906", "occupied", "109 \u20ac", 1], "d20250907": ["d20250907", "occupied", "109 \u20ac", 1], "d20250908": ["d20250908", "occupied", "109 \u20ac", 1], "d20250909": ["d20250909", "occupied", "109 \u20ac", 1], "d20250910": ["d20250910", "occupied", "109 \u20ac", 1], "d20250911": ["d20250911", "occupied", "109 \u20ac", 1], "d20250912": ["d20250912", "season0departure", "109 \u20ac", 0], "d20250913": ["d20250913", "season0", "109 \u20ac", 0], "d20250914": ["d20250914", "season0", "109 \u20ac", 0], "d20250915": ["d20250915", "season0", "109 \u20ac", 0], "d20250916": ["d20250916", "season0", "89 \u20ac", 0], "d20250917": ["d20250917", "season0", "89 \u20ac", 0], "d20250918": ["d20250918", "season0", "89 \u20ac", 0], "d20250919": ["d20250919", "season0", "89 \u20ac", 0], "d20250920": ["d20250920", "season0", "89 \u20ac", 0], "d20250921": ["d20250921", "season0", "89 \u20ac", 0], "d20250922": ["d20250922", "season0", "89 \u20ac", 0], "d20250923": ["d20250923", "season0", "89 \u20ac", 0], "d20250924": ["d20250924", "season0", "89 \u20ac", 0], "d20250925": ["d20250925", "season0", "89 \u20ac", 0], "d20250926": ["d20250926", "season0", "89 \u20ac", 0], "d20250927": ["d20250927", "season0", "89 \u20ac", 0], "d20250928": ["d20250928", "season0", "89 \u20ac", 0], "d20250929": ["d20250929", "season0", "89 \u20ac", 0], "d20250930": ["d20250930", "season0", "89 \u20ac", 0], "d20251001": ["d20251001", "season0", "89 \u20ac", 0], "d20251002": ["d20251002", "season0", "89 \u20ac", 0], "d20251003": ["d20251003", "season0", "89 \u20ac", 0], "d20251004": ["d20251004", "season0", "89 \u20ac", 0], "d20251005": ["d20251005", "season0", "89 \u20ac", 0], "d20251006": ["d20251006", "season0", "89 \u20ac", 0], "d20251007": ["d20251007", "season0", "89 \u20ac", 0], "d20251008": ["d20251008", "season0", "89 \u20ac", 0], "d20251009": ["d20251009", "season0", "89 \u20ac", 0], "d20251010": ["d20251010", "season0", "89 \u20ac", 0], "d20251011": ["d20251011", "season0", "89 \u20ac", 0], "d20251012": ["d20251012", "season0", "89 \u20ac", 0], "d20251013": ["d20251013", "season0", "89 \u20ac", 0], "d20251014": ["d20251014", "season0", "89 \u20ac", 0], "d20251015": ["d20251015", "season0", "89 \u20ac", 0], "d20251016": ["d20251016", "season0", "89 \u20ac", 0], "d20251017": ["d20251017", "season0", "89 \u20ac", 0], "d20251018": ["d20251018", "season0", "89 \u20ac", 0], "d20251019": ["d20251019", "season0", "89 \u20ac", 0], "d20251020": ["d20251020", "season0", "89 \u20ac", 0], "d20251021": ["d20251021", "season0", "89 \u20ac", 0], "d20251022": ["d20251022", "season0", "89 \u20ac", 0], "d20251023": ["d20251023", "season0", "89 \u20ac", 0], "d20251024": ["d20251024", "season0", "89 \u20ac", 0], "d20251025": ["d20251025", "season0", "89 \u20ac", 0], "d20251026": ["d20251026", "season0", "89 \u20ac", 0], "d20251027": ["d20251027", "season0", "89 \u20ac", 0], "d20251028": ["d20251028", "season0", "89 \u20ac", 0], "d20251029": ["d20251029", "season0", "89 \u20ac", 0], "d20251030": ["d20251030", "season0", "89 \u20ac", 0], "d20251031": ["d20251031", "season0", "89 \u20ac", 0], "d20251101": ["d20251101", "season0", "69 \u20ac", 0], "d20251102": ["d20251102", "season0", "69 \u20ac", 0], "d20251103": ["d20251103", "season0", "69 \u20ac", 0], "d20251104": ["d20251104", "season0", "69 \u20ac", 0], "d20251105": ["d20251105", "season0", "69 \u20ac", 0], "d20251106": ["d20251106", "season0", "69 \u20ac", 0], "d20251107": ["d20251107", "season0", "69 \u20ac", 0], "d20251108": ["d20251108", "season0", "69 \u20ac", 0], "d20251109": ["d20251109", "season0", "69 \u20ac", 0], "d20251110": ["d20251110", "season0", "69 \u20ac", 0], "d20251111": ["d20251111", "season0", "69 \u20ac", 0], "d20251112": ["d20251112", "season0", "69 \u20ac", 0], "d20251113": ["d20251113", "season0", "69 \u20ac", 0], "d20251114": ["d20251114", "season0", "69 \u20ac", 0], "d20251115": ["d20251115", "season0", "69 \u20ac", 0], "d20251116": ["d20251116", "season0", "69 \u20ac", 0], "d20251117": ["d20251117", "season0", "69 \u20ac", 0], "d20251118": ["d20251118", "season0", "69 \u20ac", 0], "d20251119": ["d20251119", "season0", "69 \u20ac", 0], "d20251120": ["d20251120", "season0", "69 \u20ac", 0], "d20251121": ["d20251121", "season0", "69 \u20ac", 0], "d20251122": ["d20251122", "season0", "69 \u20ac", 0], "d20251123": ["d20251123", "season0", "69 \u20ac", 0], "d20251124": ["d20251124", "season0", "69 \u20ac", 0], "d20251125": ["d20251125", "season0", "69 \u20ac", 0], "d20251126": ["d20251126", "season0", "69 \u20ac", 0], "d20251127": ["d20251127", "season0", "69 \u20ac", 0], "d20251128": ["d20251128", "season0", "69 \u20ac", 0], "d20251129": ["d20251129", "season0", "69 \u20ac", 0], "d20251130": ["d20251130", "season0", "69 \u20ac", 0], "d20251201": ["d20251201", "season0", "69 \u20ac", 0], "d20251202": ["d20251202", "season0", "69 \u20ac", 0], "d20251203": ["d20251203", "season0", "69 \u20ac", 0], "d20251204": ["d20251204", "season0", "69 \u20ac", 0], "d20251205": ["d20251205", "season0", "69 \u20ac", 0], "d20251206": ["d20251206", "season0", "69 \u20ac", 0], "d20251207": ["d20251207", "season0", "69 \u20ac", 0], "d20251208": ["d20251208", "season0", "69 \u20ac", 0], "d20251209": ["d20251209", "season0", "69 \u20ac", 0], "d20251210": ["d20251210", "season0", "69 \u20ac", 0], "d20251211": ["d20251211", "season0", "69 \u20ac", 0], "d20251212": ["d20251212", "season0", "69 \u20ac", 0], "d20251213": ["d20251213", "season0", "69 \u20ac", 0], "d20251214": ["d20251214", "season0", "69 \u20ac", 0], "d20251215": ["d20251215", "season0", "69 \u20ac", 0], "d20251216": ["d20251216", "season0", "69 \u20ac", 0], "d20251217": ["d20251217", "season0", "69 \u20ac", 0], "d20251218": ["d20251218", "season0", "69 \u20ac", 0], "d20251219": ["d20251219", "season0", "69 \u20ac", 0], "d20251220": ["d20251220", "season0", "69 \u20ac", 0], "d20251221": ["d20251221", "season0", "69 \u20ac", 0], "d20251222": ["d20251222", "season0", "109 \u20ac", 0], "d20251223": ["d20251223", "season0", "109 \u20ac", 0], "d20251224": ["d20251224", "season0", "109 \u20ac", 0], "d20251225": ["d20251225", "season0", "109 \u20ac", 0], "d20251226": ["d20251226", "season0", "109 \u20ac", 0], "d20251227": ["d20251227", "season0", "109 \u20ac", 0], "d20251228": ["d20251228", "season0", "109 \u20ac", 0], "d20251229": ["d20251229", "season0", "109 \u20ac", 0], "d20251230": ["d20251230", "season0", "109 \u20ac", 0], "d20251231": ["d20251231", "season0", "109 \u20ac", 0], "d20260101": ["d20260101", "season0", "109 \u20ac", 0], "d20260102": ["d20260102", "season0", "109 \u20ac", 0], "d20260103": ["d20260103", "season0", "109 \u20ac", 0], "d20260104": ["d20260104", "season0", "109 \u20ac", 0], "d20260105": ["d20260105", "season0arrival", "69 \u20ac ", 0], "d20260106": ["d20260106", "occupied", "69 \u20ac ", 1], "d20260107": ["d20260107", "occupied", "69 \u20ac ", 1], "d20260108": ["d20260108", "occupied", "69 \u20ac ", 1], "d20260109": ["d20260109", "occupied", "69 \u20ac ", 1], "d20260110": ["d20260110", "occupied", "69 \u20ac ", 1], "d20260111": ["d20260111", "occupied", "69 \u20ac ", 1], "d20260112": ["d20260112", "occupied", "69 \u20ac ", 1], "d20260113": ["d20260113", "occupied", "69 \u20ac ", 1], "d20260114": ["d20260114", "occupied", "69 \u20ac ", 1], "d20260115": ["d20260115", "occupied", "69 \u20ac ", 1], "d20260116": ["d20260116", "occupied", "69 \u20ac ", 1], "d20260117": ["d20260117", "occupied", "69 \u20ac ", 1], "d20260118": ["d20260118", "occupied", "69 \u20ac ", 1], "d20260119": ["d20260119", "occupied", "69 \u20ac ", 1], "d20260120": ["d20260120", "occupied", "69 \u20ac ", 1], "d20260121": ["d20260121", "occupied", "69 \u20ac ", 1], "d20260122": ["d20260122", "occupied", "69 \u20ac ", 1], "d20260123": ["d20260123", "occupied", "69 \u20ac ", 1], "d20260124": ["d20260124", "occupied", "69 \u20ac ", 1], "d20260125": ["d20260125", "occupied", "69 \u20ac ", 1], "d20260126": ["d20260126", "occupied", "69 \u20ac ", 1], "d20260127": ["d20260127", "occupied", "69 \u20ac ", 1], "d20260128": ["d20260128", "occupied", "69 \u20ac ", 1], "d20260129": ["d20260129", "occupied", "69 \u20ac ", 1], "d20260130": ["d20260130", "occupied", "69 \u20ac ", 1], "d20260131": ["d20260131", "occupied", "69 \u20ac ", 1], "d20260201": ["d20260201", "occupied", "69 \u20ac ", 1], "d20260202": ["d20260202", "occupied", "69 \u20ac ", 1], "d20260203": ["d20260203", "occupied", "69 \u20ac ", 1], "d20260204": ["d20260204", "occupied", "69 \u20ac ", 1], "d20260205": ["d20260205", "occupied", "69 \u20ac ", 1], "d20260206": ["d20260206", "occupied", "69 \u20ac ", 1], "d20260207": ["d20260207", "occupied", "69 \u20ac ", 1], "d20260208": ["d20260208", "occupied", "69 \u20ac ", 1], "d20260209": ["d20260209", "occupied", "69 \u20ac ", 1], "d20260210": ["d20260210", "occupied", "69 \u20ac ", 1], "d20260211": ["d20260211", "occupied", "69 \u20ac ", 1], "d20260212": ["d20260212", "occupied", "69 \u20ac ", 1], "d20260213": ["d20260213", "occupied", "69 \u20ac ", 1], "d20260214": ["d20260214", "occupied", "69 \u20ac ", 1], "d20260215": ["d20260215", "occupied", "69 \u20ac ", 1], "d20260216": ["d20260216", "occupied", "69 \u20ac ", 1], "d20260217": ["d20260217", "occupied", "69 \u20ac ", 1], "d20260218": ["d20260218", "occupied", "69 \u20ac ", 1], "d20260219": ["d20260219", "occupied", "69 \u20ac ", 1], "d20260220": ["d20260220", "occupied", "69 \u20ac ", 1], "d20260221": ["d20260221", "occupied", "69 \u20ac ", 1], "d20260222": ["d20260222", "occupied", "69 \u20ac ", 1], "d20260223": ["d20260223", "occupied", "69 \u20ac ", 1], "d20260224": ["d20260224", "occupied", "69 \u20ac ", 1], "d20260225": ["d20260225", "occupied", "69 \u20ac ", 1], "d20260226": ["d20260226", "occupied", "69 \u20ac ", 1], "d20260227": ["d20260227", "occupied", "69 \u20ac ", 1], "d20260228": ["d20260228", "occupied", "69 \u20ac ", 1], "d20260301": ["d20260301", "occupied", "69 \u20ac ", 1], "d20260302": ["d20260302", "occupied", "69 \u20ac ", 1], "d20260303": ["d20260303", "occupied", "69 \u20ac ", 1], "d20260304": ["d20260304", "occupied", "69 \u20ac ", 1], "d20260305": ["d20260305", "occupied", "69 \u20ac ", 1], "d20260306": ["d20260306", "occupied", "69 \u20ac ", 1], "d20260307": ["d20260307", "occupied", "69 \u20ac ", 1], "d20260308": ["d20260308", "occupied", "69 \u20ac ", 1], "d20260309": ["d20260309", "occupied", "69 \u20ac ", 1], "d20260310": ["d20260310", "occupied", "69 \u20ac ", 1], "d20260311": ["d20260311", "occupied", "69 \u20ac ", 1], "d20260312": ["d20260312", "occupied", "69 \u20ac ", 1], "d20260313": ["d20260313", "occupied", "69 \u20ac ", 1], "d20260314": ["d20260314", "occupied", "69 \u20ac ", 1], "d20260315": ["d20260315", "occupied", "69 \u20ac ", 1], "d20260316": ["d20260316", "occupied", "69 \u20ac ", 1], "d20260317": ["d20260317", "occupied", "69 \u20ac ", 1], "d20260318": ["d20260318", "occupied", "69 \u20ac ", 1], "d20260319": ["d20260319", "occupied", "69 \u20ac ", 1], "d20260320": ["d20260320", "occupied", "69 \u20ac ", 1], "d20260321": ["d20260321", "occupied", "69 \u20ac ", 1], "d20260322": ["d20260322", "occupied", "69 \u20ac ", 1], "d20260323": ["d20260323", "occupied", "69 \u20ac ", 1], "d20260324": ["d20260324", "occupied", "69 \u20ac ", 1], "d20260325": ["d20260325", "occupied", "69 \u20ac ", 1], "d20260326": ["d20260326", "occupied", "69 \u20ac ", 1], "d20260327": ["d20260327", "occupied", "69 \u20ac ", 1], "d20260328": ["d20260328", "occupied", "69 \u20ac ", 1], "d20260329": ["d20260329", "occupied", "69 \u20ac ", 1], "d20260330": ["d20260330", "occupied", "69 \u20ac ", 1], "d20260331": ["d20260331", "occupied", "69 \u20ac ", 1], "d20260401": ["d20260401", "occupied", "69 \u20ac ", 1], "d20260402": ["d20260402", "occupied", "69 \u20ac ", 1], "d20260403": ["d20260403", "occupied", "69 \u20ac ", 1], "d20260404": ["d20260404", "occupied", "69 \u20ac ", 1], "d20260405": ["d20260405", "occupied", "69 \u20ac ", 1], "d20260406": ["d20260406", "occupied", "69 \u20ac ", 1], "d20260407": ["d20260407", "occupied", "69 \u20ac ", 1], "d20260408": ["d20260408", "occupied", "69 \u20ac ", 1], "d20260409": ["d20260409", "occupied", "69 \u20ac ", 1], "d20260410": ["d20260410", "occupied", "69 \u20ac ", 1], "d20260411": ["d20260411", "occupied", "69 \u20ac ", 1], "d20260412": ["d20260412", "occupied", "69 \u20ac ", 1], "d20260413": ["d20260413", "occupied", "69 \u20ac ", 1], "d20260414": ["d20260414", "occupied", "69 \u20ac ", 1], "d20260415": ["d20260415", "occupied", "69 \u20ac ", 1], "d20260416": ["d20260416", "occupied", "69 \u20ac ", 1], "d20260417": ["d20260417", "occupied", "69 \u20ac ", 1], "d20260418": ["d20260418", "occupied", "69 \u20ac ", 1], "d20260419": ["d20260419", "occupied", "69 \u20ac ", 1], "d20260420": ["d20260420", "occupied", "69 \u20ac ", 1], "d20260421": ["d20260421", "occupied", "69 \u20ac ", 1], "d20260422": ["d20260422", "occupied", "69 \u20ac ", 1], "d20260423": ["d20260423", "occupied", "69 \u20ac ", 1], "d20260424": ["d20260424", "occupied", "69 \u20ac ", 1], "d20260425": ["d20260425", "occupied", "69 \u20ac ", 1], "d20260426": ["d20260426", "occupied", "69 \u20ac ", 1], "d20260427": ["d20260427", "occupied", "69 \u20ac ", 1], "d20260428": ["d20260428", "occupied", "69 \u20ac ", 1], "d20260429": ["d20260429", "occupied", "69 \u20ac ", 1], "d20260430": ["d20260430", "occupied", "69 \u20ac ", 1], "d20260501": ["d20260501", "occupied", "69 \u20ac ", 1], "d20260502": ["d20260502", "occupied", "69 \u20ac ", 1], "d20260503": ["d20260503", "occupied", "69 \u20ac ", 1], "d20260504": ["d20260504", "occupied", "69 \u20ac ", 1], "d20260505": ["d20260505", "occupied", "69 \u20ac ", 1], "d20260506": ["d20260506", "occupied", "69 \u20ac ", 1], "d20260507": ["d20260507", "occupied", "69 \u20ac ", 1], "d20260508": ["d20260508", "occupied", "69 \u20ac ", 1], "d20260509": ["d20260509", "occupied", "69 \u20ac ", 1], "d20260510": ["d20260510", "occupied", "69 \u20ac ", 1], "d20260511": ["d20260511", "occupied", "69 \u20ac ", 1], "d20260512": ["d20260512", "occupied", "69 \u20ac ", 1], "d20260513": ["d20260513", "occupied", "69 \u20ac ", 1], "d20260514": ["d20260514", "occupied", "69 \u20ac ", 1], "d20260515": ["d20260515", "occupied", "69 \u20ac ", 1], "d20260516": ["d20260516", "occupied", "69 \u20ac ", 1], "d20260517": ["d20260517", "occupied", "69 \u20ac ", 1], "d20260518": ["d20260518", "occupied", "69 \u20ac ", 1], "d20260519": ["d20260519", "occupied", "69 \u20ac ", 1], "d20260520": ["d20260520", "occupied", "69 \u20ac ", 1], "d20260521": ["d20260521", "occupied", "69 \u20ac ", 1], "d20260522": ["d20260522", "occupied", "69 \u20ac ", 1], "d20260523": ["d20260523", "occupied", "69 \u20ac ", 1], "d20260524": ["d20260524", "occupied", "69 \u20ac ", 1], "d20260525": ["d20260525", "occupied", "69 \u20ac ", 1], "d20260526": ["d20260526", "occupied", "69 \u20ac ", 1], "d20260527": ["d20260527", "occupied", "69 \u20ac ", 1], "d20260528": ["d20260528", "occupied", "69 \u20ac ", 1], "d20260529": ["d20260529", "occupied", "69 \u20ac ", 1], "d20260530": ["d20260530", "occupied", "69 \u20ac ", 1], "d20260531": ["d20260531", "occupied", "69 \u20ac ", 1], "d20260601": ["d20260601", "occupied", "69 \u20ac ", 1], "d20260602": ["d20260602", "occupied", "69 \u20ac ", 1], "d20260603": ["d20260603", "occupied", "69 \u20ac ", 1], "d20260604": ["d20260604", "occupied", "69 \u20ac ", 1], "d20260605": ["d20260605", "occupied", "69 \u20ac ", 1], "d20260606": ["d20260606", "occupied", "69 \u20ac ", 1], "d20260607": ["d20260607", "occupied", "69 \u20ac ", 1], "d20260608": ["d20260608", "occupied", "69 \u20ac ", 1], "d20260609": ["d20260609", "occupied", "69 \u20ac ", 1], "d20260610": ["d20260610", "occupied", "69 \u20ac ", 1], "d20260611": ["d20260611", "occupied", "69 \u20ac ", 1], "d20260612": ["d20260612", "occupied", "69 \u20ac ", 1], "d20260613": ["d20260613", "occupied", "69 \u20ac ", 1], "d20260614": ["d20260614", "occupied", "69 \u20ac ", 1], "d20260615": ["d20260615", "occupied", "69 \u20ac ", 1], "d20260616": ["d20260616", "occupied", "69 \u20ac ", 1], "d20260617": ["d20260617", "occupied", "69 \u20ac ", 1], "d20260618": ["d20260618", "occupied", "69 \u20ac ", 1], "d20260619": ["d20260619", "occupied", "69 \u20ac ", 1], "d20260620": ["d20260620", "occupied", "69 \u20ac ", 1], "d20260621": ["d20260621", "occupied", "69 \u20ac ", 1], "d20260622": ["d20260622", "occupied", "69 \u20ac ", 1], "d20260623": ["d20260623", "occupied", "69 \u20ac ", 1], "d20260624": ["d20260624", "occupied", "69 \u20ac ", 1], "d20260625": ["d20260625", "occupied", "69 \u20ac ", 1], "d20260626": ["d20260626", "occupied", "69 \u20ac ", 1], "d20260627": ["d20260627", "occupied", "69 \u20ac ", 1], "d20260628": ["d20260628", "occupied", "69 \u20ac ", 1], "d20260629": ["d20260629", "occupied", "69 \u20ac ", 1], "d20260630": ["d20260630", "occupied", "69 \u20ac ", 1], "d20260701": ["d20260701", "occupied", "69 \u20ac ", 1], "d20260702": ["d20260702", "occupied", "69 \u20ac ", 1], "d20260703": ["d20260703", "occupied", "69 \u20ac ", 1], "d20260704": ["d20260704", "occupied", "69 \u20ac ", 1], "d20260705": ["d20260705", "occupied", "69 \u20ac ", 1], "d20260706": ["d20260706", "occupied", "69 \u20ac ", 1], "d20260707": ["d20260707", "occupied", "69 \u20ac ", 1], "d20260708": ["d20260708", "occupied", "69 \u20ac ", 1], "d20260709": ["d20260709", "occupied", "69 \u20ac ", 1], "d20260710": ["d20260710", "occupied", "69 \u20ac ", 1], "d20260711": ["d20260711", "occupied", "69 \u20ac ", 1], "d20260712": ["d20260712", "occupied", "69 \u20ac ", 1], "d20260713": ["d20260713", "occupied", "69 \u20ac ", 1], "d20260714": ["d20260714", "occupied", "69 \u20ac ", 1], "d20260715": ["d20260715", "occupied", "69 \u20ac ", 1], "d20260716": ["d20260716", "occupied", "69 \u20ac ", 1], "d20260717": ["d20260717", "occupied", "69 \u20ac ", 1], "d20260718": ["d20260718", "occupied", "69 \u20ac ", 1], "d20260719": ["d20260719", "occupied", "69 \u20ac ", 1], "d20260720": ["d20260720", "occupied", "69 \u20ac ", 1], "d20260721": ["d20260721", "occupied", "69 \u20ac ", 1], "d20260722": ["d20260722", "occupied", "69 \u20ac ", 1], "d20260723": ["d20260723", "occupied", "69 \u20ac ", 1], "d20260724": ["d20260724", "occupied", "69 \u20ac ", 1], "d20260725": ["d20260725", "occupied", "69 \u20ac ", 1], "d20260726": ["d20260726", "occupied", "69 \u20ac ", 1], "d20260727": ["d20260727", "occupied", "69 \u20ac ", 1], "d20260728": ["d20260728", "occupied", "69 \u20ac ", 1], "d20260729": ["d20260729", "occupied", "69 \u20ac ", 1], "d20260730": ["d20260730", "occupied", "69 \u20ac ", 1], "d20260731": ["d20260731", "occupied", "69 \u20ac ", 1], "d20260801": ["d20260801", "occupied", "69 \u20ac ", 1], "d20260802": ["d20260802", "occupied", "69 \u20ac ", 1], "d20260803": ["d20260803", "occupied", "69 \u20ac ", 1], "d20260804": ["d20260804", "occupied", "69 \u20ac ", 1], "d20260805": ["d20260805", "occupied", "69 \u20ac ", 1], "d20260806": ["d20260806", "occupied", "69 \u20ac ", 1], "d20260807": ["d20260807", "occupied", "69 \u20ac ", 1], "d20260808": ["d20260808", "occupied", "69 \u20ac ", 1], "d20260809": ["d20260809", "occupied", "69 \u20ac ", 1], "d20260810": ["d20260810", "occupied", "69 \u20ac ", 1], "d20260811": ["d20260811", "occupied", "69 \u20ac ", 1], "d20260812": ["d20260812", "occupied", "69 \u20ac ", 1], "d20260813": ["d20260813", "occupied", "69 \u20ac ", 1], "d20260814": ["d20260814", "occupied", "69 \u20ac ", 1], "d20260815": ["d20260815", "occupied", "69 \u20ac ", 1], "d20260816": ["d20260816", "occupied", "69 \u20ac ", 1], "d20260817": ["d20260817", "occupied", "69 \u20ac ", 1], "d20260818": ["d20260818", "occupied", "69 \u20ac ", 1], "d20260819": ["d20260819", "occupied", "69 \u20ac ", 1], "d20260820": ["d20260820", "occupied", "69 \u20ac ", 1], "d20260821": ["d20260821", "occupied", "69 \u20ac ", 1], "d20260822": ["d20260822", "occupied", "69 \u20ac ", 1], "d20260823": ["d20260823", "occupied", "69 \u20ac ", 1], "d20260824": ["d20260824", "occupied", "69 \u20ac ", 1], "d20260825": ["d20260825", "occupied", "69 \u20ac ", 1], "d20260826": ["d20260826", "occupied", "69 \u20ac ", 1], "d20260827": ["d20260827", "occupied", "69 \u20ac ", 1], "d20260828": ["d20260828", "occupied", "69 \u20ac ", 1], "d20260829": ["d20260829", "occupied", "69 \u20ac ", 1], "d20260830": ["d20260830", "occupied", "69 \u20ac ", 1], "d20260831": ["d20260831", "occupied", "69 \u20ac ", 1], "d20260901": ["d20260901", "occupied", "69 \u20ac ", 1], "d20260902": ["d20260902", "occupied", "69 \u20ac ", 1], "d20260903": ["d20260903", "occupied", "69 \u20ac ", 1], "d20260904": ["d20260904", "occupied", "69 \u20ac ", 1], "d20260905": ["d20260905", "occupied", "69 \u20ac ", 1], "d20260906": ["d20260906", "occupied", "69 \u20ac ", 1], "d20260907": ["d20260907", "occupied", "69 \u20ac ", 1], "d20260908": ["d20260908", "occupied", "69 \u20ac ", 1], "d20260909": ["d20260909", "occupied", "69 \u20ac ", 1], "d20260910": ["d20260910", "occupied", "69 \u20ac ", 1], "d20260911": ["d20260911", "occupied", "69 \u20ac ", 1], "d20260912": ["d20260912", "occupied", "69 \u20ac ", 1], "d20260913": ["d20260913", "occupied", "69 \u20ac ", 1], "d20260914": ["d20260914", "occupied", "69 \u20ac ", 1], "d20260915": ["d20260915", "occupied", "69 \u20ac ", 1], "d20260916": ["d20260916", "occupied", "69 \u20ac ", 1], "d20260917": ["d20260917", "occupied", "69 \u20ac ", 1], "d20260918": ["d20260918", "occupied", "69 \u20ac ", 1], "d20260919": ["d20260919", "occupied", "69 \u20ac ", 1], "d20260920": ["d20260920", "occupied", "69 \u20ac ", 1], "d20260921": ["d20260921", "occupied", "69 \u20ac ", 1], "d20260922": ["d20260922", "occupied", "69 \u20ac ", 1], "d20260923": ["d20260923", "occupied", "69 \u20ac ", 1], "d20260924": ["d20260924", "occupied", "69 \u20ac ", 1], "d20260925": ["d20260925", "occupied", "69 \u20ac ", 1], "d20260926": ["d20260926", "occupied", "69 \u20ac ", 1], "d20260927": ["d20260927", "occupied", "69 \u20ac ", 1], "d20260928": ["d20260928", "occupied", "69 \u20ac ", 1], "d20260929": ["d20260929", "occupied", "69 \u20ac ", 1], "d20260930": ["d20260930", "occupied", "69 \u20ac ", 1], "d20261001": ["d20261001", "occupied", "69 \u20ac ", 1], "d20261002": ["d20261002", "occupied", "69 \u20ac ", 1], "d20261003": ["d20261003", "occupied", "69 \u20ac ", 1], "d20261004": ["d20261004", "occupied", "69 \u20ac ", 1], "d20261005": ["d20261005", "occupied", "69 \u20ac ", 1], "d20261006": ["d20261006", "occupied", "69 \u20ac ", 1], "d20261007": ["d20261007", "occupied", "69 \u20ac ", 1], "d20261008": ["d20261008", "occupied", "69 \u20ac ", 1], "d20261009": ["d20261009", "occupied", "69 \u20ac ", 1], "d20261010": ["d20261010", "occupied", "69 \u20ac ", 1], "d20261011": ["d20261011", "occupied", "69 \u20ac ", 1], "d20261012": ["d20261012", "occupied", "69 \u20ac ", 1], "d20261013": ["d20261013", "occupied", "69 \u20ac ", 1], "d20261014": ["d20261014", "occupied", "69 \u20ac ", 1], "d20261015": ["d20261015", "occupied", "69 \u20ac ", 1], "d20261016": ["d20261016", "occupied", "69 \u20ac ", 1], "d20261017": ["d20261017", "occupied", "69 \u20ac ", 1], "d20261018": ["d20261018", "occupied", "69 \u20ac ", 1], "d20261019": ["d20261019", "occupied", "69 \u20ac ", 1], "d20261020": ["d20261020", "occupied", "69 \u20ac ", 1], "d20261021": ["d20261021", "occupied", "69 \u20ac ", 1], "d20261022": ["d20261022", "occupied", "69 \u20ac ", 1], "d20261023": ["d20261023", "occupied", "69 \u20ac ", 1], "d20261024": ["d20261024", "occupied", "69 \u20ac ", 1], "d20261025": ["d20261025", "occupied", "69 \u20ac ", 1], "d20261026": ["d20261026", "occupied", "69 \u20ac ", 1], "d20261027": ["d20261027", "occupied", "69 \u20ac ", 1], "d20261028": ["d20261028", "occupied", "69 \u20ac ", 1], "d20261029": ["d20261029", "occupied", "69 \u20ac ", 1], "d20261030": ["d20261030", "occupied", "69 \u20ac ", 1], "d20261031": ["d20261031", "occupied", "69 \u20ac ", 1], "d20261101": ["d20261101", "occupied", "69 \u20ac ", 1], "d20261102": ["d20261102", "occupied", "69 \u20ac ", 1], "d20261103": ["d20261103", "occupied", "69 \u20ac ", 1], "d20261104": ["d20261104", "occupied", "69 \u20ac ", 1], "d20261105": ["d20261105", "occupied", "69 \u20ac ", 1], "d20261106": ["d20261106", "occupied", "69 \u20ac ", 1], "d20261107": ["d20261107", "occupied", "69 \u20ac ", 1], "d20261108": ["d20261108", "occupied", "69 \u20ac ", 1], "d20261109": ["d20261109", "occupied", "69 \u20ac ", 1], "d20261110": ["d20261110", "occupied", "69 \u20ac ", 1], "d20261111": ["d20261111", "occupied", "69 \u20ac ", 1], "d20261112": ["d20261112", "occupied", "69 \u20ac ", 1], "d20261113": ["d20261113", "occupied", "69 \u20ac ", 1], "d20261114": ["d20261114", "occupied", "69 \u20ac ", 1], "d20261115": ["d20261115", "occupied", "69 \u20ac ", 1], "d20261116": ["d20261116", "occupied", "69 \u20ac ", 1], "d20261117": ["d20261117", "occupied", "69 \u20ac ", 1], "d20261118": ["d20261118", "occupied", "69 \u20ac ", 1], "d20261119": ["d20261119", "occupied", "69 \u20ac ", 1], "d20261120": ["d20261120", "occupied", "69 \u20ac ", 1], "d20261121": ["d20261121", "occupied", "69 \u20ac ", 1], "d20261122": ["d20261122", "occupied", "69 \u20ac ", 1], "d20261123": ["d20261123", "occupied", "69 \u20ac ", 1], "d20261124": ["d20261124", "occupied", "69 \u20ac ", 1], "d20261125": ["d20261125", "occupied", "69 \u20ac ", 1], "d20261126": ["d20261126", "occupied", "69 \u20ac ", 1], "d20261127": ["d20261127", "occupied", "69 \u20ac ", 1], "d20261128": ["d20261128", "occupied", "69 \u20ac ", 1], "d20261129": ["d20261129", "occupied", "69 \u20ac ", 1], "d20261130": ["d20261130", "occupied", "69 \u20ac ", 1], "d20261201": ["d20261201", "occupied", "69 \u20ac ", 1], "d20261202": ["d20261202", "occupied", "69 \u20ac ", 1], "d20261203": ["d20261203", "occupied", "69 \u20ac ", 1], "d20261204": ["d20261204", "occupied", "69 \u20ac ", 1], "d20261205": ["d20261205", "occupied", "69 \u20ac ", 1], "d20261206": ["d20261206", "occupied", "69 \u20ac ", 1], "d20261207": ["d20261207", "occupied", "69 \u20ac ", 1], "d20261208": ["d20261208", "occupied", "69 \u20ac ", 1], "d20261209": ["d20261209", "occupied", "69 \u20ac ", 1], "d20261210": ["d20261210", "occupied", "69 \u20ac ", 1], "d20261211": ["d20261211", "occupied", "69 \u20ac ", 1], "d20261212": ["d20261212", "occupied", "69 \u20ac ", 1], "d20261213": ["d20261213", "occupied", "69 \u20ac ", 1], "d20261214": ["d20261214", "occupied", "69 \u20ac ", 1], "d20261215": ["d20261215", "occupied", "69 \u20ac ", 1], "d20261216": ["d20261216", "occupied", "69 \u20ac ", 1], "d20261217": ["d20261217", "occupied", "69 \u20ac ", 1], "d20261218": ["d20261218", "occupied", "69 \u20ac ", 1], "d20261219": ["d20261219", "occupied", "69 \u20ac ", 1], "d20261220": ["d20261220", "occupied", "69 \u20ac ", 1], "d20261221": ["d20261221", "occupied", "69 \u20ac ", 1], "d20261222": ["d20261222", "occupied", "69 \u20ac ", 1], "d20261223": ["d20261223", "occupied", "69 \u20ac ", 1], "d20261224": ["d20261224", "occupied", "69 \u20ac ", 1], "d20261225": ["d20261225", "occupied", "69 \u20ac ", 1], "d20261226": ["d20261226", "occupied", "69 \u20ac ", 1], "d20261227": ["d20261227", "occupied", "69 \u20ac ", 1], "d20261228": ["d20261228", "occupied", "69 \u20ac ", 1], "d20261229": ["d20261229", "occupied", "69 \u20ac ", 1], "d20261230": ["d20261230", "occupied", "69 \u20ac ", 1], "d20261231": ["d20261231", "occupied", "69 \u20ac ", 1], "d20270101": ["d20270101", "occupied", "69 \u20ac ", 1], "d20270102": ["d20270102", "occupied", "69 \u20ac ", 1], "d20270103": ["d20270103", "occupied", "69 \u20ac ", 1], "d20270104": ["d20270104", "occupied", "69 \u20ac ", 1], "d20270105": ["d20270105", "occupied", "69 \u20ac ", 1], "d20270106": ["d20270106", "occupied", "69 \u20ac ", 1], "d20270107": ["d20270107", "occupied", "69 \u20ac ", 1], "d20270108": ["d20270108", "occupied", "69 \u20ac ", 1], "d20270109": ["d20270109", "occupied", "69 \u20ac ", 1], "d20270110": ["d20270110", "occupied", "69 \u20ac ", 1], "d20270111": ["d20270111", "occupied", "69 \u20ac ", 1], "d20270112": ["d20270112", "occupied", "69 \u20ac ", 1], "d20270113": ["d20270113", "occupied", "69 \u20ac ", 1], "d20270114": ["d20270114", "occupied", "69 \u20ac ", 1], "d20270115": ["d20270115", "occupied", "69 \u20ac ", 1], "d20270116": ["d20270116", "occupied", "69 \u20ac ", 1], "d20270117": ["d20270117", "occupied", "69 \u20ac ", 1], "d20270118": ["d20270118", "occupied", "69 \u20ac ", 1], "d20270119": ["d20270119", "occupied", "69 \u20ac ", 1], "d20270120": ["d20270120", "occupied", "69 \u20ac ", 1], "d20270121": ["d20270121", "occupied", "69 \u20ac ", 1], "d20270122": ["d20270122", "occupied", "69 \u20ac ", 1], "d20270123": ["d20270123", "occupied", "69 \u20ac ", 1], "d20270124": ["d20270124", "occupied", "69 \u20ac ", 1], "d20270125": ["d20270125", "occupied", "69 \u20ac ", 1], "d20270126": ["d20270126", "occupied", "69 \u20ac ", 1], "d20270127": ["d20270127", "occupied", "69 \u20ac ", 1], "d20270128": ["d20270128", "occupied", "69 \u20ac ", 1], "d20270129": ["d20270129", "occupied", "69 \u20ac ", 1], "d20270130": ["d20270130", "occupied", "69 \u20ac ", 1], "d20270131": ["d20270131", "occupied", "69 \u20ac ", 1], "d20270201": ["d20270201", "occupied", "69 \u20ac ", 1], "d20270202": ["d20270202", "occupied", "69 \u20ac ", 1], "d20270203": ["d20270203", "occupied", "69 \u20ac ", 1], "d20270204": ["d20270204", "occupied", "69 \u20ac ", 1], "d20270205": ["d20270205", "occupied", "69 \u20ac ", 1], "d20270206": ["d20270206", "occupied", "69 \u20ac ", 1], "d20270207": ["d20270207", "occupied", "69 \u20ac ", 1], "d20270208": ["d20270208", "occupied", "69 \u20ac ", 1], "d20270209": ["d20270209", "occupied", "69 \u20ac ", 1], "d20270210": ["d20270210", "occupied", "69 \u20ac ", 1], "d20270211": ["d20270211", "occupied", "69 \u20ac ", 1], "d20270212": ["d20270212", "occupied", "69 \u20ac ", 1], "d20270213": ["d20270213", "occupied", "69 \u20ac ", 1], "d20270214": ["d20270214", "occupied", "69 \u20ac ", 1], "d20270215": ["d20270215", "occupied", "69 \u20ac ", 1], "d20270216": ["d20270216", "occupied", "69 \u20ac ", 1], "d20270217": ["d20270217", "occupied", "69 \u20ac ", 1], "d20270218": ["d20270218", "occupied", "69 \u20ac ", 1], "d20270219": ["d20270219", "occupied", "69 \u20ac ", 1], "d20270220": ["d20270220", "occupied", "69 \u20ac ", 1], "d20270221": ["d20270221", "occupied", "69 \u20ac ", 1], "d20270222": ["d20270222", "occupied", "69 \u20ac ", 1], "d20270223": ["d20270223", "occupied", "69 \u20ac ", 1], "d20270224": ["d20270224", "occupied", "69 \u20ac ", 1], "d20270225": ["d20270225", "occupied", "69 \u20ac ", 1], "d20270226": ["d20270226", "occupied", "69 \u20ac ", 1], "d20270227": ["d20270227", "occupied", "69 \u20ac ", 1], "d20270228": ["d20270228", "occupied", "69 \u20ac ", 1], "d20270301": ["d20270301", "occupied", "69 \u20ac ", 1], "d20270302": ["d20270302", "occupied", "69 \u20ac ", 1], "d20270303": ["d20270303", "occupied", "69 \u20ac ", 1], "d20270304": ["d20270304", "occupied", "69 \u20ac ", 1], "d20270305": ["d20270305", "occupied", "69 \u20ac ", 1], "d20270306": ["d20270306", "occupied", "69 \u20ac ", 1], "d20270307": ["d20270307", "occupied", "69 \u20ac ", 1], "d20270308": ["d20270308", "occupied", "69 \u20ac ", 1], "d20270309": ["d20270309", "occupied", "69 \u20ac ", 1], "d20270310": ["d20270310", "occupied", "69 \u20ac ", 1], "d20270311": ["d20270311", "occupied", "69 \u20ac ", 1], "d20270312": ["d20270312", "occupied", "69 \u20ac ", 1], "d20270313": ["d20270313", "occupied", "69 \u20ac ", 1], "d20270314": ["d20270314", "occupied", "69 \u20ac ", 1], "d20270315": ["d20270315", "occupied", "69 \u20ac ", 1], "d20270316": ["d20270316", "occupied", "69 \u20ac ", 1], "d20270317": ["d20270317", "occupied", "69 \u20ac ", 1], "d20270318": ["d20270318", "occupied", "69 \u20ac ", 1], "d20270319": ["d20270319", "occupied", "69 \u20ac ", 1], "d20270320": ["d20270320", "occupied", "69 \u20ac ", 1], "d20270321": ["d20270321", "occupied", "69 \u20ac ", 1], "d20270322": ["d20270322", "occupied", "69 \u20ac ", 1], "d20270323": ["d20270323", "occupied", "69 \u20ac ", 1], "d20270324": ["d20270324", "occupied", "69 \u20ac ", 1], "d20270325": ["d20270325", "occupied", "69 \u20ac ", 1], "d20270326": ["d20270326", "occupied", "69 \u20ac ", 1], "d20270327": ["d20270327", "occupied", "69 \u20ac ", 1], "d20270328": ["d20270328", "occupied", "69 \u20ac ", 1], "d20270329": ["d20270329", "occupied", "69 \u20ac ", 1], "d20270330": ["d20270330", "occupied", "69 \u20ac ", 1], "d20270331": ["d20270331", "occupied", "69 \u20ac ", 1], "d20270401": ["d20270401", "occupied", "69 \u20ac ", 1], "d20270402": ["d20270402", "occupied", "69 \u20ac ", 1], "d20270403": ["d20270403", "season0departure", "69 \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://api.more-bookings.com'; function guest_booking2(myelement, formname){ if (! document.getElementById("popupcontent")){ jQuery('body').append("
"); } var waitImage = document.getElementById('waitImage'); var backendHostUrl = 'https://api.more-bookings.com'; 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 DEICHIDYLL: 3-Zi-Ferienwohnung in unmittelbarer Strandlage in Zingst'; } else { var api_endpoint=backendHostUrl+'/public_booking_dialogue'; var title = 'Preisauskunft & Buchung DEICHIDYLL: 3-Zi-Ferienwohnung in unmittelbarer Strandlage in Zingst'; } 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 { 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( "
Kalender und Buchungsfunktion bereitgestellt von More-Bookings - Clevere Websites für Ferienwohnungen

").insertAfter('#moreBookingsCal'); jQuery( " \ \ \ \ \ \ \ \ \ \ \ \
frei/verfügbar Anreise  Belegt  Abreise/frei 
\ ").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://api.more-bookings.com'; 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 DEICHIDYLL: 3-Zi-Ferienwohnung in unmittelbarer Strandlage in Zingst'; } else { var title = 'Preisauskunft & Buchung DEICHIDYLL: 3-Zi-Ferienwohnung in unmittelbarer Strandlage in Zingst'; 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 }); } }); }