From: Alan Jack Pippin <ajp@pippin.(none)> Date: Mon, 27 Nov 2006 05:28:56 +0000 (-0700) Subject: Added new vis_sched and schedule tools. X-Git-Tag: release_0_1_0~41 X-Git-Url: http://git.pippins.net/%27%20.%20%24this-%3Ephpgw_js_url%20.%20%27/jscalendar/%7Blink_hometeaching%7D?a=commitdiff_plain;h=fcd809d95772f33ac232309c3caa3d0c85307963;p=eq%2F.git Added new vis_sched and schedule tools. Fixed import bug related to finding a family_id for parent records. --- diff --git a/import_ward_data b/import_ward_data index 8cf3d0d..423223b 100755 --- a/import_ward_data +++ b/import_ward_data @@ -135,9 +135,7 @@ sub update_eq_aaronic_table #| name | varchar(60) | YES | | NULL | | #| phone | varchar(12) | YES | | NULL | | #| ppi_pri | int(10) unsigned | YES | | 1 | | -#| visit_pri | int(10) unsigned | YES | | 1 | | #| ppi_notes | varchar(128) | YES | | NULL | | -#| visit_notes | varchar(128) | YES | | NULL | | #| valid | tinyint(1) | YES | | NULL | | #+-------------+------------------+------+-----+---------+----------------+ sub update_eq_elder_table @@ -165,7 +163,7 @@ sub update_eq_elder_table if($rows == 0) { # No existing records found for this elder, make a new entry print " Adding new Elder: $elder_name\n"; - $sth = $dbh->prepare("insert into eq_elder values (NULL,'$elder_name','$phone','1','1','','',1)"); + $sth = $dbh->prepare("insert into eq_elder values (NULL,'$elder_name','$phone','1','',1)"); $sth->execute or die "-E- DB error: $DBI::errstr\n"; } elsif($rows == 1) { # An existing record was found for this elder, update it @@ -354,6 +352,8 @@ sub update_eq_companionship_table #| name | varchar(30) | YES | | NULL | | #| name_id | varchar(30) | YES | | NULL | | #| companionship | int(16) unsigned | YES | | NULL | | +#| visit_pri | int(10) unsigned | YES | | 1 | | +#| visit_notes | varchar(128) | YES | | NULL | | #| valid | tinyint(1) | YES | | NULL | | #+---------------+------------------+------+-----+---------+-------+ sub update_eq_family_table @@ -386,7 +386,7 @@ sub update_eq_family_table if($rows == 0) { # No existing records found for this family, make a new entry print " Adding new Family: $family_name\n"; - $sth = $dbh->prepare("insert into eq_family values (NULL,$id,'$family_name','$name_id','0',1)"); + $sth = $dbh->prepare("insert into eq_family values (NULL,$id,'$family_name','$name_id','0',1,1,'')"); $sth->execute or die "-E- DB error: $DBI::errstr\n"; } elsif($rows == 1) { # An existing record was found for this family, update it @@ -475,11 +475,14 @@ sub update_eq_parent_table } # Find the family id for this parent's HofH_ID. - $sth = $dbh->prepare("select * from eq_family where hofh_id='$hofh_id'"); + $sth = $dbh->prepare("select * from eq_family where hofh_id='$hofh_id' and valid=1"); $sth->execute or die "-E- DB error: $DBI::errstr\n"; - $sqlhashref = $sth->fetchrow_hashref(); - $family_id = $sqlhashref->{'family'}; - + my @family_data = (); + while($sqlhashref = $sth->fetchrow_hashref) { push(@family_data, $sqlhashref); } + my $family_rows = scalar @family_data; + if($family_rows > 0) { $family_id = $family_data[0]->{'family'}; } + else { $family_id = 0; } + # Find out how many parents match this parent's name $sth = $dbh->prepare("select * from eq_parent where name='$parent_name'"); $sth->execute or die "-E- DB error: $DBI::errstr\n"; @@ -487,12 +490,12 @@ sub update_eq_parent_table while($sqlhashref = $sth->fetchrow_hashref) { push(@data, $sqlhashref); } my $rows = scalar @data; - if($rows == 0) { + if($rows == 0 && $family_rows > 0) { # No existing records found for this parent, make a new entry print " Adding new Parent: $parent_name\n"; $sth = $dbh->prepare("insert into eq_parent values (NULL,$family_id,'$parent_name','$year-$month-$day','$phone','$address','$id',1)"); $sth->execute or die "-E- DB error: $DBI::errstr\n"; - } elsif($rows == 1) { + } elsif($rows == 1 && $family_rows > 0) { # An existing record was found for this parent, update it print " Updating existing parent: $parent_name\n"; $sth = $dbh->prepare("update eq_parent set family='$family_id' where name='$parent_name'"); @@ -549,11 +552,14 @@ sub update_eq_child_table $hofh_id = $membership_data{$index}{'HofH ID'}; # Find the family id for this child's HofH_ID. - $sth = $dbh->prepare("select * from eq_family where hofh_id='$hofh_id'"); + $sth = $dbh->prepare("select * from eq_family where hofh_id='$hofh_id' and valid=1"); $sth->execute or die "-E- DB error: $DBI::errstr\n"; - $sqlhashref = $sth->fetchrow_hashref(); - $family_id = $sqlhashref->{'family'}; - + my @family_data = (); + while($sqlhashref = $sth->fetchrow_hashref) { push(@family_data, $sqlhashref); } + my $family_rows = scalar @family_data; + if($family_rows > 0) { $family_id = $family_data[0]->{'family'}; } + else { $family_id = 0; } + # Find out how many children have the same name for the same family $sth = $dbh->prepare("select * from eq_child where name='$child_name'"); $sth->execute or die "-E- DB error: $DBI::errstr\n"; @@ -561,12 +567,12 @@ sub update_eq_child_table while($sqlhashref = $sth->fetchrow_hashref) { push(@data, $sqlhashref); } my $rows = scalar @data; - if($rows == 0) { + if($rows == 0 && $family_rows > 0) { # No existing records found for this child, make a new entry print " Adding new Child: $child_name\n"; $sth = $dbh->prepare("insert into eq_child values (NULL,$family_id,'$child_name','$year-$month-$day','$id',1)"); $sth->execute or die "-E- DB error: $DBI::errstr\n"; - } elsif($rows == 1) { + } elsif($rows == 1 && $family_rows > 0) { # An existing record was found for this child, update it print " Updating existing child: $child_name\n"; $sth = $dbh->prepare("update eq_child set family='$family_id' where name='$child_name'"); diff --git a/inc/class.eq.inc.php b/inc/class.eq.inc.php index c253f15..8802e75 100644 --- a/inc/class.eq.inc.php +++ b/inc/class.eq.inc.php @@ -39,12 +39,14 @@ class eq 'ppi_view' => True, 'ppi_update' => True, 'ppi_sched' => True, + 'vis_sched' => True, 'vis_view' => True, 'vis_update' => True, 'att_view' => True, 'att_update' => True, 'dir_view' => True, 'org_view' => True, + 'schedule' => True, 'admin' => True ); @@ -73,7 +75,9 @@ class eq $GLOBALS['phpgw_info']['flags']['app_header'] = 'Elders Quorum Tools'; $GLOBALS['phpgw']->common->phpgw_header(); - + + $this->current_day = `date '+%d'`; + $this->current_day = $this->current_day-0; // Make it numeric $this->current_month = `date '+%m'`; $this->current_month = $this->current_month-0; // Make it numeric $this->current_year = `date '+%Y'`; @@ -130,6 +134,9 @@ class eq $link_data['menuaction'] = 'eq.eq.admin'; $this->t->set_var('link_admin',$GLOBALS['phpgw']->link('/eq/index.php',$link_data)); $this->t->set_var('lang_admin','Admin'); + $link_data['menuaction'] = 'eq.eq.schedule'; + $this->t->set_var('link_schedule',$GLOBALS['phpgw']->link('/eq/index.php',$link_data)); + $this->t->set_var('lang_schedule','Scheduling'); $this->t->pparse('out','eq_header'); } @@ -854,10 +861,11 @@ class eq function ppi_sched() { $this->t->set_file(array('ppi_sched_t' => 'ppi_sched.tpl')); - $this->t->set_block('ppi_sched_t','elder_list','list'); + $this->t->set_block('ppi_sched_t','elder_list','elderlist'); + $this->t->set_block('ppi_sched_t','appt_list','apptlist'); $action = get_var('action',array('GET','POST')); - $this->t->set_var('lang_save','Save Priorities & Notes'); + $this->t->set_var('lang_save','Save Appt / Pri / Notes'); $this->t->set_var('lang_reset','Clear Changes'); $this->t->set_var('ppi_link',$GLOBALS['phpgw']->link('/eq/index.php','menuaction=eq.eq.ppi_view')); @@ -885,6 +893,23 @@ class eq if($action == 'save') { + // Save any changes made to the appointment table + $new_data = get_var('appt_notes',array('POST')); + foreach ($new_data as $entry) + { + $elder = $entry['elder']; + $appointment = $entry['appointment']; + + //print "elder: $elder appointment: $appointment <br>"; + + // Perform database save actions here + $this->db->query("UPDATE eq_appointment set " . + " elder='" . $elder . "'" . + " WHERE appointment=" . $appointment,__LINE__,__FILE__); + + } + + // Save any changes made to the ppi notes table $new_data = get_var('ppi_notes',array('POST')); foreach ($new_data as $entry) { @@ -904,6 +929,73 @@ class eq Header('Location: ' . $take_me_to_url); } + // APPOINTMENT TABLE + $district = 1; + $date_width=150; $time_width=100; $elder_width=200; + $appt_table_width=$date_width + $time_width + $elder_width; + $appt_header_row = "<th width=$date_width><font size=-2>Date</th>"; + $appt_header_row.= "<th width=$time_width><font size=-2>Time</th>"; + $appt_header_row.= "<th width=$elder_width><font size=-2>Elder</th>"; + $appt_table_data = ""; + + // create the elder id -> elder name mapping + $sql = "SELECT * FROM eq_elder where valid=1 ORDER BY name ASC"; + $this->db->query($sql,__LINE__,__FILE__); + $i=0; + $elder_id = NULL; + $elder_name = NULL; + while ($this->db->next_record()) + { + $elder_name[$i] = $this->db->f('name'); + $elder_id[$i] = $this->db->f('elder'); + $i++; + } + array_multisort($elder_name, $elder_id); + + // query the database for all the appointments + $sql = "SELECT * FROM eq_appointment where district=$district and date>=CURDATE() ORDER BY date ASC, time ASC"; + $this->db->query($sql,__LINE__,__FILE__); + + while ($this->db->next_record()) + { + $appointment = $this->db->f('appointment'); + $elder = $this->db->f('elder'); + + $date = $this->db->f('date'); + $date_array = explode("-",$date); + $year = $date_array[0]; $month = $date_array[1]; $day = $date_array[2]; + $day_string = date("l d-M-Y", mktime(0,0,0,$month,$day,$year)); + + $time = $this->db->f('time'); + $time_array = explode(":",$time); + $time_string = date("g:i a", mktime($time_array[0], $time_array[1], $time_array[2])); + + $appt_table_data.= "<tr bgcolor=". $this->t->get_var('tr_color') .">"; + $appt_table_data.= "<td align=center>$day_string</td>"; + $appt_table_data.= "<td align=center>$time_string</td>"; + + $appt_table_data.= '<td align=center><select name=appt_notes['.$appointment.'][elder]>'; + $appt_table_data.= '<option value=0></option>'; + for ($i=0; $i < count($elder_id); $i++) { + $id = $elder_id[$i]; + $name = $elder_name[$i]; + if($elder_id[$i] == $elder) { $selected[$id] = 'selected="selected"'; } else { $selected[$id] = ''; } + $appt_table_data.= '<option value='.$id.' '.$selected[$id].'>'.$name.'</option>'; + } + $appt_table_data.='</select></td>'; + + $appt_table_data.= '<input type=hidden name="appt_notes['.$appointment.'][appointment]" value="'.$appointment.'">'; + + $tr_color = $this->nextmatchs->alternate_row_color($tr_color); + $this->t->set_var('tr_color',$tr_color); + } + + $this->t->set_var('appt_table_data',$appt_table_data); + $this->t->set_var('appt_header_row',$appt_header_row); + $this->t->set_var('appt_table_width',$appt_table_width); + + + // PPI SCHEDULING TABLE $sql = "SELECT * FROM eq_elder where valid=1 ORDER BY ppi_pri ASC"; $this->db->query($sql,__LINE__,__FILE__); @@ -1015,13 +1107,275 @@ class eq $this->t->set_var('completed_table_width',$completed_table_width); $this->t->set_var('completed',$completed_data); $this->t->set_var('totals',$totals_data); - $this->t->fp('list','elder_list',True); + $this->t->fp('elderlist','elder_list',True); + $this->t->fp('apptlist','appt_list',True); $this->t->pfp('out','ppi_sched_t'); $this->save_sessiondata(); } + function vis_sched() + { + $this->t->set_file(array('vis_sched_t' => 'vis_sched.tpl')); + $this->t->set_block('vis_sched_t','family_list','familylist'); + $this->t->set_block('vis_sched_t','appt_list','apptlist'); + $action = get_var('action',array('GET','POST')); + + $this->t->set_var('lang_save','Save Appt / Pri / Notes'); + $this->t->set_var('lang_reset','Clear Changes'); + + $this->t->set_var('vis_link',$GLOBALS['phpgw']->link('/eq/index.php','menuaction=eq.eq.vis_view')); + $this->t->set_var('vis_link_title','View Yearly Visits'); + + $this->t->set_var('schedule_vis_link',$GLOBALS['phpgw']->link('/eq/index.php','menuaction=eq.eq.vis_sched')); + $this->t->set_var('schedule_vis_link_title','Schedule Yearly Visits'); + + $this->t->set_var('actionurl',$GLOBALS['phpgw']->link('/eq/index.php','menuaction=eq.eq.vis_sched&action=save')); + $this->t->set_var('title','EQ Presidency Yearly Visit Scheduler'); + + $family_width=500; $phone_width=40; $pri_width=10; $notes_width=128; $visit_date_width=20; + $table_width=$family_width + $phone_width + $pri_width + $notes_width + $visit_date_width; + $header_row = "<th width=$family_width><font size=-2>Family Name</th>"; + $header_row.= "<th width=$phone_width><font size=-2>Phone</th>"; + $header_row.= "<th width=$pri_width><font size=-2>Priority</th>"; + $header_row.= "<th width=$visit_date_width><font size=-2>Last Visit</th>"; + $header_row.= "<th width=$notes_width><font size=-2>Scheduling Notes</th>"; + $table_data=""; $completed_data=""; $totals_data=""; + + $year = date('Y'); + + if($action == 'save') + { + // Save any changes made to the appointment table + $new_data = get_var('appt_notes',array('POST')); + foreach ($new_data as $entry) + { + $family = $entry['family']; + $appointment = $entry['appointment']; + + // Perform database save actions here + $this->db->query("UPDATE eq_appointment set " . + " family='" . $family . "'" . + " WHERE appointment=" . $appointment,__LINE__,__FILE__); + + } + + // Save any changes made to the visit notes table + $new_data = get_var('vis_notes',array('POST')); + foreach ($new_data as $entry) + { + $visit_notes = $entry['notes']; + $family_id = $entry['family_id']; + $visit_pri = $entry['pri']; + + // Perform database save actions here + $this->db->query("UPDATE eq_family set " . + " visit_notes='" . $visit_notes . "'" . + ",visit_pri='" . $visit_pri . "'" . + " WHERE family=" . $family_id,__LINE__,__FILE__); + + } + + $take_me_to_url = $GLOBALS['phpgw']->link('/eq/index.php','menuaction=eq.eq.vis_sched'); + Header('Location: ' . $take_me_to_url); + } + + // APPOINTMENT TABLE + $district = 4; + $date_width=150; $time_width=100; $family_width=250; + $appt_table_width=$date_width + $time_width + $family_width; + $appt_header_row = "<th width=$date_width><font size=-2>Date</th>"; + $appt_header_row.= "<th width=$time_width><font size=-2>Time</th>"; + $appt_header_row.= "<th width=$family_width><font size=-2>Family</th>"; + $appt_table_data = ""; + + // create the family id -> family name mapping + $sql = "SELECT * FROM eq_family where valid=1 and companionship != 0 ORDER BY name ASC"; + $this->db->query($sql,__LINE__,__FILE__); + $i=0; + $family_id = NULL; + while ($this->db->next_record()) + { + $family_id[$i] = $this->db->f('family'); + $family_name[$i] = $this->db->f('name'); + $i++; + } + array_multisort($family_name, $family_id); + + // query the database for all the appointments + $sql = "SELECT * FROM eq_appointment where district=$district and date>=CURDATE() ORDER BY date ASC, time ASC"; + $this->db->query($sql,__LINE__,__FILE__); + + while ($this->db->next_record()) + { + $appointment = $this->db->f('appointment'); + $family = $this->db->f('family'); + + $date = $this->db->f('date'); + $date_array = explode("-",$date); + $year = $date_array[0]; $month = $date_array[1]; $day = $date_array[2]; + $day_string = date("l d-M-Y", mktime(0,0,0,$month,$day,$year)); + + $time = $this->db->f('time'); + $time_array = explode(":",$time); + $time_string = date("g:i a", mktime($time_array[0], $time_array[1], $time_array[2])); + + $appt_table_data.= "<tr bgcolor=". $this->t->get_var('tr_color') .">"; + $appt_table_data.= "<td align=center>$day_string</td>"; + $appt_table_data.= "<td align=center>$time_string</td>"; + + $appt_table_data.= '<td align=center><select name=appt_notes['.$appointment.'][family]>'; + $appt_table_data.= '<option value=0></option>'; + for ($i=0; $i < count($family_id); $i++) { + $id = $family_id[$i]; + $name = $family_name[$i]; + if($family_id[$i] == $family) { $selected[$id] = 'selected="selected"'; } else { $selected[$id] = ''; } + $appt_table_data.= '<option value='.$id.' '.$selected[$id].'>'.$name.' Family</option>'; + } + $appt_table_data.='</select></td>'; + + $appt_table_data.= '<input type=hidden name="appt_notes['.$appointment.'][appointment]" value="'.$appointment.'">'; + + $tr_color = $this->nextmatchs->alternate_row_color($tr_color); + $this->t->set_var('tr_color',$tr_color); + } + + $this->t->set_var('appt_table_data',$appt_table_data); + $this->t->set_var('appt_header_row',$appt_header_row); + $this->t->set_var('appt_table_width',$appt_table_width); + + + // VISIT SCHEDULING TABLE + $sql = "SELECT * FROM eq_family where valid=1 and companionship != 0 ORDER BY visit_pri ASC"; + $this->db->query($sql,__LINE__,__FILE__); + + $total_families=0; $families_with_yearly_visit=0; + + $i=0; + $family_id = NULL; + $family_name = NULL; + $family_phone = NULL; + $family_visit_pri = NULL; + $family_visit_notes = NULL; + while ($this->db->next_record()) + { + $family_id[$i] = $this->db->f('family'); + $family_name[$i] = $this->db->f('name'); + $family_phone[$family_id[$i]] = $family_id[$i] . " ERROR"; + $family_visit_pri[$family_id[$i]] = $this->db->f('visit_pri'); + $family_visit_notes[$family_id[$i]] = $this->db->f('visit_notes'); + $i++; + $total_families++; + } + + $sql = "SELECT * FROM eq_parent where valid=1"; + $this->db->query($sql,__LINE__,__FILE__); + while ($this->db->next_record()) + { + $family = $this->db->f('family'); + $phone = $this->db->f('phone'); + $family_phone[$family] = $phone; + } + + $max = count($family_id); + + for($i=0; $i < $max; $i++) { + $id = $family_id[$i]; + $name = $family_name[$i]; + $phone = $family_phone[$id]; + $vis_pri = $family_visit_pri[$id]; + $vis_notes = $family_visit_notes[$id]; + + // If this family has had a yearly visit this year, don't show them on the schedule list + $year_start = $year - 1 . "-12-31"; $year_end = $year + 1 . "-01-01"; + $sql = "SELECT * FROM eq_visit WHERE date > '$year_start' AND date < '$year_end' ". + "AND family=" . $id . " AND companionship=0"; + $this->db2->query($sql,__LINE__,__FILE__); + + if(!$this->db2->next_record()) { + $sql = "SELECT * FROM eq_visit WHERE family=" . $id . " AND companionship=0 ORDER BY date DESC"; + $this->db->query($sql,__LINE__,__FILE__); + if($this->db->next_record()) { $date = $this->db->f('date'); } else { $date = ""; } + $table_data.= "<tr bgcolor=". $this->t->get_var('tr_color') ."><td title=\"$phone\"><a href=$link>$name Family</a></td>"; + $table_data.= "<td align=center>$phone</td>"; + $table_data.= "<td align=center>"; + $table_data.= '<select name=vis_notes['.$i.'][pri]>'; + foreach(range(0,6) as $num) { + if($num == 0) { $num = 1; } else {$num = $num*5; } + if($vis_pri == $num) { $selected[$num] = 'selected="selected"'; } else { $selected[$num] = ''; } + $table_data.= '<option value='.$num.' '.$selected[$num].'>'.$num.'</option>'; + } + $table_data.= '</select></td>'; + $table_data.= "<td align=center>$date</td>"; + $table_data.= '<td><input type=text size="50" maxlength="128" name="vis_notes['.$i.'][notes]" value="'.$vis_notes.'">'; + $table_data.= '<input type=hidden name="vis_notes['.$i.'][family_id]" value="'.$id.'">'; + $table_data.= '<input type=hidden name="vis_notes['.$i.'][family_name]" value="'.$name.'">'; + $table_data.= '</td>'; + $table_data.= '</tr>'; + $tr_color = $this->nextmatchs->alternate_row_color($tr_color); + $this->t->set_var('tr_color',$tr_color); + } else { + $link_data['menuaction'] = 'eq.eq.vis_update'; + $link_data['visit'] = $this->db2->f('visit'); + $link_data['family'] = $this->db2->f('family'); + $link_data['name'] = $name; + $link_data['date'] = $this->db2->f('date'); + $link_data['action'] = 'view'; + $link = $GLOBALS['phpgw']->link('/eq/index.php',$link_data); + $families_with_yearly_visit++; + $date = $this->db2->f('date'); + $vis_notes = $this->db2->f('notes'); + if(strlen($vis_notes) > 40) { $vis_notes = substr($vis_notes,0,40) . "..."; } + $completed_data.= "<tr bgcolor=". $this->t->get_var('tr_color2') ."><td title=\"$phone\"><a href=$link>$name Family</a></td>"; + $completed_data.= "<td align=center>$phone</td>"; + $completed_data.= "<td align=center><a href=".$link.">$date</a></td>"; + $completed_data.= "<td align=left>$vis_notes</td>"; + $completed_data.= '</tr>'; + $tr_color2 = $this->nextmatchs->alternate_row_color($tr_color2); + $this->t->set_var('tr_color2',$tr_color2); + } + } + + $name_width=175; $phone_width=100; $date_width=100; $notes_width=300; + $completed_table_width=$name_width + $phone_width + $date_width + $notes_width; + $completed_header_row = "<th width=$name_width><font size=-2>Family Name</th>"; + $completed_header_row.= "<th width=$phone_width><font size=-2>Phone</th>"; + $completed_header_row.= "<th width=$date_width><font size=-2>Date</th>"; + $completed_header_row.= "<th width=$notes_width><font size=-2>Visit Notes</th>"; + + $family_width=300; $totals_width=100; + $totals_table_width=$family_width + $totals_width; + $totals_header_row = "<th width=$family_width><font size=-2>Families</th>"; + $totals_header_row.= "<th width=$totals_width><font size=-2>$year</th>"; + $totals_data.= "<tr bgcolor=". $this->t->get_var('tr_color') .">"; + $totals_data.= "<td align=left><font size=-2><b>Total Families with yearly Visits completed:</b></font></td>"; + $totals_data.= "<td align=center><font size=-2><b>$families_with_yearly_visit / $total_families</b></font></td>"; + $percent = ceil(($families_with_yearly_visit / $total_families)*100); + $tr_color = $this->nextmatchs->alternate_row_color($tr_color); + $this->t->set_var('tr_color',$tr_color); + $totals_data.= "<tr bgcolor=". $this->t->get_var('tr_color') .">"; + $totals_data.= "<td align=left><font size=-2><b>Percentage:</b></font></td>"; + $totals_data.= "<td align=center><font size=-2><b>$percent%</b></font></td>"; + $totals_data.= "</tr>"; + + $this->t->set_var('table_width',$table_width); + $this->t->set_var('header_row',$header_row); + $this->t->set_var('table_data',$table_data); + $this->t->set_var('totals_header_row',$totals_header_row); + $this->t->set_var('totals_table_width',$totals_table_width); + $this->t->set_var('completed_header_row',$completed_header_row); + $this->t->set_var('completed_table_width',$completed_table_width); + $this->t->set_var('completed',$completed_data); + $this->t->set_var('totals',$totals_data); + $this->t->fp('familylist','family_list',True); + $this->t->fp('apptlist','appt_list',True); + + $this->t->pfp('out','vis_sched_t'); + $this->save_sessiondata(); + + } + function ppi_view() { $this->t->set_file(array('ppi_view_t' => 'ppi_view.tpl')); @@ -1449,6 +1803,13 @@ class eq $this->t->set_var('lang_name','Family Name'); $this->t->set_var('lang_date','Date'); + + $this->t->set_var('vis_link',$GLOBALS['phpgw']->link('/eq/index.php','menuaction=eq.eq.vis_view')); + $this->t->set_var('vis_link_title','View Yearly Visits'); + + $this->t->set_var('schedule_vis_link',$GLOBALS['phpgw']->link('/eq/index.php','menuaction=eq.eq.vis_sched')); + $this->t->set_var('schedule_vis_link_title','Schedule Yearly Visits'); + $sql = "SELECT * FROM eq_visit WHERE companionship=0 ORDER BY date DESC"; $this->db->query($sql,__LINE__,__FILE__); @@ -2037,7 +2398,271 @@ class eq $this->t->pfp('out','org_view_t'); $this->save_sessiondata(); } + + function schedule() + { + $this->t->set_file(array('sched_t' => 'schedule.tpl')); + $this->t->set_block('sched_t','district_list','list'); + + $action = get_var('action',array('GET','POST')); + + $this->t->set_var('actionurl',$GLOBALS['phpgw']->link('/eq/index.php','menuaction=eq.eq.schedule&action=save')); + $this->t->set_var('title','EQ Scheduling Tool'); + + $this->t->set_var('lang_save','Save Schedule'); + $this->t->set_var('lang_reset','Cancel'); + + $this->t->set_var('schedule_ppi_link',$GLOBALS['phpgw']->link('/eq/index.php','menuaction=eq.eq.ppi_sched')); + $this->t->set_var('schedule_ppi_link_title','Schedule Yearly PPIs'); + + $this->t->set_var('schedule_vis_link',$GLOBALS['phpgw']->link('/eq/index.php','menuaction=eq.eq.vis_sched')); + $this->t->set_var('schedule_vis_link_title','Schedule Yearly Visits'); + + $date_width=150; $time_width=200; $elder_width=200; $family_width=200; + $table_width=$date_width + $time_width + $elder_width + $family_width; + $header_row = "<th width=$date_width><font size=-2>Date</th>"; + $header_row.= "<th width=$time_width><font size=-2>Time</th>"; + $header_row.= "<th width=$elder_width><font size=-2>Elder</th>"; + $header_row.= "<th width=$family_width><font size=-2>Family</th>"; + $table_data = ""; + + if($action == 'save') + { + $new_data = get_var('sched',array('POST')); + foreach ($new_data as $district_array) + { + foreach ($district_array as $entry) + { + $district = $entry['district']; + $appointment = $entry['appointment']; + $date = $entry['date']; + $hour = $entry['hour']; + $minute = $entry['minute']; + $pm = $entry['pm']; + $elder = $entry['elder']; + $family = $entry['family']; + if($pm) { $hour = $hour + 12; } + $time = $hour.':'.$minute.':'.'00'; + + // Update an existing appointment + if($appointment != 0) + { + $this->db->query("UPDATE eq_appointment set" . + " family=" . $family . + " ,elder=" . $elder . + " ,date='" . $date . "'" . + " ,time='" . $time . "'" . + " WHERE appointment=" . $appointment,__LINE__,__FILE__); + + //print "updating entry: appt=$appointment date: $date time: $time elder: $elder family: $family<br>"; + } + + // Add a new appointment + else if(($appointment == 0) && ($date != "") && ($time != "")) + { + $this->db->query("INSERT INTO eq_appointment (appointment,district,family,elder,date,time) " + . "VALUES ('" . $appointment . "','" . $district . "','" . $family . "','" + . $elder . "','" . $date . "','" . $time ."')",__LINE__,__FILE__); + + //print "adding entry: appt=$appointment date: $date time: $time elder: $elder family: $family<br>"; + } + } + } + + $take_me_to_url = $GLOBALS['phpgw']->link('/eq/index.php','menuaction=eq.eq.schedule'); + Header('Location: ' . $take_me_to_url); + } + + $sql = "SELECT * FROM eq_district where district != 0 ORDER BY district ASC"; + $this->db->query($sql,__LINE__,__FILE__); + $i=0; + while ($this->db->next_record()) + { + $districts[$i]['district'] = $this->db->f('district'); + $districts[$i]['name'] = $this->db->f('name'); + $districts[$i]['supervisor'] = $this->db->f('supervisor'); + $i++; + } + + $sql = "SELECT * FROM eq_elder where valid=1 ORDER BY elder ASC"; + $this->db->query($sql,__LINE__,__FILE__); + $i=0; + while ($this->db->next_record()) + { + $elder_id[$i] = $this->db->f('elder'); + $elder_name[$i] = $this->db->f('name'); + $elder_phone[$elder_id[$i]] = $this->db->f('phone'); + $i++; + } + array_multisort($elder_name, $elder_id); + + $sql = "SELECT * FROM eq_family where valid=1 and companionship != 0 ORDER BY name ASC"; + $this->db->query($sql,__LINE__,__FILE__); + $i=0; + while ($this->db->next_record()) + { + $family_id[$i] = $this->db->f('family'); + $family_name[$i] = $this->db->f('name'); + $i++; + } + array_multisort($family_name, $family_id); + + for ($i=0; $i < count($districts); $i++) { + $district = $districts[$i]['district']; + $this->t->set_var('district_number',$districts[$i]['district']); + $this->t->set_var('district_name',$districts[$i]['name']); + $supervisor = $districts[$i]['supervisor']; + $table_data=""; + + // query the database for all the appointments + $sql = "SELECT * FROM eq_appointment where district=$district and date>=CURDATE() ORDER BY date ASC, time ASC"; + $this->db->query($sql,__LINE__,__FILE__); + + // Prefill any existing appointment slots + while ($this->db->next_record()) + { + $appointment = $this->db->f('appointment'); + $elder = $this->db->f('elder'); + $family = $this->db->f('family'); + + $date = $this->db->f('date'); + $date_array = explode("-",$date); + $year = $date_array[0]; $month = $date_array[1]; $day = $date_array[2]; + $day_string = date("l d-M-Y", mktime(0,0,0,$month,$day,$year)); + + $time = $this->db->f('time'); + $time_array = explode(":",$time); + $hour = $time_array[0]; + $minute = $time_array[1]; + $pm = 0; + if($hour > 12) { $pm=1; $hour = $hour - 12; } + $time_string = date("g:i a", mktime($time_array[0], $time_array[1], $time_array[2])); + + $table_data.= "<tr bgcolor=". $this->t->get_var('tr_color') .">"; + + // Date selection + $table_data.= '<td align=left>'; + $table_data.= $this->jscal->input('sched['.$district.']['.$appointment.'][date]',$date,'','','','','',$this->cal_options); + $table_data.= '</td>'; + + // Hour & Minutes selection + $table_data.= "<td align=center>"; + $table_data.= '<select name=sched['.$district.']['.$appointment.'][hour]>'; + foreach(range(1,12) as $num) { + if($hour == $num) { $selected[$num] = 'selected="selected"'; } else { $selected[$num] = ''; } + $table_data.= '<option value='.$num.' '.$selected[$num].'>'.$num.'</option>'; + } + $table_data.= '</select>'; + $table_data.= ' : '; + $table_data.= '<select name=sched['.$district.']['.$appointment.'][minute]>'; + foreach(range(0,3) as $num) { + $num = $num * 15; if($num == 0) { $num = "00"; } + if($minute == $num) { $selected[$num] = 'selected="selected"'; } else { $selected[$num] = ''; } + $table_data.= '<option value='.$num.' '.$selected[$num].'>'.$num.'</option>'; + } + $table_data.= '</select>'; + $table_data.= '<select name=sched['.$district.']['.$appointment.'][pm]>'; + if($pm == 0) { $table_data.= '<option value=0 selected>am</option>'; $table_data.= '<option value=1>pm</option>'; } + else { $table_data.= '<option value=0>am</option>'; $table_data.= '<option value=1 selected>pm</option>'; } + $table_data.= '</select>'; + $table_data.= "</td>"; + + // Elder drop down list (for PPIs) + $table_data.= '<td align=center><select name=sched['.$district.']['.$appointment.'][elder]>'; + $table_data.= '<option value=0></option>'; + for ($j=0; $j < count($elder_id); $j++) { + $id = $elder_id[$j]; + $name = $elder_name[$j]; + if($elder_id[$j] == $elder) { $selected[$id] = 'selected="selected"'; } else { $selected[$id] = ''; } + $table_data.= '<option value='.$id.' '.$selected[$id].'>'.$name.'</option>'; + } + $table_data.='</select></td>'; + + // Family drop down list (for Visits) + $table_data.= '<td align=center><select name=sched['.$district.']['.$appointment.'][family]>'; + $table_data.= '<option value=0></option>'; + for ($j=0; $j < count($elder_id); $j++) { + $id = $family_id[$j]; + $name = $family_name[$j]; + if($family_id[$j] == $family) { $selected[$id] = 'selected="selected"'; } else { $selected[$id] = ''; } + $table_data.= '<option value='.$id.' '.$selected[$id].'>'.$name.' Family</option>'; + } + $table_data.='</select></td>'; + + $table_data.= '<input type=hidden name="sched['.$district.']['.$appointment.'][appointment]" value="'.$appointment.'">'; + $table_data.= '<input type=hidden name="sched['.$district.']['.$appointment.'][district]" value="'.$district.'">'; + + $tr_color = $this->nextmatchs->alternate_row_color($tr_color); + $this->t->set_var('tr_color',$tr_color); + + } + + // Create blank appointment slot + $appointment = 0; + $table_data.= "<tr bgcolor=". $this->t->get_var('tr_color') .">"; + + // Date selection + $table_data.= '<td align=left>'; + $table_data.= $this->jscal->input('sched['.$district.']['.$appointment.'][date]','','','','','','',$this->cal_options); + $table_data.= '</td>'; + + // Time selection + $table_data.= "<td align=center>"; + $table_data.= '<select name=sched['.$district.']['.$appointment.'][hour]>'; + $table_data.= '<option value=""></option>'; + foreach(range(1,12) as $num) { + $table_data.= '<option value='.$num.' '.$selected[$num].'>'.$num.'</option>'; + } + $table_data.= '</select>'; + $table_data.= ' : '; + $table_data.= '<select name=sched['.$district.']['.$appointment.'][minute]>'; + $table_data.= '<option value=""></option>'; + foreach(range(0,3) as $num) { + $num = $num * 15; if($num == 0) { $num = "00"; } + $table_data.= '<option value='.$num.'>'.$num.'</option>'; + } + $table_data.= '</select>'; + $table_data.= '<select name=sched['.$district.']['.$appointment.'][pm]>'; + $table_data.= '<option value=""></option>'; + $table_data.= '<option value=0>am</option>'; + $table_data.= '<option value=1>pm</option>'; + $table_data.= '</select>'; + $table_data.= "</td>"; + + // Elder drop down list + $table_data.= '<td align=center><select name=sched['.$district.']['.$appointment.'][elder]>'; + $table_data.= '<option value=0></option>'; + for ($j=0; $j < count($elder_id); $j++) { + $id = $elder_id[$j]; + $name = $elder_name[$j]; + $table_data.= '<option value='.$id.'>'.$name.'</option>'; + } + $table_data.='</select></td>'; + + // Family drop down list + $table_data.= '<td align=center><select name=sched['.$district.']['.$appointment.'][family]>'; + $table_data.= '<option value=0></option>'; + for ($j=0; $j < count($elder_id); $j++) { + $id = $family_id[$j]; + $name = $family_name[$j]; + $table_data.= '<option value='.$id.'>'.$name.' Family</option>'; + } + $table_data.='</select></td>'; + $table_data.= '<input type=hidden name="sched['.$district.']['.$appointment.'][appointment]" value="'.$appointment.'">'; + $table_data.= '<input type=hidden name="sched['.$district.']['.$appointment.'][district]" value="'.$district.'">'; + + $this->t->set_var('table_data',$table_data); + $this->t->set_var('header_row',$header_row); + $this->t->set_var('table_width',$table_width); + $this->t->fp('list','district_list',True); + + } + + $this->t->pfp('out','sched_t'); + $this->save_sessiondata(); + } + function admin() { $this->t->set_file(array('admin_t' => 'admin.tpl')); @@ -2055,7 +2680,7 @@ class eq { $target_path = $this->upload_target_path . basename( $_FILES['uploadedfile']['name']); - if(($_FILES['uploadedfile']['type'] == "application/zip") && + if((($_FILES['uploadedfile']['type'] == "application/zip") || ($_FILES['uploadedfile']['type'] == "application/x-zip-compressed")) && (move_uploaded_file($_FILES['uploadedfile']['tmp_name'], $target_path))) { $uploadstatus = "<b>The following file was uploaded successfully: </b><br><br>"; $uploadstatus.= "Filename : " . $_FILES['uploadedfile']['name'] . "<br>"; @@ -2136,14 +2761,17 @@ class eq $this->t->pfp('cmdhandle','cmd'); print "</pre></td></tr></table>"; - } else if($_FILES['uploadedfile']['type'] != "application/zip") { + } else if(($_FILES['uploadedfile']['type'] != "application/zip") && + ($_FILES['uploadedfile']['type'] != "application/x-zip-compressed")) { $uploadstatus = "<b><font color=red>The file format must be a .zip file, please try again! </font></b>"; + $uploadstatus.= "<br><br><b>Detected file format: " . $_FILES['uploadedfile']['type'] . "</b>"; $this->t->set_var('uploadstatus',$uploadstatus); - + $this->t->pfp('uploadhandle','upload',True); } else { $uploadstatus = "<b><font color=red> There was an error (" . $_FILES['uploadedfile']['error']; $uploadstatus.= ") uploading the file, please try again! </font></b>"; $this->t->set_var('uploadstatus',$uploadstatus); + $this->t->pfp('uploadhandle','upload',True); } } else diff --git a/templates/default/header.tpl b/templates/default/header.tpl index 3e109a4..59fd827 100644 --- a/templates/default/header.tpl +++ b/templates/default/header.tpl @@ -29,9 +29,16 @@ <a href="{link_org}">{lang_org}</a> + <a href="{link_schedule}">{lang_schedule}</a> + + <a href="{link_admin}">{lang_admin}</a> </b></font></td> </tr> </table> </center> + + + + diff --git a/templates/default/ppi_sched.tpl b/templates/default/ppi_sched.tpl index f3ce6d7..cb4dc1b 100644 --- a/templates/default/ppi_sched.tpl +++ b/templates/default/ppi_sched.tpl @@ -16,6 +16,32 @@ <form action="{actionurl}" method="POST"> +<!-- BEGIN appt_list --> + <table border="0" width="{appt_table_width}" cellspacing="2" cellpadding="2"> + <tr> + <td align="center" bgcolor="#c9c9c9" colspan=20> + <font face="{font}"><b>Yearly PPI Appointment Slots</b></font> + </td> + </tr> + <tr bgcolor="#c9c9c9"><font face="{font}">{appt_header_row}</tr> + {appt_table_data} + <tr> + <td></td><td></td><td></td><td></td> + </tr> + </table> + <table border="0" width="{table_width}" cellspacing="2" cellpadding="2"> + <tr> + <td height="50" align="right"> + <font face="{font}"><input type="submit" name="save" value="{lang_save}"></font> + + <font face="{font}"><input type="reset" name="reset" value="{lang_reset}"></font> + </form> + </td> + </tr> + </table> +<!-- END appt_list --> + + <!-- BEGIN elder_list --> <table border="0" width="{table_width}" cellspacing="2" cellpadding="2"> <tr> @@ -60,3 +86,11 @@ <hr> </center> + + + + + + + + diff --git a/templates/default/schedule.tpl b/templates/default/schedule.tpl new file mode 100644 index 0000000..8c2db3a --- /dev/null +++ b/templates/default/schedule.tpl @@ -0,0 +1,45 @@ +<center> + <form action="{actionurl}" method="POST"> + <table border="0" width="{table_width}" cellspacing="2" cellpadding="2"> + <tr> + <td align="center" bgcolor="#c9c9c9"><font face="{font}"><b>{title}</b></font></td> + </tr> + </table> + + <a href="{schedule_vis_link}">{schedule_vis_link_title}</a> + | + <a href="{schedule_ppi_link}">{schedule_ppi_link_title}</a> + <br><br> + +<!-- BEGIN district_list --> + <table border="0" width="{table_width}" cellspacing="2" cellpadding="2"> + <tr> + <td align="center" bgcolor="#c9c9c9" colspan=20> + <font face="{font}"><b>District {district_number} : {district_name} : Appointment Slots</b></font> + </td> + </tr> + <tr bgcolor="#c9c9c9"><font face="{font}">{header_row}</tr> + {table_data} + <tr> + <td></td><td></td><td></td> + <td height="50" align="right"> + <font face="{font}"><input type="submit" name="save" value="{lang_save}"></font> + <font face="{font}"><input type="reset" name="reset" value="{lang_reset}"></font> + </td> + </tr> + </table> + <br><br> + +<!-- END district_list --> + + </form> + +</center> + + + + + + + + diff --git a/templates/default/vis_sched.tpl b/templates/default/vis_sched.tpl new file mode 100644 index 0000000..51ccf37 --- /dev/null +++ b/templates/default/vis_sched.tpl @@ -0,0 +1,93 @@ +<center> + <form action="{actionurl}" method="POST"> + <table border="0" width="{table_width}" cellspacing="2" cellpadding="2"> + <tr> + <td align="center" bgcolor="#c9c9c9"><font face="{font}"><b>{title}</b></font></td> + </tr> + </table> + + <a href="{vis_link}">{vis_link_title}</a> + | + <a href="{schedule_vis_link}">{schedule_vis_link_title}</a> + <br><br> + + <form action="{actionurl}" method="POST"> + +<!-- BEGIN appt_list --> + <table border="0" width="{appt_table_width}" cellspacing="2" cellpadding="2"> + <tr> + <td align="center" bgcolor="#c9c9c9" colspan=20> + <font face="{font}"><b>Yearly Visits Appointment Slots</b></font> + </td> + </tr> + <tr bgcolor="#c9c9c9"><font face="{font}">{appt_header_row}</tr> + {appt_table_data} + <tr> + <td></td><td></td><td></td><td></td> + </tr> + </table> + <table border="0" width="{table_width}" cellspacing="2" cellpadding="2"> + <tr> + <td height="50" align="right"> + <font face="{font}"><input type="submit" name="save" value="{lang_save}"></font> + + <font face="{font}"><input type="reset" name="reset" value="{lang_reset}"></font> + </form> + </td> + </tr> + </table> +<!-- END appt_list --> + + +<!-- BEGIN family_list --> + <table border="0" width="{table_width}" cellspacing="2" cellpadding="2"> + <tr> + <td align="center" bgcolor="#c9c9c9" colspan=20> + <font face="{font}"><b>All Elders with Yearly Visit Not Completed</b></font> + </td> + </tr> + <tr bgcolor="#c9c9c9"><font face="{font}">{header_row}</tr> + {table_data} + <tr> + <td></td><td></td><td></td><td></td> + <td height="50" align="right"> + <font face="{font}"><input type="submit" name="save" value="{lang_save}"></font> + + <font face="{font}"><input type="reset" name="reset" value="{lang_reset}"></font> + </form> + </td> + </tr> + </table> +<!-- END family_list --> + + <table border="0" width="{completed_table_width}" cellspacing="2" cellpadding="2"> + <tr> + <td align="center" bgcolor="#c9c9c9" colspan=20> + <font face="{font}"><b>All Elders with Yearly Visit Completed</b></font> + </td> + </tr> + <tr bgcolor="#c9c9c9"><font face="{font}">{completed_header_row}</tr> + {completed} + </table> + <br><br> + + <table border="0" width="{totals_table_width}" cellspacing="2" cellpadding="2"> + <tr> + <td align="center" bgcolor="#c9c9c9" colspan=20> + <font face="{font}"><b>Total EQ Presidency Yearly Visits</b></font> + </td> + </tr> + <tr bgcolor="#c9c9c9"><font face="{font}">{totals_header_row}</tr> + {totals} + </table> + <hr> +</center> + + + + + + + + + diff --git a/templates/default/vis_view.tpl b/templates/default/vis_view.tpl index 4cffa74..b2e18f2 100644 --- a/templates/default/vis_view.tpl +++ b/templates/default/vis_view.tpl @@ -1,6 +1,12 @@ <hr> <center> + + <a href="{vis_link}">{vis_link_title}</a> + | + <a href="{schedule_vis_link}">{schedule_vis_link_title}</a> + <br><br> + <h3>Presidency Visits</h3> <table border="0" cellspacing="2" cellpadding="2"> <tr>