131 lines
3.7 KiB
PHP
Executable File
131 lines
3.7 KiB
PHP
Executable File
|
|
|
|
<?php
|
|
if(!empty($Total))
|
|
{
|
|
|
|
}
|
|
?>
|
|
<link rel="stylesheet" href="https://cdn.datatables.net/buttons/1.3.1/css/buttons.dataTables.min.css">
|
|
<style>
|
|
|
|
.dataTables_filter {
|
|
width: 50%;
|
|
float: right;
|
|
text-align: right;
|
|
}
|
|
.dataTables_paginate {
|
|
width: 50%;
|
|
float: right;
|
|
text-align: right;
|
|
}
|
|
div.dt-buttons {
|
|
position: relative;
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
|
</style>
|
|
|
|
<div class="row" style="min-height: 600px;">
|
|
<!-- Left col -->
|
|
<div class="col-md-12">
|
|
<!-- TABLE: LATEST ORDERS -->
|
|
<div class="box box-info">
|
|
<div class="box-header with-border">
|
|
<center><h3 class="box-title"><p style="color:#3c8dbc"><b>Total Orders</b></p></h3></center>
|
|
</div>
|
|
<!-- /.box-header -->
|
|
|
|
|
|
|
|
|
|
<div class="box-body">
|
|
<div>
|
|
<table class="table table-bordered table-hover" id="req" style="font-size:13px;">
|
|
<thead>
|
|
<tr>
|
|
|
|
<th>Department</th>
|
|
<th>PO Created</th>
|
|
<th>Approved</th>
|
|
<th>Releaser Onhold</th>
|
|
<th>Approver Onhold</th>
|
|
<th>Service completed</th>
|
|
<th>Released</th>
|
|
<th>IGR Created</th>
|
|
<th>MRIR Approved</th>
|
|
<th>MRIR Rejected</th>
|
|
|
|
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php if(!empty($Total)){
|
|
foreach($Total as $rel)
|
|
{
|
|
?>
|
|
<tr>
|
|
|
|
<td><span><?php echo $rel->Dept_Name?></span></td>
|
|
<td align="right"><span><?php echo $rel->PO_Created?></span></td>
|
|
<td align="right"><span><?php echo $rel->Approved?></span></td>
|
|
<td align="right"><span><?php echo $rel->Releaser_Onhold?></span></td>
|
|
<td align="right"><span><?php echo $rel->Approver_Onhold?></span></td>
|
|
<td align="right"><span><?php echo $rel->Service_completed?></span></td>
|
|
<td align="right"><span><?php echo $rel->Released?></span></td>
|
|
<td align="right"><span><?php echo $rel->IGR_Created?></span></td>
|
|
<td align="right"><span><?php echo $rel->MRIR_Approved?></span></td>
|
|
<td align="right"><span><?php echo $rel->MRIR_Rejected?></span></td>
|
|
|
|
|
|
</tr>
|
|
<?php
|
|
}
|
|
|
|
}
|
|
?>
|
|
</tbody>
|
|
</table>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!-- /.box -->
|
|
</div>
|
|
<!-- /.col -->
|
|
</div>
|
|
|
|
<script src="https://cdn.datatables.net/buttons/1.3.1/js/dataTables.buttons.min.js"></script>
|
|
<script src="https://cdn.datatables.net/buttons/1.3.1/js/buttons.flash.min.js"></script>
|
|
<script src="https://cdn.datatables.net/buttons/1.3.1/js/buttons.html5.min.js"></script>
|
|
<script src="https://cdn.datatables.net/buttons/1.3.1/js/buttons.print.min.js"></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/jszip/3.1.3/jszip.min.js"></script>
|
|
|
|
<script>
|
|
|
|
|
|
// Bootstrap datepicker
|
|
// Set up your table
|
|
$(document).ready(function() {
|
|
table = $('#req').DataTable( {
|
|
"dom": "<'row'<'col-md-6'l><'col-md-6'Bf>>" +
|
|
"<'row'<'col-md-6'><'col-md-6'>>" +
|
|
"<'row'<'col-md-12't>><'row'<'col-md-4'i><'col-md-8'p>>",
|
|
buttons: [
|
|
{
|
|
extend: 'collection',
|
|
text: 'Export Total Orders',
|
|
buttons: [
|
|
'excel'
|
|
]
|
|
}
|
|
]
|
|
} );
|
|
} );
|
|
|
|
|
|
|
|
</script>
|
|
|