101 lines
5.2 KiB
PHP
101 lines
5.2 KiB
PHP
<div class="content-wrapper">
|
|
<!-- Content Header (Page header) -->
|
|
<section class="content-header">
|
|
<h1 style="text-align:center;font-family:verdana;">
|
|
<b>Purchase Order </b>
|
|
<!-- <small>Add, Edit, Delete</small> -->
|
|
</h1>
|
|
</section>
|
|
<section class="content">
|
|
<div class="row">
|
|
<div class="col-xs-12 text-right">
|
|
<div class="form-group">
|
|
<a class="btn btn-primary" href="<?php echo base_url(); ?>addPO">AddNew</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-xs-12">
|
|
<div class="box">
|
|
<div class="box-header">
|
|
<h3 class="box-title" ><b>Purchase Order</b></h3>
|
|
<div class="box-tools">
|
|
<form action="<?php echo base_url() ?>purchaseorder/purchaseorderListing" method="POST" id="searchList">
|
|
<div class="input-group">
|
|
<input type="text" name="searchText" value="<?php echo $searchText; ?>" class="form-control input-sm pull-right" style="width: 150px;" placeholder="Search"/>
|
|
<div class="input-group-btn">
|
|
<button class="btn btn-sm btn-default searchList"><i class="fa fa-search"></i></button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div><!-- /.box-header -->
|
|
<div class="box-body table-responsive no-padding">
|
|
<table class="table table-hover" cellpadding="10" >
|
|
<tr style="background-color:powderblue;">
|
|
<th text-align="center" nowrap >PO NO</th>
|
|
<th text-align="center" nowrap >PO Type</th>
|
|
<th text-align="center" nowrap>PO Date</th>
|
|
<th text-align="center" nowrap >Supplier Name</th>
|
|
<!-- <th text-align="center" nowrap>Special Order</th> -->
|
|
<!-- <th text-align="center" nowrap>Role</th> -->
|
|
<!-- <th text-align="center" nowrap>Requester Email</th> -->
|
|
<!-- <th text-align="center" nowrap>RequesterPh</th>
|
|
<th text-align="center" nowrap>RequesterDate</th> -->
|
|
<th text-align="center" nowrap >Budget Manager</th>
|
|
<th text-align="center" nowrap>Budget Manager Department</th>
|
|
<!-- <th text-align="center" nowrap >PurchasingCategory</th> -->
|
|
<th text-align="center" nowrap>Edit</th>
|
|
</tr>
|
|
<?php
|
|
if(!empty($userRecords))
|
|
{
|
|
foreach($userRecords as $record)
|
|
{
|
|
?>
|
|
<tr border="1">
|
|
<td nowrap ><a href="<?php echo base_url().'purchaseorder/ViewPurchaseOrder/?PONO='.$record->PONO; ?>"><u><?php echo $record->PONO ?></u></a></td>
|
|
<td nowrap><?php echo $record->POType ?></td>
|
|
<td nowrap text-align="right"><?php echo $record->PODate ?></td>
|
|
<td nowrap><?php echo $record->SupplierID ?></td>
|
|
<!-- <td><?php echo $record->SpecialOrder ?></td>-->
|
|
<!-- <td><?php echo $record->UserID ?></td>-->
|
|
<!-- <td><?php echo $record->RequesterEmail ?></td>
|
|
<td><?php echo $record->RequesterPh ?></td>
|
|
<td><?php echo $record->RequestedDate ?></td> -->
|
|
<td nowrap><?php echo $record->BudgetManager ?></td>
|
|
<td nowrap><?php echo $record->BudgetManagerDepartment ?></td>
|
|
<!-- <td><?php echo $record->PurchasingCategory ?></td> -->
|
|
<td>
|
|
<a href="<?php echo base_url().'purchaseorder/editOldPO/'.$record->PONO; ?>"><i class="fa fa-pencil"></i> </a>
|
|
<!-- <a href="#" data-userid="<?php echo $record->userId; ?>" class="deleteUser"><i class="fa fa-trash"></i> </a>-->
|
|
</td>
|
|
</tr>
|
|
<?php
|
|
}
|
|
}
|
|
?>
|
|
</table>
|
|
|
|
</div><!-- /.box-body -->
|
|
<div class="box-footer clearfix">
|
|
<?php echo $this->pagination->create_links(); ?>
|
|
</div>
|
|
</div><!-- /.box -->
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</div>
|
|
<script type="text/javascript" src="<?php echo base_url(); ?>assets/js/common.js" charset="utf-8"></script>
|
|
<script type="text/javascript">
|
|
jQuery(document).ready(function(){
|
|
jQuery('ul.pagination li a').click(function (e) {
|
|
e.preventDefault();
|
|
var link = jQuery(this).get(0).href;
|
|
var value = link.substring(link.lastIndexOf('/') + 1);
|
|
jQuery("#searchList").attr("action", baseURL + "purchaseorderListing/" + value);
|
|
jQuery("#searchList").submit();
|
|
});
|
|
});
|
|
</script>
|