mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/ARCHIVED-IZYIM.git
synced 2026-08-21 21:34:13 +00:00
60 lines
1.9 KiB
PHP
Executable File
60 lines
1.9 KiB
PHP
Executable File
<?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">
|
|
<ul class="nav nav-tabs tabs-reversed">
|
|
<li>
|
|
<a href="/dashboard/shipping-order"> Shipping Order </a>
|
|
</li>
|
|
<li class="active">
|
|
<a href="/dashboard"> Purchase Order </a>
|
|
</li>
|
|
</ul>
|
|
<div class="tab-content">
|
|
<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>Order No</th>
|
|
<th>Marking</th>
|
|
<th>Supplier<br/>Name</th>
|
|
<th>Forwarder</th>
|
|
<th>Purchase<br/>Value</th>
|
|
<th>Actions</th>
|
|
</tr>
|
|
</thead>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<?php }?>
|