diff --git a/admin/fundraising.php b/admin/fundraising.php
index bdaefdea..a3bb4bf8 100644
--- a/admin/fundraising.php
+++ b/admin/fundraising.php
@@ -124,7 +124,7 @@ $q=mysql_query("SELECT * FROM fundraising_goals WHERE fiscalyear='{$config['FISC
=i18n("To Do List")?>
=i18n("Thank You's")?>
-$q=mysql_query("SELECT value, thanked, status, users_uid, sponsors_id, datereceived,
+$q=mysql_query("SELECT value, thanked, status, sponsors_id, datereceived,
DATE_ADD(datereceived, INTERVAL 1 MONTH) < NOW() AS onemonth,
DATE_ADD(datereceived, INTERVAL 2 MONTH) < NOW() AS twomonth
FROM fundraising_donations
@@ -132,7 +132,6 @@ $q=mysql_query("SELECT value, thanked, status, users_uid, sponsors_id, daterecei
AND fiscalyear='{$config['FISCALYEAR']}'
ORDER BY datereceived
");
- //AND (users.year IS NULL OR users.year='{$config['FISCALYEAR']}')
echo mysql_error();
if(mysql_num_rows($q)) {
echo "";
@@ -143,14 +142,7 @@ if(mysql_num_rows($q)) {
echo "\n";
while($r=mysql_fetch_object($q)) {
- /*
- if($r->users_uid) {
- $dq=mysql_query("SELECT CONCAT(firstname,' ',lastname) AS name FROM users WHERE uid='$r->users_uid' ORDER BY fairyear DESC LIMIT 1");
- }
- else if ($r->sponsors_id) {
- */
- $dq=mysql_query("SELECT organization AS name FROM sponsors WHERE id='$r->sponsors_id'");
- // }
+ $dq=mysql_query("SELECT organization AS name FROM sponsors WHERE id='$r->sponsors_id'");
$dr=mysql_fetch_object($dq);
if($r->twomonth) $s="style=\"background-color: ".colour_to_percent(0).";\"";
else if($r->onemonth) $s="style=\"background-color: ".colour_to_percent(50).";\"";
@@ -171,6 +163,48 @@ if(mysql_num_rows($q)) {
}
?>
+
+=i18n("Receipts to Issue")?>
+
+$q=mysql_query("SELECT value, receiptrequired, receiptsent, status, sponsors_id, datereceived,
+ DATE_ADD(datereceived, INTERVAL 1 MONTH) < NOW() AS onemonth,
+ DATE_ADD(datereceived, INTERVAL 2 MONTH) < NOW() AS twomonth
+ FROM fundraising_donations
+ WHERE (receiptrequired='yes' AND receiptsent='no') AND status='received'
+ AND fiscalyear='{$config['FISCALYEAR']}'
+ ORDER BY datereceived
+ ");
+echo mysql_error();
+if(mysql_num_rows($q)) {
+ echo "";
+ echo "".i18n("Name")." | \n";
+ echo "".i18n("Date Received")." | \n";
+ echo "".i18n("Amount")." | \n";
+ echo "".i18n("Generate Receipt")." | \n";
+ echo "
\n";
+
+ while($r=mysql_fetch_object($q)) {
+ $dq=mysql_query("SELECT organization AS name FROM sponsors WHERE id='$r->sponsors_id'");
+ $dr=mysql_fetch_object($dq);
+ if($r->twomonth) $s="style=\"background-color: ".colour_to_percent(0).";\"";
+ else if($r->onemonth) $s="style=\"background-color: ".colour_to_percent(50).";\"";
+ else $s="";
+
+ echo "";
+ echo " $dr->name | ";
+ echo " ".format_date($r->datereceived)." | ";
+ echo " ".format_money($r->value)." | ";
+ echo " ";
+ echo "".i18n("Generate Receipt")." | ";
+ echo "
\n";
+ }
+ echo "
\n";
+}else {
+ echo i18n("No Receipts pending");
+ echo "
\n";
+}
+?>
+
=i18n("Appeal Follow-Ups")?>
@@ -202,13 +236,13 @@ if(mysql_num_rows($q)) {
echo "";
echo "";
echo " ".i18n("Name")." | \n";
- echo " ".i18n("Funding Selection Date")." | \n";
echo " ".i18n("Proposal Submission Date")." | \n";
+ echo " ".i18n("Funding Selection Date")." | \n";
echo "
\n";
while($r=mysql_fetch_object($q)) {
echo "$r->organization | ";
- echo "".format_date($r->fundingselectiondate)." | ";
echo "".format_date($r->proposalsubmissiondate)." | ";
+ echo "".format_date($r->fundingselectiondate)." | ";
echo "
\n";
}
echo "
\n";
diff --git a/db/db.code.version.txt b/db/db.code.version.txt
index c748b568..0d667b5e 100644
--- a/db/db.code.version.txt
+++ b/db/db.code.version.txt
@@ -1 +1 @@
-147
+148
diff --git a/db/db.update.148.sql b/db/db.update.148.sql
new file mode 100644
index 00000000..620c40fe
--- /dev/null
+++ b/db/db.update.148.sql
@@ -0,0 +1,4 @@
+ALTER TABLE `fundraising_donations` DROP `users_uid` ;
+ALTER TABLE `fundraising_donations` ADD `receiptrequired` ENUM( 'no', 'yes' ) NOT NULL AFTER `thanked` ;
+ALTER TABLE `fundraising_donations` ADD `receiptsent` ENUM( 'no', 'yes' ) NOT NULL AFTER `receiptrequired` ;
+