我正在寻找编码方面的帮助。我有一个类似于airbnb的预订系统。我的问题与预订日期有关。更具体地说,我将举一个例子
已经为2012年12月2日至2012年12月5日之后的日期预订了一个公寓:
如果新客户从2012年12月4日至2012年12月6日选择以下日期,则会显示消息“已预订这些日期”。
但是,如果客户选择的日期类似于1 dec,直到6 dec或29 nov和10 dec。如果日期可用,系统会让客户继续进行。
总结:如果他选择的时间段包括已经预订的日期,我想确保客户会收到“已经预订了这些日期”的消息。
我不是编码专家,根本不是。但我很确定问题来自显示可用Flats的javascript。
我会把整个Js。
消息“这些日期已经预订”对应于#book_it_disabled_message。
提前感谢您的时间和技能。
function check_inputs(b, c, a) {
b = typeof (b) != "undefined" ? b : true;
c = typeof (c) != "undefined" ? c : "checkin";
a = typeof (a) != "undefined" ? a : "checkout";
if (calendar_is_not_set_date(c)) {
if (b) {
calendar_show_cal(c)
}
return false
}
if (calendar_is_not_set_date(a)) {
if (b) {
calendar_show_cal(a)
}
return false
}
return true
}
function copy_checkin_checkout_fields() {
var a = check_inputs(false);
if (a) {
jQuery("#message_checkin").val(jQuery("#checkin").val());
jQuery("#message_checkout").val(jQuery("#checkout").val());
jQuery("#message_number_of_guests").val(jQuery("#number_of_guests").val());
check_availability_of_dates()
}
}
function copy_message_fields_to_book_it() {
jQuery("#checkin").val(jQuery("#message_checkin").val());
jQuery("#checkout").val(jQuery("#message_checkout").val());
jQuery("#number_of_guests").val(jQuery("#message_number_of_guests").val())
}
function refresh_subtotal() {
var a = function (c, e, d) {
var b;
if (c.available) {
jQuery("#book_it_disabled").hide();
jQuery("#book_it_enabled").show();
b = jQuery("#price_amount").html(c.price_per_night).data("nightly-price", c.price_per_night);
jQuery("#service_fee").html(c.service_fee);
CogzidelRooms.staggered = c.staggered;
if (CogzidelRooms.staggered === true) {
if (CogzidelRooms.stayOffered !== 0) {
jQuery("#payment_period").hide();
jQuery("#per_month").show();
CogzidelRooms.$cancellationVal.text(Translations.long_term);
jQuery("#includesFees").show();
jQuery("#book_it_default").addClass("monthly")
}
jQuery("#subtotal_area").hide();
jQuery("#show_more_subtotal_info").hide();
jQuery("#price_amount").text(Cogzidel.Utils.decode(c.staggered_price));
b.data("monthly-price", c.staggered_price);
CogzidelRooms.hideMonthlyPriceDetails()
} else {
if (CogzidelRooms.stayOffered === 2) {
jQuery("#per_month").hide();
CogzidelRooms.$cancellationVal.text(CogzidelRooms.originalCancellationPolicy);
jQuery("#includesFees").hide();
jQuery("#book_it_default").removeClass("monthly");
jQuery("#payment_period").show()
}
jQuery("#subtotal_area ").show();
jQuery("#subtotal_area").find("p").show();
jQuery("#show_more_subtotal_info").show();
jQuery("#subtotal").html(c.total_price);
jQuery("#payment_period").val("per_night");
b.removeAttr("data-monthly-price");
CogzidelRooms.showMonthlyPriceDetails()
}
if (c.can_instant_book) {
Page3.showInstantBookButton()
} else {
Page3.showBookItButton()
}
} else {
if (CogzidelRooms.stayOffered === 1) {
jQuery("#payment_period").hide();
jQuery("#per_month").show();
CogzidelRooms.$cancellationVal.text(Translations.long_term);
jQuery("#includesFees").show();
CogzidelRooms.hideMonthlyPriceDetails()
} else {
jQuery("#book_it_default").removeClass("monthly");
jQuery("#payment_period").show();
jQuery("#per_month").hide();
CogzidelRooms.$cancellationVal.text(CogzidelRooms.originalCancellationPolicy);
jQuery("#includesFees").hide();
jQuery("#price_amount").html(jQuery("#price_amount").data("nightly-price"));
CogzidelRooms.showMonthlyPriceDetails()
}
jQuery("#book_it_disabled_message").html(c.reason_message);
jQuery("#book_it_enabled").hide();
jQuery("#book_it_disabled").show();
jQuery("#show_more_subtotal_info").hide()
}
jQuery("#book_it_status").pulsate(1, 600)
};
jQuery("#book_it_button").removeAttr("disabled");
jQuery("#subtotal_area").find("p").hide();
jQuery("#subtotal_area").show();
if (calendar_is_not_set_date("checkin") || calendar_is_not_set_date("checkout")) {
a = function () {};
jQuery("#book_it_disabled").hide();
jQuery("#book_it_enabled").show();
jQuery("#subtotal_area").hide();
jQuery("#show_more_subtotal_info").hide()
} else {
jQuery("#subtotal, #book_it_disabled_message").html('<img src="'+base_url+'images/spinner.gif" alt="" height="16" width="16" />')
}
jQuery.getJSON(base_url+"rooms/ajax_refresh_subtotal", jQuery("#book_it_form").serialize(), a)
}
答案 0 :(得分:1)
从这一行:
if (calendar_is_not_set_date("checkin") || calendar_is_not_set_date("checkout")) {
您似乎在互斥功能中测试日期1和日期2。如果你只是一次测试1天,你还必须在每天(签入)和(签出)之间进行测试。
也许您需要一个接受签入和结帐日期作为2个参数的函数,并测试该日期块是否可用。