* @copyright Australian Consortium for Social and Political Research Incorporated (ACSPRI), 2016 * @package queXS * @subpackage user * @link http://www.acspri.org.au/ queXS was writen for ACSPRI * @license http://opensource.org/licenses/gpl-2.0.php The GNU General Public License (GPL) Version 2 * */ /** * Configuration file */ include ("config.inc.php"); /** * Database file */ include ("db.inc.php"); /** * Authentication */ require ("auth-interviewer.php"); /** * XHTML functions */ include ("functions/functions.xhtml.php"); /** * Operator functions */ include("functions/functions.operator.php"); $js = false; if (AUTO_LOGOUT_MINUTES !== false) $js = array("include/jquery/jquery-1.4.2.min.js","js/childnap.js"); xhtml_head(T_("My appointments"),false,array("css/table.css"),$js,false,60); //List all upcoming appointments for this interviewer $operator_id = get_operator_id(); if (isset($_GET['callnext'])) { $cn = intval($_GET['callnext']); $db->StartTrans(); $sql = "SELECT next_case_id FROM `operator` WHERE operator_id = $operator_id"; $nc = $db->GetOne($sql); if (!empty($nc)) print "
" . T_("Already calling case") . " $nc " . T_("next") . "
"; else { $sql = "UPDATE `operator` SET next_case_id = $cn WHERE operator_id = $operator_id"; $db->Execute($sql); print "" . T_("Will call case") . " $cn " . T_("next") . "
"; } $db->CompleteTrans(); } $rs = ""; $sql = "SELECT c.case_id,DATE_FORMAT(CONVERT_TZ(c.start,'UTC',op.Time_zone_name),'".DATE_TIME_FORMAT."') as start,DATE_FORMAT(CONVERT_TZ(c.end,'UTC',op.Time_zone_name),'".TIME_FORMAT."') as end, DATE_FORMAT(CONVERT_TZ(c.start,'UTC',r.Time_zone_name),'".TIME_FORMAT."') as rstart,DATE_FORMAT(CONVERT_TZ(c.end,'UTC',r.Time_zone_name),'".TIME_FORMAT."') as rend, c.completed_call_id, CONCAT(r.firstName, ' ', r.lastName) as respname, IFNULL(ao.firstName,'" . TQ_("Any operator") . "') as witho, CASE WHEN op.next_case_id IS NULL THEN CONCAT('".T_("Call next")."') ELSE CONCAT('".T_("Calling case")." ', op.next_case_id, ' ".T_("next")."') END as callnext, q.description as qd, (SELECT note FROM case_note WHERE case_note.case_id = c.case_id ORDER BY case_note_id DESC LIMIT 1) as note FROM `appointment` as c JOIN operator as op on (op.operator_id = $operator_id) LEFT JOIN `case` as cu ON (cu.current_operator_id = $operator_id) JOIN `case` as cc ON (cc.case_id = c.case_id) JOIN `outcome` as o ON (o.outcome_id = cc.current_outcome_id) JOIN `questionnaire` as q ON (q.questionnaire_id = cc.questionnaire_id) JOIN respondent as r on (r.respondent_id = c.respondent_id) LEFT JOIN operator AS ao ON (ao.operator_id = c.require_operator_id) WHERE c.end >= CONVERT_TZ(NOW(),'System','UTC') AND o.outcome_type_id IN (1,5) AND c.completed_call_id IS NULL AND (c.require_operator_id = $operator_id) AND cu.case_id != c.case_id ORDER BY c.start DESC"; $rs = $db->GetAll($sql); if (empty($rs)) { print "" . T_("No future appointments scheduled") . "
"; } else { translate_array($rs,array("des")); xhtml_table($rs,array("case_id","start","qd","note","callnext"),array(T_("Case id"),T_("Start"),T_("Questionnaire"),T_("Last Note"),T_("Call next"))); } xhtml_foot(); ?>