|
|
@ -88,50 +88,58 @@ $(function(){ |
|
|
|
} ); |
|
|
|
|
|
|
|
|
|
|
|
// could have done this in php, but this separates out the view logic
|
|
|
|
var d = new Date(); |
|
|
|
volunteer_status(); |
|
|
|
|
|
|
|
var membership_ids; |
|
|
|
var last_index = $("#shop_log tr").length; |
|
|
|
// could have done this in php, but this separates out the view logic
|
|
|
|
var membership_ids, volunteer_ids; |
|
|
|
var last_index = $("#shop_log tr[id]").length; |
|
|
|
if (last_index) { |
|
|
|
last_index = last_index -1; |
|
|
|
$.each($("#shop_log tr"), function(index) { |
|
|
|
last_index = last_index - 1; |
|
|
|
$.each($("#shop_log tr[id]"), function(index) { |
|
|
|
|
|
|
|
if (this.id) { |
|
|
|
if (this.id) { |
|
|
|
|
|
|
|
var id = this.id; |
|
|
|
var id = this.id; |
|
|
|
|
|
|
|
// 2 tr for first created login
|
|
|
|
if (last_index <= 2) { |
|
|
|
membership_ids = "contact_id=" + id; |
|
|
|
} |
|
|
|
else if (!membership_ids) { |
|
|
|
membership_ids = "(contact_id=" + id + " OR "; |
|
|
|
} else if ( index === last_index) { |
|
|
|
membership_ids += "contact_id=" + id + ")"; |
|
|
|
} else { |
|
|
|
membership_ids += "contact_id=" + id + " OR "; |
|
|
|
} |
|
|
|
} |
|
|
|
if (last_index <= 1) { |
|
|
|
membership_ids = "contact_id=" + id; |
|
|
|
} |
|
|
|
else if (!membership_ids) { |
|
|
|
membership_ids = "(contact_id=" + id + " OR "; |
|
|
|
} else if ( index === last_index) { |
|
|
|
membership_ids += "contact_id=" + id + ")"; |
|
|
|
} else { |
|
|
|
membership_ids += "contact_id=" + id + " OR "; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
}); |
|
|
|
} |
|
|
|
|
|
|
|
if (membership_ids) { |
|
|
|
volunteer_ids = membership_ids.replace(/contact_id/g,"contacts.contact_id"); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
var d = new Date(); |
|
|
|
volunteer_status(volunteer_ids); |
|
|
|
membership_status(membership_ids); |
|
|
|
|
|
|
|
// volunteer status
|
|
|
|
function volunteer_status() { |
|
|
|
|
|
|
|
$.each($("#shop_log tr"), function() { |
|
|
|
function volunteer_status(contacts) { |
|
|
|
|
|
|
|
var all_members_obj; //reuse this object
|
|
|
|
|
|
|
|
if (contacts) { |
|
|
|
|
|
|
|
if (this.id) { |
|
|
|
var id = this.id; |
|
|
|
$.post("json/transaction.php", { volunteer_benefits: 1, contact_id: contacts }, function (data) { |
|
|
|
|
|
|
|
$.post("json/transaction.php", { volunteer_benefits: 1, contact_id: this.id }, function (data) { |
|
|
|
|
|
|
|
all_members_obj = $.parseJSON(data); |
|
|
|
|
|
|
|
$.each(all_members_obj, function() { |
|
|
|
|
|
|
|
var year = d.getFullYear(); |
|
|
|
var bikes_earned = 0; |
|
|
|
var volunteer_hours_redeemed = 0; |
|
|
|
var obj = $.parseJSON(data); |
|
|
|
var obj = this; |
|
|
|
|
|
|
|
|
|
|
|
var volunteer = "", remaining = 0, vhr = "", max_bikes_earned = 0; |
|
|
|
if (obj.volunteer) { |
|
|
@ -153,7 +161,7 @@ $(function(){ |
|
|
|
var volunteer_with_redeemed_hours_at_zero = obj.current_year_volunteer_hours - vhr; |
|
|
|
|
|
|
|
if (obj.contact_id) { |
|
|
|
|
|
|
|
|
|
|
|
if (obj.volunteer_hours && obj.volunteer_hours !== '0') { |
|
|
|
|
|
|
|
if (volunteer_with_redeemed_hours_at_zero !== 0) { |
|
|
@ -178,7 +186,7 @@ $(function(){ |
|
|
|
$('.update_interests a').hover( function(e){ $(this).css("color",e.type === "mouseenter"?"blue":"#1b691e");}); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
} else { |
|
|
|
|
|
|
|
title = obj.normal_full_name + "\r\n" + |
|
|
@ -196,8 +204,8 @@ $(function(){ |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} else { |
|
|
|
|
|
|
|
} else { |
|
|
|
|
|
|
|
var name = $("#" + id + " td a[href*='individual']").text(); |
|
|
|
var name_obj = name.trim().split(", "); |
|
|
|
name = name_obj[1] + " " + name_obj[0]; |
|
|
@ -214,12 +222,37 @@ $(function(){ |
|
|
|
|
|
|
|
$('.update_interests a').css({color: "#1b691e", textDecoration: "none", cursor: "crosshair"}); |
|
|
|
$('.update_interests a').hover( function(e){ $(this).css("color",e.type === "mouseenter"?"blue":"#1b691e");}); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}); // each all_members_obj
|
|
|
|
}); // post volunteer benefits
|
|
|
|
} // if this is a volunteer
|
|
|
|
|
|
|
|
// not a current volunteer within the last 365 days, or never has been a volunteer
|
|
|
|
$(".volunteer_hours:not([title])").prevAll(".existing_shop_user") |
|
|
|
.children().each( function() { |
|
|
|
|
|
|
|
var name = $(this).text(); |
|
|
|
var name_obj = name.trim().split(", "); |
|
|
|
name = name_obj[1] + " " + name_obj[0]; |
|
|
|
|
|
|
|
}); // post volunteer benefits
|
|
|
|
} // if id
|
|
|
|
}); // each tr
|
|
|
|
var id = this.href.split("=")[1]; |
|
|
|
|
|
|
|
var title = name + "\r\n" + |
|
|
|
"Volunteer Hours for last 365 days: None" + "\r\n"; |
|
|
|
|
|
|
|
$(".volunteer_hours_" + id). |
|
|
|
html("<span class='update_interests'><a href='./contact_add_edit_select.php?contact_id=" + |
|
|
|
id + |
|
|
|
"'>Update Interests</a></span>"). |
|
|
|
parent().css({backgroundColor: "rgb(190, 199, 204)", textAlign: "center", cursor: "cell"}). |
|
|
|
prop("title",title).css({textAlign: "center"}); |
|
|
|
|
|
|
|
$('.update_interests a').css({color: "#1b691e", textDecoration: "none", cursor: "crosshair"}); |
|
|
|
$('.update_interests a').hover( function(e){ $(this).css("color",e.type === "mouseenter"?"blue":"#1b691e");}); |
|
|
|
|
|
|
|
}); // .each not a current volunteer
|
|
|
|
|
|
|
|
} // function volunteer_status
|
|
|
|
|
|
|
@ -230,58 +263,56 @@ $(function(){ |
|
|
|
var expiration_date; |
|
|
|
var all_members_obj; //reuse this object
|
|
|
|
var membership_transaction; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//$.each($("#shop_log tr"), function() {
|
|
|
|
|
|
|
|
if (contacts) { |
|
|
|
if (contacts) { |
|
|
|
|
|
|
|
$.post("json/transaction.php", { membership_benefits: 1, contact_id: contacts }, function (data) { |
|
|
|
|
|
|
|
all_members_obj = $.parseJSON(data); |
|
|
|
|
|
|
|
$.post("json/transaction.php", { membership_benefits: 1, contact_id: contacts }, function (data) { |
|
|
|
|
|
|
|
all_members_obj = $.parseJSON(data); |
|
|
|
|
|
|
|
$.each(all_members_obj, function() { |
|
|
|
|
|
|
|
var membership_obj = this; |
|
|
|
|
|
|
|
var title = membership_obj.normal_full_name + "\r\n" + |
|
|
|
"expiration: " + membership_obj.expiration_date; |
|
|
|
|
|
|
|
$.each(all_members_obj, function() { |
|
|
|
|
|
|
|
if (membership_obj.expiration_date) { |
|
|
|
var exp = membership_obj.expiration_date; |
|
|
|
expiration_date = new Date(exp.split("-").toString()); |
|
|
|
if (d < expiration_date) { |
|
|
|
membership_transaction = true; |
|
|
|
} |
|
|
|
} |
|
|
|
var membership_obj = this; |
|
|
|
|
|
|
|
var title = membership_obj.normal_full_name + "\r\n" + |
|
|
|
"expiration: " + membership_obj.expiration_date; |
|
|
|
|
|
|
|
if (typeof membership_obj.expiration_date && membership_obj.expiration_date !== undefined) { |
|
|
|
|
|
|
|
var exp = membership_obj.expiration_date; |
|
|
|
expiration_date = new Date(exp.split("-").toString()); |
|
|
|
|
|
|
|
// expired membership
|
|
|
|
if (d >= expiration_date) { |
|
|
|
$(".paid_membership_" + membership_obj.contact_id).html("Expired"). |
|
|
|
parent().css({backgroundColor: "red", textAlign: "center", cursor: "cell", textDecoration: "none"}).prop("title",title); |
|
|
|
if (membership_obj.expiration_date) { |
|
|
|
var exp = membership_obj.expiration_date; |
|
|
|
expiration_date = new Date(exp.split("-").toString()); |
|
|
|
if (d < expiration_date) { |
|
|
|
membership_transaction = true; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
if (typeof membership_obj.expiration_date && membership_obj.expiration_date !== undefined) { |
|
|
|
|
|
|
|
var exp = membership_obj.expiration_date; |
|
|
|
expiration_date = new Date(exp.split("-").toString()); |
|
|
|
|
|
|
|
// paid membership
|
|
|
|
} else if (d < expiration_date) { |
|
|
|
$(".paid_membership_" + membership_obj.contact_id).html("Current"). |
|
|
|
parent().css({backgroundColor: "green", textAlign: "center", cursor: "cell"}).prop("title",title).css({textAlign: "center"}); |
|
|
|
|
|
|
|
} // paid membership
|
|
|
|
|
|
|
|
} |
|
|
|
// expired membership
|
|
|
|
if (d >= expiration_date) { |
|
|
|
$(".paid_membership_" + membership_obj.contact_id).html("Expired"). |
|
|
|
parent().css({backgroundColor: "red", textAlign: "center", cursor: "cell", textDecoration: "none"}).prop("title",title); |
|
|
|
|
|
|
|
// paid membership
|
|
|
|
} else if (d < expiration_date) { |
|
|
|
$(".paid_membership_" + membership_obj.contact_id).html("Current"). |
|
|
|
parent().css({backgroundColor: "green", textAlign: "center", cursor: "cell"}).prop("title",title).css({textAlign: "center"}); |
|
|
|
|
|
|
|
}); // each all_members_obj
|
|
|
|
}); // end if this a paid member
|
|
|
|
|
|
|
|
// never been a member
|
|
|
|
$(".paid_membership:not([title])").css({cursor: "not-allowed"}); |
|
|
|
|
|
|
|
} // if contacts
|
|
|
|
} // paid membership
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}); // each all_members_obj
|
|
|
|
}); // end if this a paid member
|
|
|
|
|
|
|
|
// never been a member
|
|
|
|
$(".paid_membership:not([title])").css({cursor: "not-allowed"}); |
|
|
|
|
|
|
|
} // if contacts
|
|
|
|
} // function membership status
|
|
|
|
|
|
|
|
}); |