93 lines
4.0 KiB
PHP
Executable File
93 lines
4.0 KiB
PHP
Executable File
<script>
|
|
$(document).ready(function() {
|
|
|
|
$('table').tableSort( {
|
|
animation :'slide',
|
|
speed:500
|
|
} );
|
|
});
|
|
|
|
</script>
|
|
<div class="content-wrapper">
|
|
|
|
<section class="content-header">
|
|
<h1>
|
|
<center>Siddharth Industries - Material Master Details</CENTER>
|
|
</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(); ?>addRawmaterial">Add New Material</a>
|
|
<a class="btn btn-primary" href="<?php echo base_url(); ?>rawmaterialdetails/export_material">Export Material Master <i class="fa fa-download"aira-hidden="true"></i></a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-xs-12">
|
|
<div class="box">
|
|
<div class="box-header">
|
|
<CENTER><h3 class="box-title"></h3><CENTER>
|
|
<div class="box-tools">
|
|
<form action="<?php echo base_url() ?>rawmaterialdetails/rawmaterialListing" 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 id="datatable" class="table table-hover tableSorter" >
|
|
<tr bgcolor="steelblue" >
|
|
<th>Material Code</th>
|
|
<th>Material Description</th>
|
|
<th>Type of Material</th>
|
|
<th>Unit Of Measurement</th>
|
|
|
|
</tr>
|
|
<?php
|
|
if(!empty($userRecords))
|
|
{
|
|
foreach($userRecords as $record)
|
|
{
|
|
?>
|
|
<tr>
|
|
|
|
<td><u><a href="<?php echo base_url().'rawmaterialdetails/viewRawmaterial/?RID='.$record->MaterialCode.'&MType='.$record->MaterialType.'&UOM='.$record->UOM ; ?>" data-toggle="tooltip" title="<?php echo $record->MaterialCode; ?> - Click here to view Material details"><?php echo $record->MaterialCode ?> </a></u></td>
|
|
<td><?php echo $record->MaterialName ?></td>
|
|
<td><?php echo $record->MaterialType ?></td>
|
|
<td><?php echo $record->UOM ?></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 + "rawmaterialListing/" + value);
|
|
jQuery("#searchList").submit();
|
|
});
|
|
});
|
|
</script>
|