Browse Source

fix work area restriction

pull/3/head
wahyu 1 year ago
parent
commit
c422bade05
  1. 16
      app/Http/Controllers/PresenceController.php

16
app/Http/Controllers/PresenceController.php

@ -345,6 +345,13 @@ class PresenceController extends Controller
"status_assign" => true "status_assign" => true
); );
} }
} else {
// bypass work area restriction
$temp[]=array(
"activity_id" => null,
"boundary" => true,
"status_assign" => true
);
} }
} }
// assign and not in boundary // assign and not in boundary
@ -359,6 +366,14 @@ class PresenceController extends Controller
} }
} }
else{ else{
if ($user->status_boundary) {
// bypass work area restriction
$temp[]=array(
"activity_id" => null,
"boundary" => true,
"status_assign" => true
);
} else {
// not assign // not assign
$temp[]=array( $temp[]=array(
"activity_id" => null, "activity_id" => null,
@ -366,6 +381,7 @@ class PresenceController extends Controller
"status_assign" => false "status_assign" => false
); );
} }
}
return $temp; return $temp;
} }

Loading…
Cancel
Save