mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-13 03:23:18 +03:00
Include the unavailabilities to the "all" display in the calendar
This commit is contained in:
parent
a2ba87256d
commit
6ee5e14966
1 changed files with 3 additions and 2 deletions
|
@ -618,9 +618,10 @@ class Calendar extends EA_Controller
|
|||
|
||||
$record_id = request('record_id');
|
||||
|
||||
$filter_type = request('filter_type');
|
||||
$is_all = request('record_id') === FILTER_TYPE_ALL;
|
||||
|
||||
$filter_type = request('filter_type');
|
||||
|
||||
if (!$filter_type && !$is_all) {
|
||||
json_response([
|
||||
'appointments' => [],
|
||||
|
@ -680,7 +681,7 @@ class Calendar extends EA_Controller
|
|||
// Get unavailability periods (only for provider).
|
||||
$response['unavailabilities'] = [];
|
||||
|
||||
if ($filter_type == FILTER_TYPE_PROVIDER) {
|
||||
if ($filter_type == FILTER_TYPE_PROVIDER || $is_all) {
|
||||
$where_clause =
|
||||
$where_id .
|
||||
' = ' .
|
||||
|
|
Loading…
Reference in a new issue