Create appointment dialog on click

This commit is contained in:
2020-06-26 12:19:51 +02:00
parent b93df4005b
commit 21213f993d
6 changed files with 1359 additions and 51 deletions

View File

@@ -326,6 +326,9 @@ function fetchCalendarSettings($pdo, $doctor)
$result = $pdo->prepare($query);
$result->execute([$doctor]);
$data = $result->fetch();
if(empty($data[8])){
$data[8] = 60;
}
return $data;
}