Files
CIEF Dev Team 09421c18b8 Initial commit
2018-03-07 16:15:53 +08:00

55 lines
1.8 KiB
PHP

<?php if($_SESSION['role'] == 0){ ?>
<div class="note note-info">
<p> A black page template with a minimal dependency assets to use as a base for any custom page you create </p>
</div>
<?php echo "User ID : " . $_SESSION['user_id'] . "</br>"; ?>
<?php echo "Company ID : " . $_SESSION['company_id'] . "</br>"; ?>
<?php echo "Branch ID : " . $_SESSION['branch_id']. "</br>"; ?>
<?php echo "Role : " . $_SESSION['role']. "</br>"; ?>
<?php echo "Group : " . $_SESSION['group_id']. "</br>"; ?>
<?php }else{?>
<style>
th.dt-body-center, td.dt-body-center { text-align: center !important; vertical-align: middle !important; }
th{text-align: center !important; vertical-align: middle !important;}
td.dataTables_empty{ text-align: center !important; vertical-align: middle !important;}
.dropdown-menu {
box-shadow: 5px 5px rgba(102,102,102,.1);
left: 0;
min-width: 30px;
}
</style>
<!--<h1 class="page-title"> Company Settings
</h1>-->
<div class="row">
<div class="col-md-12">
<div class="portlet box blue-hoki">
<div class="portlet-title">
<div class="caption">
<i class="fa fa-cogs"></i><strong>General Status</strong>
</div>
</div>
<div class="portlet-body">
<div class="pull-right"><u><a href="/dashboard">Purchase Order</a></u> | <u><a href="/dashboard/shipping-order">Shipping Order</a></u></div>
<table class="table table-striped table-bordered table-hover" id="order-status">
<thead>
<tr role="row" class="heading">
<th>No</th>
<th>Date</th>
<th>Status</th>
<th>Marking</th>
<th>Supplier<br/>Name</th>
<th>Forwarder</th>
<th>Shipment<br/>No</th>
<th>Cont<br/>No</th>
<th>Warehouse<br/>Recv<br/>Note</th>
<th>ETD</th>
<th>ETA</th>
<th>Actions</th>
</tr>
</thead>
</table>
</div>
</div>
</div>
</div>
<?php }?>