mirror of
https://github.com/fspc/Yellow-Bike-Database.git
synced 2025-02-23 01:03:23 -05:00
This uses tradition declaration notation rather than emacscript 6 notation, just for compatibility with older browsers.
This commit is contained in:
parent
b7f128feca
commit
5047f59996
@ -784,6 +784,8 @@ $(function() {
|
|||||||
if (data !== "First Transaction") {
|
if (data !== "First Transaction") {
|
||||||
var obj = $.parseJSON(data);
|
var obj = $.parseJSON(data);
|
||||||
var history = obj[obj.length - 1];
|
var history = obj[obj.length - 1];
|
||||||
|
|
||||||
|
// bug: need to check if qualifies to be a volunteer
|
||||||
$("#original_price").text(history.original_price).show();
|
$("#original_price").text(history.original_price).show();
|
||||||
$("#volunteer_hours").text(history.redeemed_hours).show();
|
$("#volunteer_hours").text(history.redeemed_hours).show();
|
||||||
}
|
}
|
||||||
@ -1020,6 +1022,13 @@ $(function() {
|
|||||||
|
|
||||||
// data structure for volunteer benefits history
|
// data structure for volunteer benefits history
|
||||||
var year = d.getFullYear();
|
var year = d.getFullYear();
|
||||||
|
var volunteer_benefits_history = {};
|
||||||
|
volunteer_benefits_history[year] = {
|
||||||
|
volunteer_hours_redeemed: parseFloat($("#redeemable_hours").val()),
|
||||||
|
max_bike_earned: 0
|
||||||
|
};
|
||||||
|
|
||||||
|
/*
|
||||||
var volunteer_benefits_history = {
|
var volunteer_benefits_history = {
|
||||||
[year] :
|
[year] :
|
||||||
{
|
{
|
||||||
@ -1027,6 +1036,7 @@ $(function() {
|
|||||||
max_bike_earned: 0
|
max_bike_earned: 0
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
*/
|
||||||
|
|
||||||
// Volunteer History query
|
// Volunteer History query
|
||||||
$.post("json/transaction.php",{ volunteer_history_select: 1, contact_id: sold_to }, function(data) {
|
$.post("json/transaction.php",{ volunteer_history_select: 1, contact_id: sold_to }, function(data) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user