siddharth_application/application/views/rawmaterialListing.php
2017-07-24 17:54:02 +05:30

87 lines
3.4 KiB
PHP
Executable File

<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">
<table id="datatable" class="table table-hover table-bordered" style="background-color:#fff;font-size:12px;" >
<thead>
<tr>
<th>Material Code</th>
<th>Raw Material Code</th>
<th>Material Description</th>
<th>Type of Material</th>
<th>Unit Of Measurement</th>
<th>Material Category</th>
<th>Conversion Factor</th>
<th>Conversion Factor UOM</th>
<th>Asset Code</th>
<th>Cost Center Code</th>
<th>HSN Code</th>
</tr>
</thead>
<tbody>
<?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->RMCode ?></td>
<td><?php echo $record->MaterialName ?></td>
<td><?php echo $record->MaterialType ?></td>
<td><?php echo $record->UOM ?></td>
<td><?php echo $record->Category ?></td>
<td><?php echo $record->ConversionFactorUnit ?></td>
<td><?php echo $record->ConversionFactorUOM ?></td>
<td><?php echo $record->assetcode ?></td>
<td><?php echo $record->CostCenterCode ?></td>
<td><?php echo $record->HSNCODE ?></td>
</tr>
<?php
}
}
?>
</tbody>
</table>
</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">
$(function () {
$('#datatable').DataTable({
"paging": true,
"lengthChange": true,
"searching": true,
"ordering": true,
"info": true,
"autoWidth": true
});
});
</script>