Show appointment information on click

This commit is contained in:
2020-07-13 19:03:06 +02:00
parent 646f97fa79
commit a772b300df
4 changed files with 34 additions and 19 deletions

View File

@@ -17,8 +17,10 @@ function renameArray($data){
foreach($data as $row){
$events[] = array(
"id" => $row["id"],
"title" => "Cita de " . $row["apellido"],
"title" => $row["apellido"] . ", " . $row["nombre"],
"start" => $row["fecha"] . " " . $row["hora"],
"description" => $row["observaciones"],
"patient" => $row["documento_identificativo"],
"end" => $row["fecha"] . " " . $row["end"],
);
}