Implement appointment fetch and insertion
This commit is contained in:
parent
a6262a5b38
commit
d5ea8bec33
|
@ -1,8 +0,0 @@
|
|||
<?php
|
||||
include 'appointment_management.php';
|
||||
|
||||
$pdo = connectDatabase();
|
||||
$events = listEvents($pdo);
|
||||
echo $events;
|
||||
closeDatabase($pdo);
|
||||
?>
|
|
@ -0,0 +1,40 @@
|
|||
<?php
|
||||
include 'appointment_management.php';
|
||||
|
||||
function computeEndTime(&$data){
|
||||
foreach($data as &$row){
|
||||
$time = new DateTime($row["hora"]);
|
||||
$time->modify("+{$row["duracion"]} minutes");
|
||||
$time_string = $time->format('H:i:s');
|
||||
$row += ["end" => $time_string];
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
function renameArray($data){
|
||||
computeEndTime($data);
|
||||
$events = array();
|
||||
foreach($data as $row){
|
||||
$events[] = array(
|
||||
"id" => $row["id"],
|
||||
"title" => "Cita de " . $row["apellido"],
|
||||
"start" => $row["fecha"] . " " . $row["hora"],
|
||||
"end" => $row["fecha"] . " " . $row["end"],
|
||||
);
|
||||
}
|
||||
return $events;
|
||||
}
|
||||
|
||||
function fetchDatabase(){
|
||||
$pdo = connectDatabase();
|
||||
$data = listEvents($pdo);
|
||||
closeDatabase($pdo);
|
||||
return $data;
|
||||
}
|
||||
|
||||
|
||||
$result = fetchDatabase();
|
||||
$events = renameArray($result);
|
||||
echo json_encode($events);
|
||||
|
||||
?>
|
134
src/calendar.js
134
src/calendar.js
|
@ -1,45 +1,15 @@
|
|||
$(document).ready(function() {
|
||||
|
||||
var date = new Date();
|
||||
|
||||
var d = date.getDate();
|
||||
|
||||
var m = date.getMonth();
|
||||
|
||||
var y = date.getFullYear();
|
||||
|
||||
|
||||
var calendar = $('#calendar').fullCalendar({
|
||||
|
||||
editable: true,
|
||||
|
||||
header: {
|
||||
|
||||
left: 'prev,next,today',
|
||||
|
||||
center: 'patient',
|
||||
|
||||
right: 'month,agendaWeek,agendaDay'
|
||||
|
||||
},
|
||||
|
||||
|
||||
events: "appointment-feed.php",
|
||||
|
||||
|
||||
eventRender: function(event, element, view) {
|
||||
|
||||
if (event.allDay === 'true') {
|
||||
|
||||
event.allDay = true;
|
||||
|
||||
} else {
|
||||
|
||||
event.allDay = false;
|
||||
|
||||
}
|
||||
|
||||
},
|
||||
events: "appointment_feed.php",
|
||||
|
||||
selectable: true,
|
||||
|
||||
|
@ -47,108 +17,12 @@
|
|||
|
||||
select: function(start, end, allDay) {
|
||||
|
||||
$("#dialog-form").dialog({ modal: true, patient: event.paciente, width:450});
|
||||
$("#dialog-form").dialog({ modal: true, width:450});
|
||||
|
||||
var date = $.fullCalendar.formatDate(start, 'YYYY-MM-DD');
|
||||
|
||||
calendar.fullCalendar('renderEvent',
|
||||
{
|
||||
|
||||
start: start,
|
||||
|
||||
end: end,
|
||||
|
||||
allDay: allDay
|
||||
|
||||
},
|
||||
|
||||
|
||||
);
|
||||
|
||||
|
||||
calendar.fullCalendar('unselect');
|
||||
|
||||
},
|
||||
|
||||
|
||||
editable: true,
|
||||
|
||||
eventDrop: function(event, delta) {
|
||||
|
||||
var start = $.fullCalendar.formatDate(event.start, "Y-MM-DD HH:mm:ss");
|
||||
|
||||
var end = $.fullCalendar.formatDate(event.end, "Y-MM-DD HH:mm:ss");
|
||||
|
||||
$.ajax({
|
||||
|
||||
url: 'update_events.php',
|
||||
|
||||
data: 'patient='+ event.patient+'&start='+ start +'&end='+ end +'&id='+ event.id ,
|
||||
|
||||
type: "POST",
|
||||
|
||||
success: function(json) {
|
||||
|
||||
alert("Updated Successfully");
|
||||
|
||||
$("#fecha").val(date);
|
||||
}
|
||||
|
||||
});
|
||||
|
||||
},
|
||||
|
||||
eventClick: function(event) {
|
||||
|
||||
element.click(function() {
|
||||
});
|
||||
|
||||
|
||||
$.ajax({
|
||||
|
||||
type: "POST",
|
||||
|
||||
url: "delete_event.php",
|
||||
|
||||
data: "&id=" + event.id,
|
||||
|
||||
success: function(json) {
|
||||
|
||||
$('#calendar').fullCalendar('removeEvents', event.id);
|
||||
|
||||
alert("Updated Successfully");}
|
||||
|
||||
});
|
||||
|
||||
|
||||
},
|
||||
|
||||
eventResize: function(event) {
|
||||
|
||||
var start = $.fullCalendar.formatDate(event.start, "yyyy-MM-dd HH:mm:ss");
|
||||
|
||||
var end = $.fullCalendar.formatDate(event.end, "yyyy-MM-dd HH:mm:ss");
|
||||
|
||||
$.ajax({
|
||||
|
||||
url: 'update_events.php',
|
||||
|
||||
data: 'patient='+ event.patient+'&start='+ start +'&end='+ end +'&id='+ event.id ,
|
||||
|
||||
type: "POST",
|
||||
|
||||
success: function(json) {
|
||||
|
||||
alert("Updated Successfully");
|
||||
|
||||
}
|
||||
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
});
|
||||
|
||||
|
||||
|
||||
});
|
||||
|
|
|
@ -370,7 +370,9 @@ function configureCalendar($pdo, $data)
|
|||
|
||||
function fetchCalendarEvents($pdo, $doctor)
|
||||
{
|
||||
$query = "SELECT * from cita WHERE medico=?";
|
||||
$query = "SELECT cita.id, fecha, hora, duracion, medico, observaciones, apellido, documento_identificativo from cita
|
||||
INNER JOIN paciente ON cita.paciente = paciente.id
|
||||
WHERE medico=?";
|
||||
$result = $pdo->prepare($query);
|
||||
$result->execute([$doctor]);
|
||||
$data = $result->fetchAll(PDO::FETCH_ASSOC);
|
||||
|
|
Loading…
Reference in New Issue