mirror of
https://github.com/fspc/Yellow-Bike-Database.git
synced 2025-04-04 09:33:24 -04:00
amount.one didn't hack it, back to amount.on.
This commit is contained in:
parent
6f3fc83a0b
commit
945428b0c9
@ -840,7 +840,7 @@ $(function() {
|
|||||||
var exp = obj.expiration_date;
|
var exp = obj.expiration_date;
|
||||||
expiration_date = new Date(exp.split("-").toString());
|
expiration_date = new Date(exp.split("-").toString());
|
||||||
if (d >= expiration_date) {
|
if (d >= expiration_date) {
|
||||||
amount.one("input", function () {
|
amount.on("input", function () {
|
||||||
$("#membership_discount").empty();
|
$("#membership_discount").empty();
|
||||||
});
|
});
|
||||||
if ($("#expired_membership").length === 1) {
|
if ($("#expired_membership").length === 1) {
|
||||||
@ -858,7 +858,7 @@ $(function() {
|
|||||||
amount.on("input", function () {
|
amount.on("input", function () {
|
||||||
var discount = (price * (obj.membership_discount / 100).toFixed(2)).toFixed(2);
|
var discount = (price * (obj.membership_discount / 100).toFixed(2)).toFixed(2);
|
||||||
var discount_price = (price - discount).toFixed(2);
|
var discount_price = (price - discount).toFixed(2);
|
||||||
console.log("original " + price + " discount " + discount + " discounted " + discount_price);
|
//console.log("original " + price + " discount " + discount + " discounted " + discount_price);
|
||||||
$("#membership_discount").text("Member pays $" + discount_price).show();
|
$("#membership_discount").text("Member pays $" + discount_price).show();
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -867,13 +867,13 @@ $(function() {
|
|||||||
amount.on("input", function () {
|
amount.on("input", function () {
|
||||||
var discount = (price * (obj.membership_discount / 100).toFixed(2)).toFixed(2);
|
var discount = (price * (obj.membership_discount / 100).toFixed(2)).toFixed(2);
|
||||||
var discount_price = (price - discount).toFixed(2);
|
var discount_price = (price - discount).toFixed(2);
|
||||||
console.log("original " + price + " discount " + discount + " discounted " + discount_price);
|
//console.log("original " + price + " discount " + discount + " discounted " + discount_price);
|
||||||
$("#membership_discount").text("Member pays $" + discount_price).show();
|
$("#membership_discount").text("Member pays $" + discount_price).show();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
amount.one("input", function () {
|
amount.on("input", function () {
|
||||||
$("#membership_discount").empty();
|
$("#membership_discount").empty();
|
||||||
});
|
});
|
||||||
if ($("#paid_member").length === 1) {
|
if ($("#paid_member").length === 1) {
|
||||||
@ -909,7 +909,7 @@ $(function() {
|
|||||||
} else {
|
} else {
|
||||||
price = amount.cleanVal();
|
price = amount.cleanVal();
|
||||||
}
|
}
|
||||||
console.log("original " + price);
|
//console.log("original " + price);
|
||||||
$("#original_price").text(price);
|
$("#original_price").text(price);
|
||||||
|
|
||||||
// How many hours does this volunteer have?
|
// How many hours does this volunteer have?
|
||||||
@ -986,9 +986,9 @@ $(function() {
|
|||||||
} else {
|
} else {
|
||||||
// in some cases this is 1 if value is greater than price like 16 * 8 = 128 > 120
|
// in some cases this is 1 if value is greater than price like 16 * 8 = 128 > 120
|
||||||
spinner_value = $(this).spinner("value");
|
spinner_value = $(this).spinner("value");
|
||||||
console.log("weird " + spinner_value);
|
//console.log("weird " + spinner_value);
|
||||||
}
|
}
|
||||||
console.log("spinner value " + spinner_value);
|
//console.log("spinner value " + spinner_value);
|
||||||
|
|
||||||
// function redeemable(obj, spinner_value)
|
// function redeemable(obj, spinner_value)
|
||||||
if (max > 0 || max === undefined) {
|
if (max > 0 || max === undefined) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user