£Á°èZ¨Ä…–K§‚«“ô4“ÒÙ´dîfUÙÃÅ WKbyʦ•ꎅȮFÒ¿ÊÎóCozá¬S@6{Í:›œêZÌ:Š•_%:¢¾¾~;‘Ã~芩ÊÇí`ÔÑ©ú뙵'5I¿fš×WO%ø9¾«¾DK|€ùÍD”Ýs]nHÕ¶ê×Ӽ㞪éUWŸÈË%DÒÕ¬ï‘]/Åcx ‰ï2ß]ä6G[]S£Ôϯrs{úëóµmÒï#UQxo·õÞCe]"±/aÙ&Eã4ú9Jé_ÞåëdãöKë)AÞ ¯¹ægƒÛowÐø^d™ý½ßB7áyMä9ÜÖUã
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
/*global $, jQuery, ajaxcalls_vars, document, control_vars, window, map, setTimeout, Modernizr, wpestate_create_review_action, wpestate_create_payment_action, wpestate_invoice_create_js, wpestate_booking_cretupm_paypal, location, google, dashboard_vars, options, wpestate_create_delete_invoice_action, wpestate_create_generate_invoice_action*/
jQuery(document).ready(function ($) {
"use strict";
wpestate_create_delete_invoice_action();
wpestate_create_generate_invoice_action();
wprentals_show_static_calendar_backend();
wpestate_show_bedrooms_input_trigger();
wpestate_reply_to_review();
jQuery('.user_dashboard_panel_guide a,.edit_listing_link').on('click',function(event){
if(wpestate_check_for_mandatory()) {
event.preventDefault();
}else{
var new_link = $(this).attr('href');
jQuery('.next_submit_page').attr('href',new_link);
jQuery('.wpestate_vc_button').trigger('click');
return;
}
});
jQuery('.next_submit_page').on('click',function(event){
event.preventDefault()
jQuery('.wpestate_vc_button').trigger('click');
});
jQuery('.delete_extra_detail').on('click',function(event){
$(this).parent().parent().remove();
});
jQuery('#add_extra_detail').on('click',function(event){
var custom_detail_value,custom_detail_label,to_add;
custom_detail_value = $('#custom_detail_value').val();
custom_detail_label = $('#custom_detail_label').val();
if(custom_detail_value!=='' && custom_detail_label!=''){
to_add='
';
$('#custom_detail_value').val('');
$('#custom_detail_label').val('');
$('#extra_details_list').append(to_add);
}
});
jQuery('#add_extra_feed').on('click',function(event){
var to_add,feed_label,feed_url;
feed_label = $('#property_icalendar_import_name_new').val();
feed_url = $('#property_icalendar_import_feed_new').val();
if(feed_url!==''){
to_add='';
$('#property_icalendar_import_name_new').val('');
$('#property_icalendar_import_feed_new').val('');
$('#icalfeed_wrapper').append(to_add);
}
});
jQuery('.delete_extra_option').on('click',function(event){
jQuery(this).parent().remove();
});
jQuery('#add_extra_option').on('click',function(event){
var option_name,option_value,option_type,to_add,select_name;
$('.no_extra_pay_option').remove();
option_name = $('#add_option_name').val();
option_value = $('#add_option_value').val();
option_type = $('#add_option_type').val();
select_name = option_name+"_select";
to_add='';
$('#add_option_name').val('');
$('#add_option_value').val('');
// $('#add_option_type').val('');
$('.extra_pay_option_wrapper').append(to_add);
});
function wpestate_generate_type_dropdown(type){
var type_free, type_per_night, type_per_guest, type_per_night_guest;
type_free = '';
type_per_night = '';
type_per_guest = '';
type_per_night_guest = '';
type=parseInt(type);
if (type=== 0){
type_free = ' selected ';
}else if(type===1){
type_per_night = ' selected ';
}else if(type===2){
type_per_guest = ' selected ';
}else if(type===3){
type_per_night_guest = ' selected ';
}
return ''
}
jQuery('.activate_payments').on('click',function(event){
jQuery(this).parent().parent().find('.listing_submit').show();
});
jQuery('.close_payments').on('click',function(event){
jQuery(this).parent().hide();
});
jQuery("#invoice_start_date").datepicker({
// dateFormat : "yy-mm-dd",
}, jQuery.datepicker.regional[control_vars.datepick_lang]).datepicker('widget').wrap('');
jQuery("#invoice_end_date").datepicker({
// dateFormat : "yy-mm-dd",
}, jQuery.datepicker.regional[control_vars.datepick_lang]).datepicker('widget').wrap('');
$('#invoice_start_date, #invoice_end_date, #invoice_type ,#invoice_status ').change(function(){
filter_invoices();
});
///////////////////////////////////////////////////////////////////////////////////////
/// messages read and reply
///////////////////////////////////////////////////////////////////////////////////////
$('.mess_send_reply_button').on('click',function () {
var messid, ajaxurl, acesta, parent, title, content, container, mesage_container;
ajaxurl = control_vars.admin_url + 'admin-ajax.php';
parent = $(this).parent().parent();
mesage_container = parent.find('.mess_content');
container = $(this).parent();
messid = parent.attr('data-messid');
acesta = $(this);
title = parent.find('.subject_reply').val();
content = parent.find('.message_reply_content').val();
var reply_to_id = $(this).attr('data-mess-reply_to_id');
var nonce = jQuery('#wprentals_inbox_actions').val();
parent.find('.mess_unread').remove();
acesta.text(dashboard_vars.sending);
jQuery.ajax({
type: 'POST',
url: ajaxurl,
data: {
'action' : 'wpestate_message_reply',
'messid' : messid,
'title' : title,
'content' : content,
'reply_to_id' : reply_to_id,
'security' : nonce,
},
success: function (data) {
$('.message_reply_content').val('');
acesta.text(dashboard_vars.send_reply);
mesage_container.hide();
container.hide();
},
error: function (errorThrown) {
}
});
});
///////////////////////////////////////////////////////////////////////////////////////
/// messages read and reply
///////////////////////////////////////////////////////////////////////////////////////
$('.message_header').on('click',function () {
// if (!Modernizr.mq('only all and (max-width: 1025px)')) {
var messid, ajaxurl, acesta, parent;
ajaxurl = control_vars.admin_url + 'admin-ajax.php';
parent = $(this).parent();
messid = parent.attr('data-messid');
acesta = $(this);
var replies_to_mark = parent.find('.mess_reply_form').attr('data-unread_replies');
replies_to_mark = parseInt(replies_to_mark,10);
var nonce = jQuery('#wprentals_inbox_actions').val();
$('.mess_content, .mess_reply_form').hide();
$(this).parent().find('.mess_content, .mess_reply_form').show();
jQuery.ajax({
type: 'POST',
url: ajaxurl,
data: {
'action' : 'wpestate_booking_mark_as_read',
'messid' : messid,
'replies_to_mark' : replies_to_mark,
'security' : nonce,
},
success: function (data) {
if (parent.find('.mess_unread').length>0){
parent.find('.mess_unread').remove();
wpestate_update_mess_no(replies_to_mark);
}
},
error: function (errorThrown) {
}
});
//}
});
///////////////////////////////////////////////////////////////////////////////////////
/// messages reply
///////////////////////////////////////////////////////////////////////////////////////
$('.mess_reply').on('click',function (event) {
return;
var messid, ajaxurl, acesta, parent;
event.stopPropagation();
ajaxurl = control_vars.admin_url + 'admin-ajax.php';
parent = $(this).parent().parent().parent();
messid = parent.attr('data-messid');
acesta = $(this);
$('.mess_content, .mess_reply_form').hide();
parent.find('.mess_content').show();
parent.find('.mess_reply_form').show();
var replies_to_mark = parent.find('.mess_reply_form').attr('data-unread_replies');
replies_to_mark = parseInt(replies_to_mark,10);
var nonce = jQuery('#wprentals_inbox_actions').val();
jQuery.ajax({
type: 'POST',
url: ajaxurl,
data: {
'action' : 'wpestate_booking_mark_as_read',
'messid' : messid,
'replies_to_mark' : replies_to_mark,
'security' : nonce
},
success: function (data) {
if (parent.find('.mess_unread').length>0){
parent.find('.mess_unread').remove();
wpestate_update_mess_no(replies_to_mark);
}
},
error: function (errorThrown) {
}
});
});
///////////////////////////////////////////////////////////////////////////////////////
/// messages delete
///////////////////////////////////////////////////////////////////////////////////////
$('.mess_delete').on('click',function (event) {
if (confirm(dashboard_vars.delete_mess)) {
var messid, ajaxurl, acesta, parent;
event.stopPropagation();
ajaxurl = control_vars.admin_url + 'admin-ajax.php';
parent = $(this).parent().parent().parent().parent();
messid = parent.attr('data-messid');
acesta = $(this);
$(this).parent().parent().empty().addClass('delete_inaction').html(dashboard_vars.deleting);
var nonce = jQuery('#wprentals_inbox_actions').val();
jQuery.ajax({
type: 'POST',
url: ajaxurl,
data: {
'action' : 'wpestate_booking_delete_mess',
'messid' : messid,
'security' : nonce
},
success: function (data) {
parent.parent().remove();
$('.mess_content, .mess_reply_form').hide();
if (parent.find('.mess_unread').length>0){
parent.find('.mess_unread').remove();
wpestate_update_mess_no(1);
}
},
error: function (errorThrown) {
}
});
}
});
function wpestate_update_mess_no(value){
var mess_no = parseInt( jQuery('.user_dashboard_links .unread_mess_wrap_menu').text(),10);
var new_mess_no=mess_no-value;
if(new_mess_no<0){
new_mess_no=0;
}
jQuery('#unread_mess_wrap_no').text(new_mess_no);
jQuery('.unread_mess_wrap_menu').text(new_mess_no);
}
//////////////////////////////////////////////////////////////////////////////////////
/// post review for reservation
///////////////////////////////////////////////////////////////////////////////////////
$('.post_review').on('click',function () {
var listing_id, ajaxurl, acesta, parent,bookid;
listing_id = $(this).attr('data-listing-review');
bookid = $(this).attr('data-bookid');
ajaxurl = control_vars.admin_url + 'admin-ajax.php';
acesta = $(this);
parent = $(this).parent().parent();
var nonce = jQuery('#wprentals_reservation_actions').val();
jQuery.ajax({
type: 'POST',
url: ajaxurl,
data: {
'action' : 'wpestate_show_review_form',
'listing_id' : listing_id,
'bookid' : bookid,
'security' : nonce
},
success: function (data) {
jQuery('.create_invoice_form').remove();
parent.after(data);
wpestate_create_review_action();
},
error: function (errorThrown) {
}
});
});
function wpestate_enable_star_action() {
jQuery(".empty_star").on("mouseenter", function(event) {
var loop, index;
index = jQuery(this).parent().find('.empty_star').index(this);
jQuery(this).parent().find('.empty_star').each(function () {
loop = jQuery(this).parent().find('.empty_star').index(this);
if (loop <= index) {
jQuery(this).addClass('starselected');
} else {
jQuery(this).removeClass('starselected');
}
});
});
}
function wpestate_create_review_action() {
wpestate_enable_star_action();
jQuery('#post_review').on('click',function () {
var listing_id = jQuery(this).attr('data-listing_id'),
bookid = jQuery(this).attr('data-bookid'),
content = jQuery(this).parent().find('#review_content').val(),
starsCont = jQuery(this).parent().find('.starselected').parent(),
ajaxurl = control_vars.admin_url + 'admin-ajax.php',
acesta = jQuery(this),
parent = jQuery(this).parent().parent(),
starsTotal = 0,
stars = '{';
starsCont.each(function(index){
var starsThis = parseInt( jQuery(this).find('.starselected').length );
starsTotal = starsTotal + starsThis;
stars += ('"' + jQuery(this).attr('class') + '": ' + starsThis + ',');
});
// rounding the average to the nearest .5
stars += ('"rating": ' + ( Math.round( ( starsTotal / starsCont.length ) * 2 ) / 2 ).toFixed(1));
stars += '}';
jQuery(this).text(dashboard_vars.sending);
var nonce = jQuery('#wprentals_reservation_actions').val();
jQuery.ajax({
type: 'POST',
url: ajaxurl,
data: {
'action' : 'wpestate_post_review',
'listing_id' : listing_id,
'bookid' : bookid,
'stars' : stars,
'content' : content,
'security' : nonce
},
success: function (data) {
jQuery('.create_invoice_form').remove();
jQuery('.post_review').remove();
},
error: function (errorThrown) {
}
});
});
}
//////////////////////////////////////////////////////////////////////////////////////
/// remind email
///////////////////////////////////////////////////////////////////////////////////////
$('.full_invoice_reminder').on('click',function () {
var invoice_id, booking_id, ajaxurl, acesta, parent;
booking_id = $(this).attr('data-bookid');
invoice_id = $(this).attr('data-invoiceid');
ajaxurl = control_vars.admin_url + 'admin-ajax.php';
acesta = $(this);
parent = $(this).parent().parent();
$(this).text(dashboard_vars.sending);
$(this).unbind('click');
acesta=$(this);
var nonce = jQuery('#wprentals_bookings_actions').val();
jQuery.ajax({
type: 'POST',
url: ajaxurl,
data: {
'action' : 'wpestate_send_full_pay_reminder',
'invoice_id' : invoice_id,
'booking_id' : booking_id,
'security' : nonce,
},
success: function (data) {
acesta.text(dashboard_vars.sent);
},
error: function (errorThrown) {
}
});
});
//////////////////////////////////////////////////////////////////////////////////////
/// trip details
///////////////////////////////////////////////////////////////////////////////////////
$('.trip_details').on('click',function () {
var invoice_id, booking_id, ajaxurl, acesta, parent;
booking_id = $(this).attr('data-booking-confirmed');
invoice_id = $(this).attr('data-invoice-confirmed');
ajaxurl = control_vars.admin_url + 'admin-ajax.php';
acesta = $(this);
acesta.text(dashboard_vars.processing);
parent = $(this).parent().parent();
var nonce = jQuery('#wprentals_booking_confirmed_actions').val();
jQuery.ajax({
type: 'POST',
url: ajaxurl,
data: {
'action' : 'wpestate_show_trip_details',
'invoice_id' : invoice_id,
'booking_id' : booking_id,
'security' : nonce
},
success: function (data) {
jQuery('.trip_details_wrapper,.create_invoice_form').remove();
parent.after(data);
create_trip_print_action();
acesta.text(dashboard_vars.trip_details);
},
error: function (errorThrown) {
}
});
});
//////////////////////////////////////////////////////////////////////////////////////
/// print invoice
///////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////
/// confimed booking invoice
///////////////////////////////////////////////////////////////////////////////////////
$('.confirmed_booking').on('click',function () {
var invoice_id, booking_id, ajaxurl, acesta, parent;
booking_id = $(this).attr('data-booking-confirmed');
invoice_id = $(this).attr('data-invoice-confirmed');
ajaxurl = control_vars.admin_url + 'admin-ajax.php';
acesta = $(this);
acesta.text(dashboard_vars.processing);
parent = $(this).parent().parent();
var nonce = jQuery('#wprentals_booking_confirmed_actions').val();
jQuery.ajax({
type: 'POST',
url: ajaxurl,
data: {
'action' : 'wpestate_show_confirmed_booking',
'invoice_id' : invoice_id,
'booking_id' : booking_id,
'security' : nonce
},
success: function (data) {
jQuery('.trip_details_wrapper,.create_invoice_form').remove();
parent.after(data);
wpestate_create_payment_action();
create_print_action();
acesta.text(dashboard_vars.view_details);
},
error: function (errorThrown) {
}
});
});
wpestate_enable_invoice_actions();
///////////////////////////////////////////////////////////////////////////////////////
/// proceed to payment
///////////////////////////////////////////////////////////////////////////////////////
$('.proceed-payment,.proceed-payment_full').on('click',function () {
var is_full,invoice_id, booking_id, ajaxurl, acesta, parent;
invoice_id = $(this).attr('data-invoiceid');
booking_id = $(this).attr('data-bookid');
ajaxurl = control_vars.admin_url + 'admin-ajax.php';
acesta = $(this);
acesta.text(dashboard_vars.processing);
parent = $(this).parent().parent();
is_full = 0;
if( $(this).hasClass('proceed-payment_full') ){
is_full = 1;
}
var nonce = jQuery('#wprentals_reservation_actions').val();
jQuery.ajax({
type: 'POST',
url: ajaxurl,
data: {
'action' : 'wpestate_create_pay_user_invoice_form',
'booking_id' : booking_id,
'invoice_id' : invoice_id,
'is_full' : is_full,
'security' : nonce,
},
success: function (data) {
jQuery('.create_invoice_form').remove();
parent.after(data);
wpestate_create_payment_action();
create_print_action();
if(is_full===1){
acesta.text(dashboard_vars.invoice_pay);
}else{
acesta.text(dashboard_vars.invoice_created);
}
},
error: function (errorThrown) {
}
});
});
///////////////////////////////////////////////////////////////////////////////////////
/// delete booking request
///////////////////////////////////////////////////////////////////////////////////////
$('.delete_booking').on('click',function () {
if (confirm(dashboard_vars.cancel_mess)) {
var booking_id, ajaxurl, acesta, isuser;
booking_id = $(this).attr('data-bookid');
ajaxurl = control_vars.admin_url + 'admin-ajax.php';
acesta = $(this);
isuser = 0;
if ($(this).hasClass('usercancel')) {
isuser = 1;
}
$(this).empty().html(dashboard_vars.deleting);
$('.create_invoice_form').remove();
var nonce = jQuery('#wprentals_booking_confirmed_actions').val();
$.ajax({
type: 'POST',
url: ajaxurl,
data: {
'action' : 'wpestate_delete_booking_request',
'booking_id' : booking_id,
'isuser' : isuser,
'security' : nonce
},
success: function (data) {
acesta.parent().parent().remove();
},
error: function (errorThrown) {
}
});
}
});
///////////////////////////////////////////////////////////////////////////////////////
/// cancel bookings by user or admin
///////////////////////////////////////////////////////////////////////////////////////
$('.cancel_own_booking, .cancel_user_booking').on('click',function () {
if (confirm(dashboard_vars.cancel_mess)) {
var booking_id, ajaxurl, acesta, listing_id;
booking_id = $(this).attr('data-booking-confirmed');
listing_id = $(this).attr('data-listing-id');
ajaxurl = control_vars.admin_url + 'admin-ajax.php';
acesta = $(this);
$(this).empty().html(dashboard_vars.deleting);
$(".create_invoice_form").hide();
var nonce = jQuery('#wprentals_booking_confirmed_actions').val();
$.ajax({
type: 'POST',
url: ajaxurl,
data: {
'action' : 'wpestate_cancel_own_booking',
'booking_id' : booking_id,
'listing_id' : listing_id,
'security' : nonce
},
success: function (data) {
acesta.parent().parent().remove();
},
error: function (errorThrown) {
}
});
}
});
});
/**
*
* generate dashboard graph
*
*
*/
function wpestate_chart_total_listings_widget(values,labels,detail_label ){
if( !document.getElementById('myChart_widget_total') ){
return;
}
var ctx = jQuery("#myChart_widget_total").get(0).getContext("2d");
var myNewChart = new Chart(ctx);
var traffic_data=' ';
traffic_data = values;
var data = {
labels:labels ,
datasets: [
{
label: detail_label,
fillColor: "rgba(220,220,220,0.5)",
strokeColor: "rgba(220,220,220,0.8)",
highlightFill: "rgba(220,220,220,0.75)",
highlightStroke: "rgba(220,220,220,1)",
data: traffic_data
},
]
};
var options = {
title:'page views',
//Boolean - Whether the scale should start at zero, or an order of magnitude down from the lowest value
scaleBeginAtZero : true,
//Boolean - Whether grid lines are shown across the chart
scaleShowGridLines : true,
//String - Colour of the grid lines
scaleGridLineColor : "rgba(0,0,0,.05)",
//Number - Width of the grid lines
scaleGridLineWidth : 1,
//Boolean - Whether to show horizontal lines (except X axis)
scaleShowHorizontalLines: true,
//Boolean - Whether to show vertical lines (except Y axis)
scaleShowVerticalLines: true,
//Boolean - If there is a stroke on each bar
barShowStroke : true,
//Number - Pixel width of the bar stroke
barStrokeWidth : 2,
//Number - Spacing between each of the X value sets
barValueSpacing : 5,
//Number - Spacing between data sets within X values
barDatasetSpacing : 1,
//String - A legend template
legendTemplate : "-legend\"><% for (var i=0; i- \"><%if(datasets[i].label){%><%=datasets[i].label%><%}%>
<%}%>
"
};
// var myBarChart = new Chart(ctx).Bar(data, options);
var myBarChart = new Chart(ctx,{
type: 'line',
data: data,
options: options
});
}
/**
*
*generate invoice form
*
*
*/
function wpestate_create_generate_invoice_action() {
jQuery('.generate_invoice').on('click',function () {
var parent, ajaxurl, bookid, acesta;
ajaxurl = control_vars.admin_url + 'admin-ajax.php';
parent = jQuery(this).parent().parent();
bookid = jQuery(this).attr('data-bookid');
acesta = jQuery(this);
acesta.text(dashboard_vars.processing);
var nonce = jQuery('#wprentals_bookings_actions').val();
jQuery.ajax({
type: 'POST',
url: ajaxurl,
data: {
'action' : 'wpestate_create_invoice_form',
'bookid' : bookid,
'security' : nonce,
},
success: function (data) {
jQuery('.create_invoice_form').remove();
parent.after(data);
wpestate_invoice_create_js();
acesta.text(dashboard_vars.invoice_issue);
},
error: function (errorThrown) {
}
});
});
}
/**
*
*delete invoice form
*
*
*/
function wpestate_create_delete_invoice_action() {
"use strict";
jQuery('.delete_invoice').on('click',function () {
if (confirm(dashboard_vars.delete_mess)) {
var invoice_id, ajaxurl, acesta, booking_id;
booking_id = jQuery(this).attr('data-bookid');
invoice_id = jQuery(this).attr('data-invoiceid');
ajaxurl = control_vars.admin_url + 'admin-ajax.php';
acesta = jQuery(this);
jQuery(this).empty().html('deleting...');
var nonce = jQuery('#wprentals_bookings_actions').val();
jQuery.ajax({
type: 'POST',
url: ajaxurl,
data: {
'action' : 'wpestate_delete_invoice',
'invoice_id' : invoice_id,
'booking_id' : booking_id,
'security' : nonce,
},
success: function (data) {
var book_id = acesta.parent().find('.delete_booking').attr('data-bookid');
acesta.parent().find('.waiting_payment').after('' + dashboard_vars.issue_inv1 + '');
acesta.parent().find('.waiting_payment').remove();
acesta.remove();
wpestate_create_generate_invoice_action();
},
error: function (errorThrown) {
}
});
}
});
}
/**
*
*
*
*
*/
function wpestate_calculate_deposit_js(book_down,book_down_fixed_fee,total_amm_compute){
var deposit;
if(book_down_fixed_fee===0){
deposit = (total_amm_compute * book_down / 100);
deposit = Math.round(deposit * 100) / 100;
}else{
deposit = book_down_fixed_fee;
}
return deposit;
}
/**
*
*
*
*
*/
function wpestate_invoice_create_js() {
"use strict";
jQuery('#add_inv_expenses,#add_inv_discount').on('click',function (){
var acesta=jQuery(this);
wpestate_recreate_invoice_manual_expenses(acesta);
});
function wpestate_delete_expense_js() {
"use strict";
jQuery(".delete_exp").unbind("click");
jQuery('.delete_exp').on('click',function (event) {
var acesta=jQuery(this);
wpestate_recreate_invoice_manual_expenses(acesta);
});
};
function wpestate_recreate_invoice_manual_expenses(butonul){
var inv_service_fee_fixed,extra_guests,is_remove,taxes_value,security_dep,early_bird_percent,invoice_manual_extra,invoice_default_extra,inter_price,early_bird,inv_depozit,inv_balance,youearned,inv_service_fee,inv_taxes,book_down_fixed_fee,ex_name, ex_value, ex_value_show, new_row, total_amm, deposit, balance, book_down, cleaning_fee, city_fee, total_amm_compute,include_expenses;
is_remove = 0;
ex_name = jQuery('#inv_expense_name').val();
ex_value = parseFloat(jQuery('#inv_expense_value').val());
if( butonul.is('#add_inv_discount') ){
ex_name = dashboard_vars.discount;
ex_value = parseFloat(jQuery('#inv_expense_discount').val(), 10)*(-1);
}
if( butonul.hasClass('delete_exp') ){
is_remove = 1;
ex_name = 'nothng';
ex_value = parseFloat(butonul.attr('data-delvalue'))*-1;
}
include_expenses = butonul.attr('data-include_ex');
if (dashboard_vars.where_currency_symbol === 'before') {
ex_value_show = dashboard_vars.currency_symbol + ' ' + ''+ex_value+'';
} else {
ex_value_show = ''+ex_value +'' + ' ' + dashboard_vars.currency_symbol;
}
total_amm = parseFloat(jQuery('#total_amm').attr('data-total'));
cleaning_fee = parseFloat(jQuery('#cleaning-fee').attr('data-cleaning-fee'));
city_fee = parseFloat(jQuery('#city-fee').attr('data-city-fee'));
early_bird = parseFloat(jQuery('#erarly_bird_row').attr('data-val'));
inv_depozit = parseFloat(jQuery('#inv_depozit').attr('data-val'));
inv_balance = parseFloat(jQuery('#inv_balance').attr('data-val'));
youearned = parseFloat(jQuery('#youearned').attr('data-youearned'));
inv_service_fee = parseFloat(jQuery('#inv_service_fee').attr('data-value'));
inv_taxes = parseFloat(jQuery('#inv_taxes').attr('data-value'));
inter_price = parseFloat(jQuery('#inter_price').attr('data-value'));
security_dep = parseFloat(jQuery('#security_depozit_row').attr('data-val'));
early_bird_percent = parseFloat(jQuery('#property_details_invoice').attr('data-earlyb'));
taxes_value = parseFloat(jQuery('#property_details_invoice').attr('data-taxes_value'));
extra_guests = parseFloat(jQuery('#extra-guests').attr('data-extra-guests'));
invoice_default_extra=0;
jQuery('.invoice_default_extra').each(function(){
invoice_default_extra=invoice_default_extra + parseFloat(jQuery(this).attr('data-value'));
});
invoice_manual_extra=ex_value;
jQuery('.invoice_manual_extra').each(function(){
invoice_manual_extra=invoice_manual_extra + parseFloat(jQuery(this).attr('data-value'));
});
if (isNaN(cleaning_fee)) {
cleaning_fee = 0;
}
if (isNaN(city_fee)) {
city_fee = 0;
}
if (isNaN(extra_guests)) {
extra_guests = 0;
}
if (isNaN(early_bird)) {
early_bird = 0;
}
if (isNaN(inv_taxes)) {
inv_taxes = 0;
}
if (isNaN(inv_service_fee_fixed)) {
inv_service_fee_fixed = 0;
}
if (isNaN(youearned)) {
youearned = 0;
}
if (isNaN(inter_price)) {
inter_price = 0;
}
if (isNaN(security_dep)) {
security_dep = 0;
}
// if(include_expenses==='yes'){
// total_amm_compute = total_amm ;
// }else{
// total_amm_compute = total_amm - city_fee - cleaning_fee;
// }
//
//total_amm_compute = total_amm ;
if (ex_name !== '' && ex_value !== '' && ex_name !== 0 && ex_value !== 0 && !isNaN(ex_value)) {
if(is_remove==1){
butonul.parent().remove();
}else{
new_row = '' + ex_name + '
';
jQuery('.invoice_total').before(new_row);
jQuery('#inv_expense_name').val('');
jQuery('#inv_expense_value').val('');
jQuery('#inv_expense_discount').val('');
}
if(early_bird > 0){
early_bird = (inter_price+invoice_default_extra +invoice_manual_extra+extra_guests)*early_bird_percent/100;
}
var service_fee = parseFloat(dashboard_vars.service_fee);
inv_service_fee_fixed = parseFloat(dashboard_vars.service_fee_fixed_fee);
total_amm = (inter_price+invoice_default_extra +invoice_manual_extra+extra_guests) -early_bird +city_fee +cleaning_fee+security_dep;
if( parseFloat(inv_service_fee_fixed,10) > 0){
inv_service_fee= parseFloat(inv_service_fee_fixed);
}else{
inv_service_fee = (total_amm -security_dep -city_fee-cleaning_fee)*service_fee/100;
}
youearned = total_amm-security_dep-city_fee-cleaning_fee-inv_service_fee;
youearned = Math.round(youearned * 100) / 100;
inv_taxes = youearned*taxes_value/100;
inv_taxes = Math.round(inv_taxes * 100) / 100;
book_down = parseFloat(dashboard_vars.book_down);
book_down_fixed_fee = parseFloat(dashboard_vars.book_down_fixed_fee);
if(include_expenses==='yes'){
deposit = wpestate_calculate_deposit_js(book_down,book_down_fixed_fee,total_amm);
}else{
deposit = wpestate_calculate_deposit_js(book_down,book_down_fixed_fee,(total_amm-city_fee-cleaning_fee) );
}
deposit = Math.round(deposit * 100) / 100;
balance = total_amm - deposit;
balance = Math.round(balance * 100) / 100;
wpestate_delete_expense_js();
jQuery('#total_amm').attr('data-total', total_amm);
if (dashboard_vars.where_currency_symbol === 'before') {
jQuery('#inv_depozit').empty().html(dashboard_vars.currency_symbol + ' ' + deposit);
jQuery('#inv_depozit').attr('data-value',deposit);
jQuery('#inv_balance').empty().html(dashboard_vars.currency_symbol + ' ' + balance);
jQuery('#total_amm').empty().append(dashboard_vars.currency_symbol + ' ' + total_amm);
jQuery("#youearned").attr('data-value',youearned);
jQuery("#youearned").empty().html(dashboard_vars.currency_symbol + ' ' + youearned);
jQuery("#inv_service_fee").attr('data-value',inv_service_fee);
jQuery("#inv_service_fee").empty().html(dashboard_vars.currency_symbol + ' ' + inv_service_fee);
jQuery("#inv_taxes").attr('data-value',inv_taxes);
jQuery("#inv_taxes").empty().html(dashboard_vars.currency_symbol + ' ' + inv_taxes);
jQuery("#erarly_bird_row").attr('data-value',early_bird);
jQuery("#erarly_bird_row inv_data_value").attr('data-clearprice',early_bird);
jQuery("#erarly_bird_row").empty().html(dashboard_vars.currency_symbol + ' '+early_bird+' ');
} else {
jQuery('#inv_depozit').empty().html(deposit + ' ' + dashboard_vars.currency_symbol);
jQuery('#inv_depozit').attr('data-value',deposit);
jQuery('#inv_balance').empty().html(balance + ' ' + dashboard_vars.currency_symbol);
jQuery('#total_amm').empty().append(total_amm + ' ' + dashboard_vars.currency_symbol);
jQuery("#youearned").attr('data-value',youearned);
jQuery("#youearned").empty().html(youearned+ ' '+ dashboard_vars.currency_symbol );
jQuery("#inv_service_fee").attr('data-value',inv_service_fee);
jQuery("#inv_service_fee").empty().html(inv_service_fee+ ' '+ dashboard_vars.currency_symbol );
jQuery("#inv_taxes").attr('data-value',inv_taxes);
jQuery("#inv_taxes").empty().html( inv_taxes + ' '+ dashboard_vars.currency_symbol );
jQuery("#erarly_bird_row").attr('data-value',early_bird);
jQuery("#erarly_bird_row inv_data_value").attr('data-clearprice',early_bird);
jQuery("#erarly_bird_row").empty().html( ' '+early_bird+' '+ dashboard_vars.currency_symbol );
}
}
}
///////////////////////////////////////////////////////////////////////////////////////
/// send invoice
///////////////////////////////////////////////////////////////////////////////////////
jQuery('#invoice_submit').on('click',function () {
var is_available,is_confirmed,parent, nonce, ajaxurl, bookid, price, details, details_item, manual_expenses_item,manual_expenses,acesta, to_be_paid,youearned;
details = new Array();
manual_expenses = new Array();
ajaxurl = control_vars.admin_url + 'admin-ajax.php';
bookid = jQuery(this).attr('data-bookid');
is_confirmed = jQuery(this).attr('data-is_confirmed');
price = parseFloat( jQuery('#total_amm').attr('data-total') );
youearned = parseFloat( jQuery('#youearned').attr('data-youearned') );
parent = jQuery(this).parent().parent().prev();
acesta = jQuery(this);
to_be_paid = parseFloat( jQuery('#inv_depozit').attr('data-value') );
jQuery(this).text(control_vars.pls_wait);
jQuery('.invoice_content').each(function () {
details_item = new Array();
details_item[0] = jQuery(this).find('.inv_legend').text();
details_item[1] = jQuery(this).find('.inv_data_value').attr('data-clearprice');
details_item[2] = jQuery(this).find('.inv_data_exp').text();
details.push(details_item);
});
jQuery('.manual_ex').each(function (){
manual_expenses_item = new Array();
manual_expenses_item[0] = jQuery(this).find('.inv_legend').text();
manual_expenses_item[1] = jQuery(this).find('.inv_data_value').attr('data-clearprice');
manual_expenses_item[2] = jQuery(this).find('.inv_data_exp').text();
manual_expenses.push(manual_expenses_item);
});
nonce = jQuery('#security-create_invoice_ajax_nonce').val();
jQuery.ajax({
type: 'POST',
url: ajaxurl,
data: {
'action' : 'wpestate_add_booking_invoice',
'bookid' : bookid,
'price' : price,
'details' : details,
'manual_expenses' : manual_expenses,
'to_be_paid' : to_be_paid,
'youearned' : youearned,
'is_confirmed' : is_confirmed,
'security' : nonce
},
success: function (data) {
if(data==='stop'){
jQuery('.alert_error').remove();
acesta.before(' '+dashboard_vars.doublebook+'');
}else{
parent.find('.invoice_list_id').html(data);
if(is_confirmed!==1 && is_confirmed!=='1'){
parent.find('.generate_invoice').after('' + dashboard_vars.delete_inv + '');
}
parent.find('.generate_invoice').after('' + dashboard_vars.issue_inv + '');
parent.find('.generate_invoice').remove();
parent.find('#inv_new_price').empty().append(price);
jQuery('.create_invoice_form').remove();
wpestate_create_delete_invoice_action();
}
},
error: function (errorThrown) {
}
});
});
///////////////////////////////////////////////////////////////////////////////////////
/// direct confirmation for booking invoice
///////////////////////////////////////////////////////////////////////////////////////
jQuery('#direct_confirmation').on('click',function () {
var parent, nonce, ajaxurl, bookid, price, details, acesta, details_item;
details = new Array();
ajaxurl = control_vars.admin_url + 'admin-ajax.php';
bookid = jQuery(this).attr('data-bookid');
price = jQuery('#total_amm').attr('data-total');
parent = jQuery(this).parent().parent().prev();
acesta = jQuery(this);
nonce = jQuery('#security-create_invoice_ajax_nonce').val();
jQuery('.invoice_content').each(function () {
details_item = new Array();
details_item[0] = jQuery(this).find('.inv_legend').text();
details_item[1] = jQuery(this).find('.inv_data_value').attr('data-clearprice');
details_item[2] = jQuery(this).find('.inv_data_exp').text();
details.push(details_item);
});
jQuery.ajax({
type: 'POST',
url: ajaxurl,
data: {
'action' : 'wpestate_add_booking_invoice',
'bookid' : bookid,
'price' : price,
'details' : details,
'security' : nonce
},
success: function (data) {
if(data==="doublebook"){
acesta.after(''+dashboard_vars.doublebook+'
');
acesta.remove();
}else{
parent.find('.generate_invoice').after('' + dashboard_vars.confirmed + '');
parent.find('.generate_invoice').remove();
parent.find('.delete_booking').remove();
jQuery('.create_invoice_form').remove();
}
},
error: function (errorThrown) {
}
});
});
} // end function
/**
*
*
*
*
*/
function wpestate_create_payment_action() {
"use strict";
jQuery('#confirm_zero_instant_booking').on('click',function () {
var ajaxurl,pay_paypal, prop_id, book_id, invoice_id, is_featured, is_upgrade,depozit;
ajaxurl = control_vars.admin_url + 'admin-ajax.php';
prop_id = jQuery(this).attr('data-propid');
book_id = jQuery(this).attr('data-bookid');
invoice_id = jQuery(this).attr('data-invoiceid');
depozit = jQuery(this).attr('data-deposit');
jQuery(this).text(control_vars.pls_wait);
var nonce = jQuery('#wprentals_confirm_zero_instant_booking').val();
jQuery.ajax({
type: 'POST',
url: ajaxurl,
data: {
'action' : 'wpestate_admin_activate_reservation_fee',
'book_id' : book_id,
'invoice_id' : invoice_id,
'security' : nonce,
'is_zero_instant': 1
},
success: function (data) {
window.open( control_vars.my_reservations_url, '_self', false);
},
error: function (errorThrown) {
}
});
});
jQuery('#paypal_booking').on('click',function () {
var pay_paypal, prop_id, book_id, invoice_id, is_featured, is_upgrade,depozit;
prop_id = jQuery(this).attr('data-propid');
book_id = jQuery(this).attr('data-bookid');
invoice_id = jQuery(this).attr('data-invoiceid');
depozit = jQuery(this).attr('data-deposit');
is_featured = 0;
is_upgrade = 0;
pay_paypal = '' + ajaxcalls_vars.paypal + '
';
jQuery('body').append(pay_paypal);
jQuery('#paypal_modal').modal();
wpestate_booking_cretupm_paypal(prop_id, book_id, invoice_id,depozit);
});
jQuery('#direct_pay_booking').on('click',function () {
var pay_paypal, prop_id, book_id, invoice_id, is_featured, is_upgrade;
prop_id = jQuery(this).attr('data-propid');
book_id = jQuery(this).attr('data-bookid');
invoice_id = jQuery(this).attr('data-invoiceid');
is_featured = 0;
is_upgrade = 0;
wpestate_enable_booking_direct_pay(prop_id,book_id,invoice_id);
});
jQuery('.woo_pay').on('click',function () {
var pay_paypal, prop_id, book_id, invoice_id, is_featured, is_upgrade,ajaxurl,depozit,is_submit;
prop_id = jQuery(this).attr('data-propid');
book_id = jQuery(this).attr('data-bookid');
invoice_id = jQuery(this).attr('data-invoiceid');
depozit = jQuery(this).attr('data-deposit');
is_featured = 0;
is_upgrade = 0;
is_submit = 0;
if(jQuery(this).hasClass('woo_pay_submit')){
is_submit=1;
}
ajaxurl = ajaxcalls_vars.admin_url + 'admin-ajax.php';
jQuery.ajax({
type: 'POST',
url: ajaxurl,
data: {
'action' : 'wpestate_woo_pay',
'invoiceid' : invoice_id,
'propid' : prop_id,
'book_id' : book_id,
'depozit' : depozit,
'is_submit' : is_submit
// 'price_pack' : price_pack,
// 'security' : nonce,
},
success: function (data) {
if(data!==false){
window.location.href= dashboard_vars.checkout_url;
}
},
error: function (errorThrown) {}
});//end ajax
});
jQuery('#wpestate_stripe_booking').on('click',function(){
var modalid=jQuery(this).attr('data-modalid');
jQuery('#'+modalid).show();
jQuery('#'+modalid+' .wpestate_stripe_form_1').show();
wpestate_start_stripe(0,modalid);
});
jQuery('.close_stripe_form').on('click',function(){
jQuery('.wpestate_stripe_form_wrapper').hide();
jQuery('.wpestate_stripe_form_1').hide();
});
}
/**
*
*
*
*
*/
function wpestate_enable_booking_direct_pay(prop_id,book_id,invoice_id){
var is_full_pay,price_pack,direct_pay_modal, selected_pack,selected_prop,include_feat,attr, price_pack;
if( jQuery("#is_full_pay").length == 0) {
price_pack = parseFloat( jQuery('.depozit_show').attr('data-value'),10);
}else{
price_pack = parseFloat( jQuery('#is_full_pay').val() );
}
var float_price_pack =price_pack;
if (control_vars.where_curency === 'after'){
price_pack = price_pack +' '+control_vars.submission_curency;
}else{
price_pack = control_vars.submission_curency+' '+price_pack;
}
price_pack=control_vars.direct_price+': '+price_pack;
if(selected_pack!==''){
window.scrollTo(0, 0);
direct_pay_modal=''+price_pack+''+control_vars.direct_pay+''+control_vars.send_invoice+'
';
jQuery('body').append(direct_pay_modal);
jQuery('#direct_pay_modal').modal();
wpestate_enable_booking_direct_pay_button(float_price_pack);
}
jQuery('#direct_pay_modal').on('hidden.bs.modal', function (e) {
jQuery('#direct_pay_modal').remove();
})
}
/**
*
*
*
*
*/
function wpestate_enable_booking_direct_pay_button(price_pack){
jQuery('#send_direct_bill_booking').unbind('click');
jQuery('#send_direct_bill_booking').on('click',function(){
acesta = jQuery(this);
acesta.text(dashboard_vars.processing);
jQuery('#send_direct_bill_booking').unbind('click');
var invoiceid,ajaxurl,propid,book_id;
invoiceid = jQuery(this).attr('data-invoiceid');
propid = jQuery(this).attr('data-propid')
book_id = jQuery(this).attr('data-bookid')
ajaxurl = ajaxcalls_vars.admin_url + 'admin-ajax.php';
var acesta = jQuery(this);
acesta.text(dashboard_vars.processing);
var nonce = jQuery('#wprentals_reservation_actions').val();
jQuery.ajax({
type: 'POST',
url: ajaxurl,
data: {
'action' : 'wpestate_direct_pay_booking',
'invoiceid' : invoiceid,
'propid' : propid,
'book_id' : book_id,
'price_pack' : price_pack,
'security' : nonce,
},
success: function (data) {
jQuery('#send_direct_bill_booking').hide();
jQuery('#direct_pay_modal .listing-submit span:nth-child(2)').empty().html(control_vars.direct_thx);
},
error: function (errorThrown) {}
});//end ajax
});
}
/**
*
*
*
*
*/
function wpestate_booking_cretupm_paypal(prop_id, book_id, invoice_id,depozit) {
"use strict";
var ajaxurl = control_vars.admin_url + 'admin-ajax.php';
var nonce = jQuery('#wprentals_reservation_actions').val();
jQuery.ajax({
type: 'POST',
url: ajaxurl,
data: {
'action' : 'wpestate_ajax_booking_pay',
'propid' : prop_id,
'bookid' : book_id,
'invoice_id' : invoice_id,
'depozit' : depozit,
'security' : nonce
},
success: function (data) {
window.location.href = data;
},
error: function (errorThrown) {
}
});//end ajax
}
/**
*
*
*
*
*/
function filter_invoices(){
"use strict";
var ajaxurl, start_date, end_date, type, status;
start_date = jQuery('#invoice_start_date').val();
if(start_date !==''){
start_date = wpestate_convert_selected_days(start_date);
}
end_date = jQuery('#invoice_end_date').val();
if(end_date!==''){
end_date = wpestate_convert_selected_days(end_date);
}
type = jQuery('#invoice_type').val();
status = jQuery('#invoice_status').val();
var nonce = jQuery('#wprentals_invoice_pace_actions').val();
ajaxurl = control_vars.admin_url + 'admin-ajax.php';
jQuery.ajax({
type: 'POST',
url: ajaxurl,
dataType: 'json',
data: {
'action' : 'wpestate_ajax_filter_invoices',
'start_date' : start_date,
'end_date' : end_date,
'type' : type,
'status' : status,
'security' : nonce,
},
success: function (data) {
jQuery('#container-invoices').empty().append(data.results);
jQuery('#invoice_issued').empty().append(data.invoice_issued);
jQuery('#invoice_confirmed').empty().append(data.invoice_confirmed);
wpestate_enable_invoice_actions();
},
error: function (errorThrown) {
}
});//end ajax
}
/**
*
*
*
*
*/
function wpestate_enable_invoice_actions(){
jQuery('.invoice_unit').on('click',function () {
var invoice_id, booking_id, ajaxurl, acesta, parent;
booking_id = jQuery(this).attr('data-booking-confirmed');
invoice_id = jQuery(this).attr('data-invoice-confirmed');
ajaxurl = control_vars.admin_url + 'admin-ajax.php';
acesta = jQuery(this);
acesta.find('.invoice_unit_title_wrapper').append(''+dashboard_vars.processing+'
')
parent = jQuery(this);
var nonce = jQuery('#wprentals_invoice_pace_actions').val();
jQuery.ajax({
type: 'POST',
url: ajaxurl,
data: {
'action' : 'wpestate_show_invoice_dashboard',
'invoice_id' : invoice_id,
'booking_id' : booking_id,
'security' : nonce
},
success: function (data) {
jQuery('.create_invoice_form').remove();
parent.append(data);
wpestate_create_payment_action();
create_print_action();
jQuery('.wprentals_invoce_processing').remove();
},
error: function (errorThrown) {
}
});
});
}
/**
*
*
*
*
*/
function create_trip_print_action(){
jQuery('#print_trip').on('click',function(event){
var myWindow, ajaxurl;
ajaxurl = control_vars.admin_url + 'admin-ajax.php';
event.preventDefault();
var property_id = jQuery(this).attr('data-property');
var booking_id = jQuery(this).attr('data-booking');
var nonce = jQuery('#wprentals_print_invoice').val();
myWindow=window.open('','Print Me','width=700 ,height=842');
jQuery.ajax({
type: 'POST',
url: ajaxurl,
data: {
'action' : 'wprentals_ajax_create_print_trip',
'property_id' : property_id,
'booking_id' : booking_id,
'security' : nonce
},
success:function(data) {
myWindow.document.write(data);
myWindow.document.close();
myWindow.focus();
},
error: function(errorThrown){
}
});//end ajax var ajaxurl = control_vars.admin_url+'admin-ajax.php';
});
}
/**
*
*
*
*
*/
function create_print_action(){
jQuery('#print_invoice').on('click',function(event){
var myWindow, ajaxurl;
ajaxurl = control_vars.admin_url + 'admin-ajax.php';
event.preventDefault();
var invoice_id = jQuery(this).attr('data-invoice_id');
var nonce = jQuery('#wprentals_print_invoice').val();
myWindow=window.open('','Print Me','width=700 ,height=842');
jQuery.ajax({
type: 'POST',
url: ajaxurl,
data: {
'action' : 'ajax_create_print',
'invoice_id' : invoice_id,
'security' : nonce
},
success:function(data) {
myWindow.document.write(data);
myWindow.document.close();
myWindow.focus();
},
error: function(errorThrown){
}
});//end ajax var ajaxurl = control_vars.admin_url+'admin-ajax.php';
});
}
/**
*
*
*
*
*/
function wprentals_show_static_calendar_backend(){
if( typeof (dashboard_vars2 )==='undefined' || typeof(fullCalendar)==='undefined'){
return;
}
if( jQuery("#all-front-calendars_per_hour_internal").length >0){
var today = new Date();
var start_temp='';
var listing_book_dates=[];
var booking_array=[];
if( dashboard_vars2.booking_array!=='' && dashboard_vars2.booking_array.length!==0 ){
booking_array = JSON.parse (dashboard_vars2.booking_array);
}
for (var key in booking_array) {
if (booking_array.hasOwnProperty(key) && key!=='') {
var temp_book=[];
temp_book['title'] = dashboard_vars.reserved;
temp_book ['start'] = moment.unix(key).utc().format();
temp_book ['end'] = moment.unix( booking_array[key]).utc().format();
temp_book ['editable'] = false;
listing_book_dates.push(temp_book);
}
}
jQuery("#all-front-calendars_per_hour_internal").fullCalendar({
defaultView: 'agendaWeek',
navLinks: false,
defaultDate: today,
selectable:false,
selectHelper:true,
selectOverlap :false,
footer:false,
slotDuration:'01:00:00',
allDayText:'hours',
weekNumbers: false,
weekNumbersWithinDays: true,
weekNumberCalculation: 'ISO',
editable: false,
eventLimit: true,
unselectAuto:false,
isRTL:control_vars_property.rtl_book_hours_calendar,
header: {
left: 'prev,next today',
center: 'title',
right: ''
},
minTime:control_vars_property.booking_start_hour,
maxTime:control_vars_property.booking_end_hour,
events: listing_book_dates
});
}
}
/**
*
*
*
*
*/
function wpestate_show_bedrooms_input_trigger(){
var array_feeds=[];
jQuery('#property_bedrooms').on('change',function(event){
var bedrooms_no = parseInt( jQuery(this).val() );
var beds_options_string=jQuery('#beds_options_string').val();
wpestate_show_bedrooms_input(bedrooms_no, (beds_options_string));
});
}
/**
*
*
*
*
*/
function wpestate_show_bedrooms_input(bedrooms_no,saved_values){
jQuery('#whole_beds_wrapper').remove();
var bed_types =dashboard_vars.bed_types
var bed_types_array = Object.keys(bed_types).map(function (key) {
return [ bed_types[key]];
});
saved_values =JSON.parse(saved_values);
var to_insert='';
var index;
var i=0;
var j=0;
var display_value=0;
var toshow='';
while(i
0){
toshow=' style="display:none" ';
}
to_insert=to_insert+''+dashboard_vars.openclose+'
';
}
to_insert=to_insert + ' ';
jQuery('#property_bedrooms_wrappr').after(to_insert);
wpestate_toogle_beds();
}
/**
*
*
*
*
*/
function wpestate_toogle_beds(){
jQuery('.beds_wrapper_control').on('click',function(){
var acesta=jQuery(this).parent();
acesta.find('.bedroom_input_val_wrapper').slideToggle();
});
}
/*
*
* Reply to a review
*
*/
function wpestate_reply_to_review(){
jQuery('.mess_send_reply_review_button').on('click',function(){
var commentId = jQuery(this).attr('data-review-reply-to-id');
var propertyid = jQuery(this).attr('data-review-reply-to-propertyid');
var parent = jQuery(this).parent();
var button = jQuery(this);
var content = parent.find('.review_reply_content').val();
var nonce = jQuery('#wprentals_reviews_actions').val();
var ajaxurl = control_vars.admin_url + 'admin-ajax.php';
//wpestate_message_reply
jQuery(this).text(dashboard_vars.processing);
jQuery.ajax({
type: 'POST',
url: ajaxurl,
dataType: 'json',
data: {
'action' : 'wpestate_review_message_reply',
'commentId' : commentId,
'propertyid' : propertyid,
'content' : content,
'security' : nonce,
},
success: function (data) {
parent.find('.wpestate_reply_to_review_message').show().text(data.message);
if(data.succes){
parent.find('.review_reply_content').remove();
button.remove();
parent.find('.wpestate_reply_to_review_content').show().append(content);
}
},
error: function (errorThrown) {
}
});
});
}