Hide appointment creation form on page load
This commit is contained in:
parent
21213f993d
commit
1ee89ef1f5
|
@ -38,7 +38,7 @@
|
|||
</div>
|
||||
<?php endif; ?>
|
||||
<?php closeDatabase($pdo); ?>
|
||||
<div id="dialog-form" title="Añadir cita">
|
||||
<div id="dialog-form" title="Añadir cita" style="display:none;">
|
||||
<form>
|
||||
<div class="input-group">
|
||||
<label for="hora">Hora</label>
|
||||
|
|
|
@ -18,7 +18,7 @@ function listEvents(){
|
|||
$doctor = fetchDoctor($pdo);
|
||||
$events = fetchCalendarEvents($pdo, $doctor);
|
||||
closeDatabase($pdo);
|
||||
return json_encode($events);
|
||||
echo json_encode($events);
|
||||
}
|
||||
|
||||
|
||||
|
@ -27,12 +27,9 @@ function listHolidays(){
|
|||
$doctor = fetchDoctor($pdo);
|
||||
$holidays = fetchDoctorHolidays($pdo, $doctor);
|
||||
closeDatabase($pdo);
|
||||
return json_encode($holidays);
|
||||
echo json_encode($holidays);
|
||||
}
|
||||
|
||||
|
||||
if (isset($_GET["list"])) {
|
||||
listEvents();
|
||||
listHolidays();
|
||||
header('location: appointment.php');
|
||||
}
|
||||
listEvents();
|
||||
listHolidays();
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
},
|
||||
|
||||
|
||||
events: "appointment_management.php?list=1",
|
||||
events: "http://localhost:8000/appointment_management.php",
|
||||
|
||||
|
||||
eventRender: function(event, element, view) {
|
||||
|
|
|
@ -60,7 +60,7 @@ function deletePatient($pdo, string $id)
|
|||
|
||||
function createHoliday($pdo, $data)
|
||||
{
|
||||
if (empty($data["medico"])) {
|
||||
if (!empty($data["medico"])) {
|
||||
$query = "INSERT INTO festivo (fecha_festivo, tipo_festivo, medico) VALUES (?,?,?)";
|
||||
$pdo->prepare($query)->execute([$data["fecha_festivo"], $data["tipo_festivo"], $data["medico"]]);
|
||||
} else {
|
||||
|
@ -189,7 +189,8 @@ function fetchRegions($pdo)
|
|||
|
||||
function fetchHolidays($pdo)
|
||||
{
|
||||
$query = "SELECT * FROM festivo";
|
||||
$query = "SELECT festivo.id, festivo.fecha_festivo, festivo.tipo_festivo, usuario.nombre
|
||||
FROM festivo LEFT JOIN usuario ON festivo.medico = usuario.id";
|
||||
$result = $pdo->prepare($query);
|
||||
$result->execute();
|
||||
$data = $result->fetchAll();
|
||||
|
|
Loading…
Reference in New Issue