2009-10-16 17:53:59 +00:00
< ?
2025-01-29 03:30:48 +00:00
/*
* This file is part of the 'Science Fair In A Box' project
* SFIAB Website : http :// www . sfiab . ca
*
* Copyright ( C ) 2009 James Grant < james @ lightbox . org >
*
* This program is free software ; you can redistribute it and / or
* modify it under the terms of the GNU General Public
* License as published by the Free Software Foundation , version 2.
*
* This program is distributed in the hope that it will be useful ,
* but WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the GNU
* General Public License for more details .
*
* You should have received a copy of the GNU General Public License
* along with this program ; see the file COPYING . If not , write to
* the Free Software Foundation , Inc . , 59 Temple Place - Suite 330 ,
* Boston , MA 02111 - 1307 , USA .
*/
2009-10-16 17:53:59 +00:00
?>
< ?
2025-01-29 03:30:48 +00:00
require ( '../common.inc.php' );
require_once ( '../user.inc.php' );
user_auth_required ( 'committee' , 'admin' );
require ( 'fundraising_common.inc.php' );
require_once ( '../lpdf.php' );
require_once ( '../lcsv.php' );
$id = intval ( $_GET [ 'id' ]);
$type = $_GET [ 'type' ];
if ( $id && $type ) {
switch ( $id ) {
case 1 :
if ( $type == 'csv' ) {
$rep = new lcsv ( $config [ 'FAIRNAME' ]);
} else if ( $type == 'pdf' ) {
$rep = new lpdf ( i18n ( $config [ 'fairname' ]),
i18n ( 'List of Prospects By Appeal' ),
$_SERVER [ 'DOCUMENT_ROOT' ] . $config [ 'SFIABDIRECTORY' ] . '/data/logo-200.gif' );
2009-10-16 17:53:59 +00:00
$rep -> newPage ();
$rep -> setFontSize ( 8 );
2025-01-29 03:30:48 +00:00
}
$sql = " SELECT * FROM fundraising_campaigns WHERE fiscalyear=' { $config [ 'FISCALYEAR' ] } ' " ;
if ( $_GET [ 'fundraising_campaigns_id' ]) {
$sql .= " AND id=' " . intval ( $_GET [ 'fundraising_campaigns_id' ]) . " ' " ;
}
$sql .= ' ORDER BY name' ;
$q = $pdo -> prepare ( $sql );
$q -> execute ();
show_pdo_errors_if_any ( $pdo );
while ( $r = $q -> fetch ( PDO :: FETCH_OBJ )) {
$rep -> heading ( $r -> name );
$table = array ();
$table [ 'header' ] = array ( 'Name' , 'Contact' , 'Phone' , 'Address' , '$ appeal' , '$ this year' , '$ last year' , '%chg' );
$table [ 'widths' ] = array ( 1.5 , 1 , 1 , 1 , 0.9 , 0.9 , 0.9 , 0.5 );
$table [ 'dataalign' ] = array ( 'left' , 'left' , 'left' , 'left' , 'right' , 'right' , 'right' , 'center' );
$thisyear = $config [ 'FISCALYEAR' ];
$lastyear = $config [ 'FISCALYEAR' ] - 1 ;
$pq = $pdo -> prepare ( " SELECT * FROM fundraising_campaigns_users_link WHERE fundraising_campaigns_id=' $r->id ' " );
$pq -> execute ();
while ( $pr = $pq -> fetch ( PDO :: FETCH_OBJ )) {
$u = user_load_by_uid ( $pr -> users_uid );
// hopefully this never returns false, but who knows..
if ( $u ) {
// we only want the primaries, yea, i know... we have this werid confusing between a USER being linked to a sponsor and then a sponsor having multiple users
// and then only getting the primary contact for the sponsor even if it might not be the user thats in teh campaign... my brain hurts
2009-10-16 17:53:59 +00:00
// if($u['primary']=="no")
// continue;
2025-01-29 03:30:48 +00:00
// gah i dont know what the heck to do here
2009-10-16 17:53:59 +00:00
2025-01-29 03:30:48 +00:00
if ( $u [ 'sponsors_id' ]) {
$cq = $pdo -> prepare ( " SELECT SUM(value) AS total FROM fundraising_donations WHERE sponsors_id=' { $u [ 'sponsors_id' ] } ' AND fundraising_campaigns_id=' $r->id ' AND status='received' AND fiscalyear=' $thisyear ' " );
2024-12-06 20:54:02 -05:00
$cq -> execute ();
2025-01-29 03:30:48 +00:00
$cr = $cq -> fetch ( PDO :: FETCH_OBJ );
$thisappeal = $cr -> total ;
$cq = $pdo -> prepare ( " SELECT SUM(value) AS total FROM fundraising_donations WHERE sponsors_id=' { $u [ 'sponsors_id' ] } ' AND status='received' AND fiscalyear=' $thisyear ' " );
2024-12-06 20:54:02 -05:00
$cq -> execute ();
2025-01-29 03:30:48 +00:00
$cr = $cq -> fetch ( PDO :: FETCH_OBJ );
$thisyeartotal = $cr -> total ;
$cq = $pdo -> prepare ( " SELECT SUM(value) AS total FROM fundraising_donations WHERE sponsors_id=' { $u [ 'sponsors_id' ] } ' AND status='received' AND fiscalyear=' $lastyear ' " );
2024-12-06 20:54:02 -05:00
$cq -> execute ();
2025-01-29 03:30:48 +00:00
$cr = $cq -> fetch ( PDO :: FETCH_OBJ );
$lastyeartotal = $cr -> total ;
if ( $lastyeartotal )
$change = round (( $thisyeartotal - $lastyeartotal ) / $lastyeartotal * 100 );
2009-10-16 17:53:59 +00:00
else
2025-01-29 03:30:48 +00:00
$change = 'N/A' ;
$name = $u [ 'sponsor' ][ 'organization' ];
} else {
$name = $u [ 'firstname' ] . ' ' . $u [ 'lastname' ];
$thisappeal = 0 ;
$thisyeartotal = 0 ;
$lastyeartotal = 0 ;
$change = 0 ;
2009-10-16 17:53:59 +00:00
}
2025-01-29 03:30:48 +00:00
$table [ 'data' ][] = array (
$name ,
$u [ 'firstname' ] . ' ' . $u [ 'lastname' ],
$u [ 'phonework' ],
$u [ 'address' ] . ' ' . $u [ 'address2' ],
$thisappeal ,
$thisyeartotal ,
$lastyeartotal ,
$change
2009-10-16 17:53:59 +00:00
);
}
2025-01-29 03:30:48 +00:00
}
$rep -> addTable ( $table );
}
break ;
case 2 :
if ( $type == 'csv' ) {
$rep = new lcsv ( $config [ 'FAIRNAME' ], 'Results of Appeal by Purpose' , '' );
} else if ( $type == 'pdf' ) {
$rep = new lpdf ( i18n ( $config [ 'fairname' ]),
i18n ( 'Results of Appeal by Purpose' ),
$_SERVER [ 'DOCUMENT_ROOT' ] . $config [ 'SFIABDIRECTORY' ] . '/data/logo-200.gif' );
2009-10-16 21:19:37 +00:00
$rep -> newPage ();
$rep -> setFontSize ( 8 );
2025-01-29 03:30:48 +00:00
}
$sql = " SELECT * FROM fundraising_goals WHERE fiscalyear=' { $config [ 'FISCALYEAR' ] } ' " ;
if ( $_GET [ 'goal' ]) {
$sql .= " AND goal=' " . $_GET [ 'goal' ] . " ' " ;
}
$sql .= ' ORDER BY name' ;
$q = $pdo -> prepare ( $sql );
$q -> execute ();
show_pdo_errors_if_any ( $pdo );
while ( $r = $q -> fetch ( PDO :: FETCH_OBJ )) {
$rep -> heading ( $r -> name ) . ' (' . $r -> budget . ')' ;
$table = array ();
$table [ 'header' ] = array ( 'Appeal Name' , 'Target' , 'Received' , '% to Budget' , '# of Prospects' , '# of Donors/Sponsors' , 'Rate of Response' , 'Average Amount Given' );
$table [ 'widths' ] = array ( 1.5 , 0.5 , 0.5 , 0.75 , 0.9 , 0.9 , 0.9 , 0.5 );
$table [ 'dataalign' ] = array ( 'left' , 'right' , 'right' , 'center' , 'center' , 'center' , 'center' , 'right' );
$cq = $pdo -> prepare ( " SELECT * FROM fundraising_campaigns WHERE fundraising_goal=' $r->goal ' AND fiscalyear=' { $config [ 'FISCALYEAR' ] } ' " );
$cq -> execute ();
while ( $cr = $cq -> fetch ( PDO :: FETCH_OBJ )) {
$table [ 'data' ][] = array (
2009-10-16 21:19:37 +00:00
$cr -> name ,
$cr -> target ,
$received ,
$percenttobudget ,
$numprospects ,
$numdonors ,
$rate ,
2025-01-29 03:30:48 +00:00
$avgamount
);
}
2009-10-16 17:53:59 +00:00
2025-01-29 03:30:48 +00:00
$rep -> addTable ( $table );
}
2009-10-16 17:53:59 +00:00
2025-01-29 03:30:48 +00:00
break ;
2009-10-16 17:53:59 +00:00
}
$rep -> output ();
2025-01-29 03:30:48 +00:00
} else
header ( 'Location: fundraising_reports.php' );
2009-10-16 17:53:59 +00:00
?>