forked from science-ation/science-ation
- Obey the year specifier
- Add a "volunteer complete" option
This commit is contained in:
parent
760b84f6ac
commit
53175acbfe
@ -87,6 +87,14 @@ $report_volunteers_fields = array(
|
|||||||
'table' => 'users.cpr',
|
'table' => 'users.cpr',
|
||||||
'value_map' =>array ('no' => 'no', 'yes' => 'YES')),
|
'value_map' =>array ('no' => 'no', 'yes' => 'YES')),
|
||||||
|
|
||||||
|
'complete' => array(
|
||||||
|
'name' => 'Volunteer -- Registration Complete',
|
||||||
|
'header' => 'Cmpl',
|
||||||
|
'width' => 0.4,
|
||||||
|
'table' => 'users_volunteer.volunteer_complete',
|
||||||
|
'value_map' => array ('no' => 'No', 'yes' => 'Yes'),
|
||||||
|
'components' => array('users_volunteer')),
|
||||||
|
|
||||||
'position_name' => array (
|
'position_name' => array (
|
||||||
'name' => 'Volunteer Position -- Name',
|
'name' => 'Volunteer Position -- Name',
|
||||||
'header' => 'Position',
|
'header' => 'Position',
|
||||||
@ -121,6 +129,10 @@ $report_volunteers_fields = array(
|
|||||||
$fields = $report_volutneers_fields;
|
$fields = $report_volutneers_fields;
|
||||||
$year = $report['year'];
|
$year = $report['year'];
|
||||||
|
|
||||||
|
if(in_array('users_volunteer', $components)) {
|
||||||
|
$uv_from = 'LEFT JOIN users_volunteer ON users_volunteer.users_id=users.id';
|
||||||
|
}
|
||||||
|
|
||||||
$signup_join = '';
|
$signup_join = '';
|
||||||
$signup_where = '';
|
$signup_where = '';
|
||||||
|
|
||||||
@ -135,8 +147,10 @@ $report_volunteers_fields = array(
|
|||||||
$q = " FROM
|
$q = " FROM
|
||||||
users
|
users
|
||||||
$signup_join
|
$signup_join
|
||||||
|
$uv_from
|
||||||
WHERE
|
WHERE
|
||||||
users.types LIKE '%volunteer%'
|
users.types LIKE '%volunteer%'
|
||||||
|
AND users.year='$year'
|
||||||
$signup_where
|
$signup_where
|
||||||
";
|
";
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user