mirror of
https://github.com/fspc/Yellow-Bike-Database.git
synced 2025-04-04 09:33:24 -04:00
membership_benefits now just one call as desired for issue #46
* now need to do the same thing for volunteer_benefits
This commit is contained in:
parent
6baadda5ef
commit
f59020a823
60
js/shop.js
60
js/shop.js
@ -91,7 +91,32 @@ $(function(){
|
||||
// could have done this in php, but this separates out the view logic
|
||||
var d = new Date();
|
||||
volunteer_status();
|
||||
membership_status();
|
||||
|
||||
var membership_ids;
|
||||
var last_index = $("#shop_log tr").length;
|
||||
if (last_index) {
|
||||
last_index = last_index -1;
|
||||
$.each($("#shop_log tr"), function(index) {
|
||||
|
||||
if (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 ";
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
membership_status(membership_ids);
|
||||
|
||||
// volunteer status
|
||||
function volunteer_status() {
|
||||
@ -200,20 +225,24 @@ $(function(){
|
||||
|
||||
|
||||
// Is this a paid member?
|
||||
function membership_status() {
|
||||
function membership_status(contacts) {
|
||||
|
||||
var expiration_date;
|
||||
var membership_obj; //reuse this object
|
||||
var all_members_obj; //reuse this object
|
||||
var membership_transaction;
|
||||
|
||||
$.each($("#shop_log tr"), function() {
|
||||
|
||||
if (this.id) {
|
||||
var id = this.id;
|
||||
//$.each($("#shop_log tr"), function() {
|
||||
|
||||
$.post("json/transaction.php", { membership_benefits: 1, contact_id: this.id }, function (data) {
|
||||
if (contacts) {
|
||||
|
||||
membership_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;
|
||||
@ -244,16 +273,15 @@ $(function(){
|
||||
|
||||
} // paid membership
|
||||
|
||||
// never been a member
|
||||
} else {
|
||||
|
||||
$(".paid_membership_" + id).parent().css({cursor: "not-allowed"});
|
||||
|
||||
} // never been a member
|
||||
}
|
||||
|
||||
}); // each all_members_obj
|
||||
}); // end if this a paid member
|
||||
} // if this.id
|
||||
}); // each
|
||||
|
||||
// never been a member
|
||||
$(".paid_membership:not([title])").parent().css({cursor: "not-allowed"});
|
||||
|
||||
} // if contacts
|
||||
} // function membership status
|
||||
|
||||
});
|
@ -879,9 +879,11 @@ $(function() {
|
||||
|
||||
// Is this a paid member?
|
||||
// Determine membership benefits of current transaction
|
||||
$.post("json/transaction.php", { membership_benefits: 1, contact_id: this.value }, function (data) {
|
||||
var contact_id = "contact_id=" + this.value;
|
||||
$.post("json/transaction.php", { membership_benefits: 1, contact_id: contact_id }, function (data) {
|
||||
|
||||
membership_obj = $.parseJSON(data);
|
||||
var membership_objs = $.parseJSON(data);
|
||||
membership_obj = membership_objs[0];
|
||||
var title = membership_obj.normal_full_name + "\r\n" +
|
||||
membership_obj.email + "\r\n" +
|
||||
membership_obj.phone + "\r\n" +
|
||||
|
@ -677,14 +677,19 @@ $membership_discount = MEMBERSHIP_DISCOUNT;
|
||||
transaction_log.date AS membership_start, SUBSTRING_INDEX(DATE_ADD(date, INTERVAL 365 DAY), ' ', 1) AS expiration_date
|
||||
FROM transaction_log LEFT JOIN contacts ON transaction_log.sold_to = contacts.contact_id
|
||||
WHERE SUBSTRING_INDEX(date, ' ', 1) <= DATE_ADD(date, INTERVAL 365 DAY)
|
||||
AND (transaction_type='Memberships' AND paid=1) AND contact_id=" .
|
||||
AND (transaction_type='Memberships' AND paid=1) AND " .
|
||||
$contact_id .
|
||||
" ORDER by membership_start DESC;";
|
||||
|
||||
$sql = mysql_query($query, $YBDB) or die(mysql_error());
|
||||
$result = mysql_fetch_assoc($sql);
|
||||
|
||||
$members = [];
|
||||
while ( $result = mysql_fetch_assoc($sql) ) {
|
||||
$result['membership_discount'] = $membership_discount;
|
||||
return $result;
|
||||
$members[] = $result;
|
||||
}
|
||||
|
||||
return $members;
|
||||
|
||||
} // end membership_benefits
|
||||
|
||||
|
@ -269,7 +269,7 @@ if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "FormEdit")) {
|
||||
<td><?php sign_out($row_Recordset1['time_out'], $row_Recordset1['first_name']); ?> </td>
|
||||
<td><?php if($shop_CanEdit == 1) {echo "<a href=\"{$_SERVER['PHP_SELF']}?shop_id={$shop_id}&visit_id={$row_Recordset1['shop_visit_id']}\">edit</a>";} else {echo " ";} ?></td>
|
||||
<td><span class="volunteer_hours_<?php echo $row_Recordset1['contact_id']; ?>"></span></td>
|
||||
<td><span class="paid_membership_<?php echo $row_Recordset1['contact_id']; ?>"></span></td>
|
||||
<td class="paid_membership"><span class="paid_membership_<?php echo $row_Recordset1['contact_id']; ?>"></span></td>
|
||||
</tr>
|
||||
<input type="hidden" name="MM_insert" value="FormUpdate">
|
||||
<input type="hidden" name="shop_visit_id" value="<?php echo $row_Recordset1['shop_visit_id']; ?>">
|
||||
|
Loading…
x
Reference in New Issue
Block a user