2018-10-15 15:14:36 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2018 josh.north
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2018-10-19 19:00:44 -04:00
|
|
|
ini_set('session.gc_maxlifetime', 24*60*60); // MIN SESSION
|
|
|
|
ini_set('session.gc_probability', 1); // GC RATES
|
|
|
|
ini_set('session.gc_divisor', 100); // TIMES
|
|
|
|
session_save_path('.tmp'); // TEMP
|
|
|
|
session_start(); // START
|
|
|
|
require_once __DIR__ . '/autoload.php'; // AUTOLOAD
|
|
|
|
$StaticFunctions = new \App\LobbySIO\Misc\StaticFunctions(); // DEFAULT CLASSES
|
2018-10-15 15:14:36 -04:00
|
|
|
$SiteInfo = new \App\LobbySIO\Database\SiteInfo();
|
2018-10-19 19:00:44 -04:00
|
|
|
$Users = new \App\LobbySIO\Database\Users();
|
|
|
|
if (isset($_SESSION['user_id'])) { // LOGGED IN? GET USER OBJECT
|
|
|
|
$session_user = $Users->getUserInfo($_SESSION['user_id'], "1", "0"); }
|
|
|
|
if (isset($session_user)) { // GET UID OR SET TO KIOSK
|
|
|
|
$uid = $session_user["0"]["users_id"];} else { $uid = "2"; }
|
|
|
|
$app_disp_lang = filter_input(INPUT_COOKIE, 'app_disp_lang'); // SETUP LANGUAGE
|
|
|
|
if(!isset($app_disp_lang)) {
|
|
|
|
$app_disp_lang=$StaticFunctions->getDefaultLanguage(); }
|
|
|
|
$siteidcookie = filter_input(INPUT_COOKIE, 'app_site'); // SETUP SITE
|
|
|
|
foreach($SiteInfo->getSite("0", $uid, "0", "0") as $arr) {
|
|
|
|
$lookup_array[$arr['sites_id']]=1; }
|
|
|
|
if(isset($lookup_array[$siteidcookie])) {
|
|
|
|
$siteid = $siteidcookie; } else { $siteid = "1"; }
|
|
|
|
if(!isset($siteid)) { $siteid="1"; }
|
|
|
|
$Translate = new \App\LobbySIO\Language\Translate($app_disp_lang); // SETUP TRANSLATOR
|
|
|
|
$transLang = $Translate->userLanguage();
|
|
|
|
$VisitTypeInfo = new \App\LobbySIO\Database\VisitTypeInfo(); // ADDITIONAL CLASSES
|
2018-10-15 15:14:36 -04:00
|
|
|
$IDTypeInfo = new \App\LobbySIO\Database\IDTypeInfo();
|
|
|
|
$VisitInfo = new \App\LobbySIO\Database\VisitInfo();
|
|
|
|
$VisitActions = new \App\LobbySIO\Database\VisitActions();
|
2018-10-19 19:00:44 -04:00
|
|
|
$app_current_pagename = $transLang['HOME']; // PAGE SETUP
|
|
|
|
$app_current_pageicon = '<i class="fas fa-home"></i> ';
|
|
|
|
require_once("inc/header.inc.php");
|
|
|
|
if ($StaticFunctions->getSessionStatus() == false) { // CHECK STATUS
|
2018-10-15 15:14:36 -04:00
|
|
|
?>
|
|
|
|
<!-- GUEST CONTENT START -->
|
|
|
|
|
2021-04-21 12:07:02 -04:00
|
|
|
<div class="jumbotron">
|
2018-10-15 15:14:36 -04:00
|
|
|
<div class="container">
|
2021-04-21 12:07:02 -04:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-sm">
|
|
|
|
<div class="alert alert-info text-center">
|
|
|
|
<?php echo $transLang['WELCOMETO'] . " " . $SiteInfo->getSite($siteid, $uid, "0", "0")[0]["sites_name"]; ?>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-10-15 15:14:36 -04:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-sm">
|
|
|
|
|
|
|
|
</div>
|
|
|
|
<div class="col-sm">
|
2021-04-20 17:55:40 -04:00
|
|
|
<button class="btn btn-outline-danger btn-lg btn-block" tabindex="-1" role="button" aria-disabled="true" disabled><i class="fas fa-4x fa-sign-in-alt"></i><img src="<?php echo $StaticFunctions->getLogoText(); ?>" height="140" width="370"></img><i class="fas fa-4x fa-sign-out-alt"></i><br /><h1><?php echo $transLang['APP_NAME']; ?></h1></button>
|
2018-10-15 15:14:36 -04:00
|
|
|
</div>
|
|
|
|
<div class="col-sm">
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-sm"><hr /></div>
|
|
|
|
</div>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-sm">
|
|
|
|
<a href="signin.php" class="btn btn-success btn-lg btn-block" tabindex="-1" role="button" aria-disabled="true"> <br /> <br /><i class="fas fa-sign-in-alt"></i><br /><?php echo $transLang['CUSTSIGNIN']; ?><br /> <br /> </a>
|
|
|
|
</div>
|
|
|
|
<div class="col-sm">
|
|
|
|
<a href="signout.php" class="btn btn-info btn-lg btn-block" tabindex="-1" role="button" aria-disabled="true"> <br /> <br /><i class="fas fa-sign-out-alt"></i><br /><?php echo $transLang['CUSTSIGNOUT']; ?><br /> <br /> </a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- GUEST CONTENT END -->
|
|
|
|
<?php
|
|
|
|
} else {
|
|
|
|
?>
|
|
|
|
<!-- USER CONTENT START -->
|
|
|
|
|
|
|
|
<?php
|
|
|
|
if (!empty($_POST['endvisit'])) {
|
|
|
|
if (!empty($_POST['outtime'])) {
|
|
|
|
$newdate = new DateTime($_POST['outtime'], new DateTimeZone($timezone));
|
|
|
|
$newdate->setTimeZone(new DateTimeZone('UTC'));
|
|
|
|
$postdate=$newdate->format('Y-m-d H:i:s');
|
|
|
|
echo $VisitActions->endVisit($_POST['endvisit'], $postdate);
|
|
|
|
} else {
|
|
|
|
echo $VisitActions->endVisit($_POST['endvisit'], $StaticFunctions->getUTC());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!empty($_POST['voidvisit'])) {
|
2021-04-22 10:53:48 -04:00
|
|
|
echo $VisitActions->voidVisit($_POST['voidvisit'], "0", $_POST['voidnotes']);
|
2018-10-15 15:14:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// If post is approved, save after error checking.
|
|
|
|
if (!empty($_POST['approvevisit'])) {
|
|
|
|
if (empty($_POST['id_type'])) { $id_type_error="1"; }
|
|
|
|
else { $id_type_error="0";
|
|
|
|
if (empty($_POST['badge'])) { $badge_error="1"; }
|
|
|
|
else { $badge_error="0";
|
|
|
|
if (empty($_POST['initials'])) { $initials_error="1"; }
|
|
|
|
else { $initials_error="0";
|
|
|
|
if (isset($_POST['id_checked']) && $_POST['id_checked'] == '1') { $id_checked="1"; }
|
|
|
|
else { $id_checked="0"; }
|
|
|
|
if (isset($_POST['citizen']) && $_POST['citizen'] == '1') { $citizen="1"; }
|
|
|
|
else { $citizen="0"; }
|
|
|
|
$approved="2";
|
|
|
|
echo $VisitActions->approveVisit($_POST['approvevisit'], $_POST['id_type'], $id_checked, $citizen, $_POST['badge'], $_POST['initials'], $approved);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// check all unapproved or approved
|
|
|
|
$approval = "1";
|
|
|
|
|
|
|
|
// Set up pagination
|
|
|
|
$page_num = 1;
|
|
|
|
if(!empty($_GET['pnum'])):
|
|
|
|
$page_num = filter_input(INPUT_GET, 'pnum', FILTER_VALIDATE_INT);
|
|
|
|
if(false === $page_num):
|
|
|
|
$page_num = 1;
|
|
|
|
endif;
|
|
|
|
endif;
|
|
|
|
$offset = ($page_num - 1) * $StaticFunctions->getPageRows();
|
|
|
|
$row_count = count($VisitInfo->getVisitInfo($siteid, $approval, "empty", "%", "%", "%", "%", "%", "%"));
|
|
|
|
$page_count = 0;
|
|
|
|
if (0 === $row_count): else: $page_count = (int)ceil($row_count / $StaticFunctions->getPageRows()); if($page_num > $page_count): $page_num = 1; endif; endif;
|
|
|
|
?>
|
|
|
|
|
|
|
|
|
2021-04-22 10:53:48 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- modals -->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
$(document).on("click", ".open-voidModal", function (e) {
|
|
|
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
|
|
|
var _self = $(this);
|
|
|
|
|
|
|
|
var myVoidId = _self.data('id');
|
|
|
|
$("#voidvisit").val(myVoidId);
|
|
|
|
|
|
|
|
$(_self.attr('href')).modal('show');
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<!-- void notes -->
|
|
|
|
|
|
|
|
<div class="modal fade" id="voidModal" tabindex="-1" role="dialog" aria-labelledby="declinenotesmodal" aria-hidden="true">
|
|
|
|
<div class="modal-dialog" role="document">
|
|
|
|
<div class="modal-content">
|
|
|
|
|
|
|
|
<form class="form form-approve" method="post">
|
|
|
|
|
|
|
|
<div class="modal-body">
|
|
|
|
|
|
|
|
|
|
|
|
<input type="hidden" name="voidvisit" id="voidvisit" value="" />
|
|
|
|
<div class="input-group">
|
|
|
|
<div class="input-group-prepend">
|
|
|
|
<span class="input-group-text"><?php echo $transLang['NOTES']; ?></span>
|
|
|
|
</div>
|
|
|
|
<textarea class="form-control" id="voidnotes" name="voidnotes" placeholder="<?php echo $transLang['NOTES_PLACEHOLDER']; ?>"></textarea>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
<div class="modal-footer">
|
|
|
|
<button type="button" class="btn btn-secondary btn-sm" data-dismiss="modal"><?php echo $transLang['CANCEL']; ?></button>
|
|
|
|
<button type="submit" class="btn btn-danger btn-sm"><i class="fas fa-thumbs-down"></i> <?php echo $transLang['DECLINE']; ?></button>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2018-10-15 15:14:36 -04:00
|
|
|
<div class="container">
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-sm">
|
|
|
|
<h2><i class="fas fa-home"></i> <?php echo $transLang['ACTIVEVISITS']; ?></h2>
|
|
|
|
</div>
|
|
|
|
<div class="col-sm">
|
|
|
|
<input type="button" class="btn btn-success btn-lg btn-block" onClick="window.location.reload()" value="<?php echo $transLang['REFRESH']; ?>">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<?php echo '<ul class="pagination pagination-sm"><li class="page-item disabled"><a class="page-link" href="#" tabindex="-1">' . $transLang['PAGE'] . '</a></li>'; for ($i = 1; $i <= $page_count; $i++): echo '<li class="page-item'; if ($i === $page_num): echo ' active'; else: echo ' '; endif; echo '"><a class="page-link" href="' . $_SERVER['PHP_SELF'] . '?pnum=' . $i . '">' . $i . '</a></li>'; endfor; echo '</ul>'; ?>
|
2021-04-21 20:05:47 -04:00
|
|
|
<table class="table table-sm table-responsive-sm text-nowrap">
|
2018-10-15 15:14:36 -04:00
|
|
|
<thead class="thead-dark">
|
|
|
|
<tr>
|
2021-04-21 20:05:47 -04:00
|
|
|
<th class="small"><?php echo $transLang['TIMEREASON']; ?></th><th class="small"><?php echo $transLang['NAME']; ?></th><th class="small"><?php echo $transLang['ESCORT']; ?></th><th class="small"><?php echo $transLang['VALIDATIONS']; ?></th><th class="small"><?php echo $transLang['BADGEINITIALS']; ?></th><?php if($SiteInfo->getSite($siteid, $uid, "0", "0")[0]["sites_region"] == "EMEA") { ?><th class="small"><?php echo $transLang['CARNUM'] . " / " . $transLang['SSANUM']; ?></th><?php }; ?><th class="small"><?php echo $transLang['ACTIONS']; ?></th><th class="small"> </th>
|
2018-10-15 15:14:36 -04:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<?php foreach ($VisitInfo->getVisitInfo($siteid, $approval, "empty", "%", "%", "%", "%", $StaticFunctions->getPageRows(), $offset) as $row):
|
|
|
|
$visitid = $row['visits_id'];
|
|
|
|
$timein = new DateTime($row['visits_intime'], new DateTimeZone('UTC'));
|
|
|
|
$timein->setTimezone(new DateTimeZone("$timezone"));
|
|
|
|
$timein_disp = $timein->format('Y-m-d H:i:s');
|
2018-10-22 10:23:22 -04:00
|
|
|
if(!empty($row['visits_carnum'])) { $carnum=$row['visits_carnum']; } else { $carnum="";};
|
|
|
|
if(!empty($row['visits_ssanum'])) { $ssanum=$row['visits_ssanum']; } else { $ssanum="";};
|
2018-10-15 15:14:36 -04:00
|
|
|
?>
|
|
|
|
<?php if($row['visits_approved']==2) { ?>
|
|
|
|
<tr class="alert alert-success">
|
|
|
|
<?php } else { ?>
|
|
|
|
<tr class="alert alert-warning">
|
|
|
|
<?php }; ?>
|
2021-04-21 20:05:47 -04:00
|
|
|
<form class="form form-approve" method="post">
|
|
|
|
<td class="small"><?php echo $timein_disp; ?><br><?php echo $transLang[$VisitTypeInfo->getVisitTypeInfo($row['visits_reason'])[0]["visittypes_name"]]; ?></td>
|
|
|
|
<td class="small"><?php echo $row['visits_lastname'] . ", " . $row['visits_firstname']; ?><br><img src="<?php echo $row['visits_signature']; ?>" width="200" height="50"></img></td>
|
|
|
|
<td class="small"><?php if (!empty($row['visits_escort'])) {echo $row['visits_escort'] . '<br /><img src="' . $row['visits_escort_signature'] . '" width="200" height="50"></img>'; } ?></td>
|
|
|
|
<td class="small">
|
2018-10-15 15:14:36 -04:00
|
|
|
<?php if($row['visits_approved']==2) { ?>
|
2021-04-21 20:05:47 -04:00
|
|
|
<input class="form-control form-control-sm" type="text" id="id_type" name="id_type" disabled value="<?php echo $transLang[$IDTypeInfo->getIDTypeInfo($row['visits_id_type'])[0]["idtypes_name"]]; ?>">
|
2018-10-15 15:14:36 -04:00
|
|
|
<?php if($row['visits_id_checked']==1) { ?>
|
2021-04-21 13:01:25 -04:00
|
|
|
<div class="form-check form-group-sm">
|
2018-10-15 15:14:36 -04:00
|
|
|
<input class="form-check-input" type="checkbox" value="1" id="id_checked" name="id_checked" checked disabled>
|
|
|
|
<?php } else { ?>
|
2021-04-21 13:01:25 -04:00
|
|
|
<div class="form-check form-group-sm">
|
2018-10-15 15:14:36 -04:00
|
|
|
<input class="form-check-input" type="checkbox" value="1" id="id_checked" name="id_checked" disabled>
|
|
|
|
<?php }; ?>
|
2021-04-21 13:01:25 -04:00
|
|
|
<label class="form-check-label" for="id_checked"><?php echo $transLang['ID_CHECKED']; ?></label>
|
|
|
|
</div>
|
2018-10-19 19:00:44 -04:00
|
|
|
<?php if($SiteInfo->getSite($siteid, $uid, "0", "0")[0]["sites_region"] == "US") { if($row['visits_citizen']==1) { ?>
|
2021-04-21 13:01:25 -04:00
|
|
|
<div class="form-check form-group-sm">
|
2018-10-15 15:14:36 -04:00
|
|
|
<input class="form-check-input" type="checkbox" value="1" id="citizen" name="citizen" checked disabled>
|
|
|
|
<?php } else { ?>
|
2021-04-21 13:01:25 -04:00
|
|
|
<div class="form-check form-group-sm">
|
2018-10-15 15:14:36 -04:00
|
|
|
<input class="form-check-input" type="checkbox" value="1" id="citizen" name="citizen" disabled>
|
|
|
|
<?php }; ?>
|
2018-10-19 19:00:44 -04:00
|
|
|
<label class="form-check-label" for="citizen"><?php echo $transLang['CITIZEN']; ?></label>
|
2021-04-21 13:01:25 -04:00
|
|
|
</div>
|
2018-10-19 19:00:44 -04:00
|
|
|
<?php }; ?>
|
|
|
|
</td>
|
2021-04-21 20:05:47 -04:00
|
|
|
<td class="small"><input type="text" id="badge" name="badge" class="form-control form-control-sm" autofocus disabled value="<?php echo $row['visits_badge']; ?>"><br><?php echo $Users->getUserInitials($row['visits_initials'])[0]["users_firstname"] . " " . $Users->getUserInitials($row['visits_initials'])[0]["users_lastname"]; ?></td>
|
2018-10-22 09:59:34 -04:00
|
|
|
<?php if($SiteInfo->getSite($siteid, $uid, "0", "0")[0]["sites_region"] == "EMEA") { ?>
|
2021-04-21 20:05:47 -04:00
|
|
|
<td class="small"><?php echo $carnum; ?> / <?php echo $ssanum; ?></td>
|
2018-10-22 09:59:34 -04:00
|
|
|
<?php }; ?>
|
2021-04-21 20:05:47 -04:00
|
|
|
<td class="small"> </td>
|
|
|
|
<td class="small"><button type="submit" name="endvisit" value="<?php echo $row['visits_id']; ?>" class="btn btn-warning btn-block"><i class="fas fa-sign-out-alt"></i> <?php echo $transLang['SIGNOUT']; ?></button><br>
|
2018-10-15 15:14:36 -04:00
|
|
|
<div>
|
|
|
|
<div class="row">
|
2021-04-21 20:05:47 -04:00
|
|
|
<div class="col">
|
|
|
|
<input placeholder=" / / : : " name="outtime" type="text" class="form-control form-control-sm datetimepicker-input datetimepicker-<?php echo $row['visits_id']; ?>" id="datetimepicker-<?php echo $row['visits_id']; ?>" data-toggle="datetimepicker" data-target=".datetimepicker-<?php echo $row['visits_id']; ?>"/>
|
2018-10-15 15:14:36 -04:00
|
|
|
</div>
|
|
|
|
<script type="text/javascript">
|
|
|
|
$(function () {
|
|
|
|
$('.datetimepicker-<?php echo $row['visits_id']; ?>').datetimepicker({'timeZone': '<?php echo $timezone; ?>', 'sideBySide':true, 'format':'YYYY-MM-DD HH:mm:ss'});
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</td>
|
|
|
|
<?php } else { ?>
|
2021-04-21 20:05:47 -04:00
|
|
|
<select class="form-control form-control-sm custom-select<?php if( isset($id_type_error) && $id_type_error == "1" && $_POST['approvevisit'] == $visitid ) { echo " is-invalid"; } ?>" id="id_type" aria-label="ID Type" name="id_type">
|
2018-10-15 15:14:36 -04:00
|
|
|
<option value="" selected><?php echo $transLang['SELECTID']; ?></option><?php foreach($IDTypeInfo->getIDTypeInfo("%") as $row): ?>
|
|
|
|
<option value="<?php echo $row['idtypes_id']; ?>"><?php echo $transLang[$row['idtypes_name']]; ?></option><?php endforeach; ?>
|
|
|
|
</select>
|
|
|
|
<div class="invalid-feedback"><?php echo $transLang['REQUIRED']; ?></div>
|
2021-04-21 13:01:25 -04:00
|
|
|
<div class="form-check form-group-sm">
|
2019-01-29 11:14:47 -05:00
|
|
|
<input class="form-check-input" type="checkbox" value="1" id="id_checked" name="id_checked">
|
2021-04-21 13:01:25 -04:00
|
|
|
<label class="form-check-label" for="id_checked"><?php echo $transLang['ID_CHECKED']; ?></label>
|
|
|
|
</div>
|
2018-10-19 19:00:44 -04:00
|
|
|
<?php if($SiteInfo->getSite($siteid, $uid, "0", "0")[0]["sites_region"] == "US") { ?>
|
2021-04-21 13:01:25 -04:00
|
|
|
<div class="form-check form-group-sm">
|
2018-10-15 15:14:36 -04:00
|
|
|
<input class="form-check-input" type="checkbox" value="1" id="citizen" name="citizen">
|
|
|
|
<label class="form-check-label" for="citizen"><?php echo $transLang['CITIZEN']; ?></label>
|
2021-04-21 13:01:25 -04:00
|
|
|
</div>
|
2018-10-19 19:00:44 -04:00
|
|
|
<?php }; ?>
|
2021-04-21 20:05:47 -04:00
|
|
|
<td class="small">
|
|
|
|
<input type="text" id="badge" name="badge" class="form-control form-control-sm<?php if( isset($badge_error) && $badge_error == "1" && $_POST['approvevisit'] == $visitid ) { echo " is-invalid"; } ?>" placeholder="<?php echo $transLang['BADGE']; ?>" autofocus maxlength="15">
|
2018-10-15 15:14:36 -04:00
|
|
|
<div class="invalid-feedback"><?php echo $transLang['REQUIRED']; ?></div>
|
2021-04-21 12:07:02 -04:00
|
|
|
<input type="hidden" id="initials" name="initials" class="form-control<?php if( isset($initials_error) && $initials_error == "1" && $_POST['approvevisit'] == $visitid ) { echo " is-invalid"; } ?>" placeholder="<?php echo $uid; ?>" value="<?php echo $uid; ?>" autofocus maxlength="5">
|
2018-10-15 15:14:36 -04:00
|
|
|
<div class="invalid-feedback"><?php echo $transLang['REQUIRED']; ?></div>
|
|
|
|
</td>
|
2018-10-22 09:59:34 -04:00
|
|
|
<?php if($SiteInfo->getSite($siteid, $uid, "0", "0")[0]["sites_region"] == "EMEA") { ?>
|
2021-04-21 20:05:47 -04:00
|
|
|
<td class="small"><?php echo $carnum; ?> / <?php echo $ssanum; ?></td>
|
2018-10-22 09:59:34 -04:00
|
|
|
<?php }; ?>
|
2021-04-21 20:05:47 -04:00
|
|
|
<td class="small">
|
2021-04-22 10:53:48 -04:00
|
|
|
<button type="submit" name="approvevisit" value="<?php echo $visitid; ?>" class="btn btn-success btn-block btn-sm"><i class="fas fa-thumbs-up"></i> <?php echo $transLang['APPROVE']; ?></button><br /><a data-toggle="modal" data-target="#voidModal" data-id="<?php echo $visitid; ?>" href="#voidModal" name="voidvisit" value="<?php echo $visitid; ?>" class="btn btn-danger btn-block btn-sm open-voidModal"><i class="fas fa-thumbs-down"></i> <?php echo $transLang['DECLINE']; ?></a>
|
2018-10-15 15:14:36 -04:00
|
|
|
</td>
|
2021-04-21 20:05:47 -04:00
|
|
|
<td class="small">
|
|
|
|
<button type="submit" name="endvisit" value="<?php echo $visitid; ?>" class="btn btn-warning btn-block btn-sm"><i class="fas fa-sign-out-alt"></i> <?php echo $transLang['SIGNOUT']; ?></button>
|
2018-10-15 15:14:36 -04:00
|
|
|
<br>
|
|
|
|
<div>
|
|
|
|
<div class="row">
|
2021-04-21 20:05:47 -04:00
|
|
|
<div class="col">
|
|
|
|
<input placeholder=" / / : : " name="outtime" type="text" class="form-control form-control-sm datetimepicker-input datetimepicker-<?php echo $visitid; ?>" id="datetimepicker-<?php echo $visitid; ?>" data-toggle="datetimepicker" data-target=".datetimepicker-<?php echo $visitid; ?>" />
|
2018-10-15 15:14:36 -04:00
|
|
|
</div>
|
|
|
|
<script type="text/javascript">
|
|
|
|
$(function () {
|
|
|
|
$('.datetimepicker-<?php echo $visitid; ?>').datetimepicker({'sideBySide':true, 'format':'YYYY-MM-DD HH:mm:ss'});
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</td>
|
|
|
|
<?php }; ?>
|
|
|
|
</form>
|
|
|
|
</tr>
|
|
|
|
<?php endforeach; ?>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
2021-04-22 10:53:48 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
2018-10-15 15:14:36 -04:00
|
|
|
<!-- USER CONTENT END -->
|
|
|
|
<?php }; require_once("inc/footer.inc.php");
|