Index of /home/htscrtms/newcrm.htshah.com/hslider
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, shrink-to-fit=no">
<title>HT Shah</title>
<link rel="icon" type="image/x-icon" href="assets/img/favicon.ico"/>
<!-- BEGIN GLOBAL MANDATORY STYLES -->
<link href="https://fonts.googleapis.com/css?family=Nunito:400,600,700" rel="stylesheet">
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
<link href="assets/css/plugins.css" rel="stylesheet" type="text/css" />
<link href="assets/css/dashboard/dash_1.css" rel="stylesheet" type="text/css">
</head>
<body>
<?php include("header.php"); ?>
<!-- BEGIN NAVBAR -->
<div class="sub-header-container">
<header class="header navbar navbar-expand-sm">
<a href="javascript:void(0);" class="sidebarCollapse" data-placement="bottom"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-menu"><line x1="3" y1="12" x2="21" y2="12"></line><line x1="3" y1="6" x2="21" y2="6"></line><line x1="3" y1="18" x2="21" y2="18"></line></svg></a>
<ul class="navbar-nav flex-row">
<li>
<div class="page-header">
<nav class="breadcrumb-one" aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="javascript:void(0);">Dashboard</a></li>
<li class="breadcrumb-item active" aria-current="page"><span>Sales</span></li>
</ol>
</nav>
</div>
</li>
</ul>
</header>
</div>
<!-- END NAVBAR -->
<!-- BEGIN MAIN CONTAINER -->
<div class="main-container" id="container">
<?php include("sidebar-wrapper.php"); ?>
<!-- BEGIN CONTENT AREA -->
<div id="content" class="main-content">
<div class="layout-px-spacing">
<div class="row layout-top-spacing">
<div class="col-md-12 layout-spacing">
<a href="https://www.icegate.gov.in/" target="_blank"><button type="button" class="btn btn-danger mr-2">E-Payment</button></a>
<a href="importArrivalReport.php"><button type="button" class="btn btn-danger mr-2">Import Arrival Report</button></a>
<a href="importBookingReport.php"><button type="button" class="btn btn-danger mr-2">Import Booking Report</button></a>
<a href="importDeletedReport.php"><button type="button" class="btn btn-danger mr-2">Import Deleted Report</button></a>
<a href="exportReport.php"><button type="button" class="btn btn-danger mr-2">Export Report</button></a>
<a href="exportDeletedReport.php"><button type="button" class="btn btn-danger">Export Deleted Report</button></a>
</div>
<div class="col-xl-6 col-lg-12 col-md-12 col-sm-12 col-12 layout-spacing">
<div class="widget widget-table-two">
<div class="widget-heading">
<h5 class="">View Import Entries</h5>
</div>
<div class="widget-content">
<div class="table-responsive">
<table class="table">
<thead>
<tr>
<th><div class="th-content">Sr.</div></th>
<th><div class="th-content">HTSHAH Job</div></th>
<th><div class="th-content">Edi Job</div></th>
<th><div class="th-content">Client</div></th>
</tr>
</thead>
<tbody>
<?php $count=0;
if(isset($_SESSION['seln']) && $_SESSION['seln']=="Client"){
$selcl="select * from `tabl_client` where userName='".$_SESSION["name"]."'";
$qrycl=mysqli_query($con,$selcl) or die(mysqli_error($con));
$rowcl=mysqli_fetch_array($qrycl);
$sel="select * from `tabl_importbooking` where DELFLAG='N' && STATUS='1' && client_id='".$rowcl['id']."' order by id desc";
}else{
$sel="select * from `tabl_importbooking` where DELFLAG='N' && STATUS='1' order by id desc";
}
$qry=mysqli_query($con,$sel) or die(mysqli_error($con));
while($row=mysqli_fetch_array($qry))
{ $count++;
$selc="select * from `tabl_client` where id='".$row['client_id']."'";
$qryc=mysqli_query($con,$selc) or die(mysqli_error($con));
$rowc=mysqli_fetch_array($qryc);
?>
<tr>
<td><?php echo $count;?></td>
<td><div class="td-content product-brand"><a class="text-primary" href="edit_importbooking.php?htshahNo=<?php echo $row['htshah_no'] ?>"><?php echo $row['htshah_no']?></a></div></td>
<td><div class="td-content customer-name"><?php echo $row['edi_no']?></div></td>
<td><div class="td-content"><span class="badge badge-success"><?php echo $rowc['userName']?></span></div></td>
</tr>
<?php
}
?>
</tbody>
</table>
</div>
</div>
</div>
</div>
<div class="col-xl-6 col-lg-12 col-md-12 col-sm-12 col-12 layout-spacing">
<div class="widget widget-table-two">
<div class="widget-heading">
<h5 class="">View Export Entries</h5>
</div>
<div class="widget-content">
<div class="table-responsive">
<table class="table table-scroll">
<thead>
<tr>
<th><div class="th-content">Sr.</div></th>
<th><div class="th-content">HTSHAH Job</div></th>
<th><div class="th-content">Edi Job</div></th>
<th><div class="th-content">Client</div></th>
</tr>
</thead>
<tbody>
<?php $count=0;
if(isset($_SESSION['seln']) && $_SESSION['seln']=="Client"){
$selcl="select * from `tabl_client` where userName='".$_SESSION["name"]."'";
$qrycl=mysqli_query($con,$selcl) or die(mysqli_error($con));
$rowcl=mysqli_fetch_array($qrycl);
$sel="select * from `tabl_exportentry` where DELFLAG='N' && client_id='".$rowcl['id']."' order by id desc";
}else{
$sel="select * from `tabl_exportentry` where DELFLAG='N' order by id desc";
}
$qry=mysqli_query($con,$sel) or die(mysqli_error($con));
while($row=mysqli_fetch_array($qry))
{ $count++;
$selc="select * from `tabl_client` where id='".$row['client_id']."'";
$qryc=mysqli_query($con,$selc) or die(mysqli_error($con));
$rowc=mysqli_fetch_array($qryc);
?>
<tr>
<td><?php echo $count;?></td>
<td><div class="td-content product-brand"><a class="text-primary" href="edit_exportbooking.php?htshahNo=<?php echo $row['htshah_no'] ?>"><?php echo $row['htshah_no']?></a></div></td>
<td><div class="td-content customer-name"><?php echo $row['edi_no']?></div></td>
<td><div class="td-content"><span class="badge badge-success"><?php echo $rowc['userName']?></span></div></td>
</tr>
<?php
}
?>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
<?php include("footer.php"); ?>
</div>
<!-- END CONTENT AREA -->
</div>
<!-- END MAIN CONTAINER -->
<!-- BEGIN GLOBAL MANDATORY SCRIPTS -->
<script src="assets/js/libs/jquery-3.1.1.min.js"></script>
<script src="bootstrap/js/popper.min.js"></script>
<script src="bootstrap/js/bootstrap.min.js"></script>
<script src="plugins/perfect-scrollbar/perfect-scrollbar.min.js"></script>
<script src="assets/js/app.js"></script>
<script>
$(document).ready(function() {
App.init();
});
</script>
<script src="assets/js/custom.js"></script>
<script src="assets/js/dashboard/dash_1.js"></script>
</body>
</html>