142 lines
4.4 KiB
PHP
Executable File
142 lines
4.4 KiB
PHP
Executable File
<style>
|
|
.num {
|
|
text-align :right;
|
|
}
|
|
</style>
|
|
|
|
<div class="content-wrapper">
|
|
<?php
|
|
/* $attributes = array('class' => 'form-label-left RequisitionList ','name' => 'RequisitionList','id' => 'RequisitionList','method' => 'post','role' => 'form' );
|
|
|
|
echo form_open($this->config->base_url().'purchaseorderform/purchaseorder',$attributes); */?>
|
|
|
|
<section class="content">
|
|
<center><b><h2>Siddharth Industries - Stock Details </h2></b></center>
|
|
<div class="container-fluid">
|
|
<table id="storestatuslisting" class="table table-bordered table-hover editableTable" style="font-size:12px;">
|
|
|
|
<!--- -cdd df df -->
|
|
<!--- -cdd df df -->
|
|
<div class="modal fade" role="dialog">
|
|
|
|
<thead style="background-color:#fff">
|
|
<tr>
|
|
<th>SNo.</th>
|
|
<th>Material Code</th>
|
|
<th>Material Name</th>
|
|
<th>UOM</th>
|
|
<th>Available Stock</th>
|
|
<th>Stock Availablity</th>
|
|
<th>Updated On</th>
|
|
<th>Remarks</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td>1</td>
|
|
<td>Sand001</td>
|
|
<td>Dry Silica Sand</td>
|
|
<td>Kgs</td>
|
|
<td>
|
|
<?php
|
|
$data = array('name' => 'AvalQuantity','value' => set_value('AvalQuantity'),'id'=>'AvalQuantity', 'class' => 'form-control num' ,'required' => 'true');
|
|
echo form_input($data);
|
|
?>
|
|
</td>
|
|
|
|
<td data-name="sel">
|
|
<select name="status">
|
|
<option value="1">High</option>
|
|
<option value="2">Mediam</option>
|
|
<option value="3">Low</option>
|
|
</select>
|
|
</td>
|
|
<td>02/07/2017</td>
|
|
<td>
|
|
<?php
|
|
$data = array('name' => 'Remarks','value' => set_value('Remarks'),'id'=>'Remarks', 'class' => 'form-control' ,'required' => 'true');
|
|
echo form_input($data);
|
|
?>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>2</td>
|
|
<td>Sand002</td>
|
|
<td>Wast Sand</td>
|
|
<td>Kgs</td>
|
|
<td><?php
|
|
$data = array('name' => 'AvalQuantity','value' => set_value('AvalQuantity'),'id'=>'AvalQuantity', 'class' => 'form-control num' ,'required' => 'true');
|
|
echo form_input($data);
|
|
?>
|
|
</td>
|
|
|
|
<td data-name="sel">
|
|
<select name="status">
|
|
<option value="1">High</option>
|
|
<option value="2">Mediam</option>
|
|
<option value="3">Low</option>
|
|
</select>
|
|
</td>
|
|
<td>04/07/2017</td>
|
|
<td>
|
|
<?php
|
|
$data = array('name' => 'Remarks','value' => set_value('Remarks'),'id'=>'Remarks', 'class' => 'form-control' ,'required' => 'true');
|
|
echo form_input($data);
|
|
?>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>3</td>
|
|
<td>Resin002</td>
|
|
<td>Resin</td>
|
|
<td>Liter</td>
|
|
<td>
|
|
<?php
|
|
$data = array('name' => 'AvalQuantity','value' => set_value('AvalQuantity'),'id'=>'AvalQuantity', 'class' => 'form-control num' ,'required' => 'true');
|
|
echo form_input($data);
|
|
?>
|
|
</td>
|
|
|
|
<td data-name="sel">
|
|
<select name="status">
|
|
<option value="1">High</option>
|
|
<option value="2">Mediam</option>
|
|
<option value="3">Low</option>
|
|
</select>
|
|
</td>
|
|
<td>03/07/2017</td>
|
|
<td>
|
|
<?php
|
|
$data = array('name' => 'Remarks','value' => set_value('Remarks'),'id'=>'Remarks', 'class' => 'form-control' ,'required' => 'true');
|
|
echo form_input($data);
|
|
?>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
|
|
<div align="right" style="padding-right:10px">
|
|
|
|
<button type="button" class="btn btn-primary">Update Availability</button></a>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
</section>
|
|
</div>
|
|
<script>
|
|
$(function () {
|
|
|
|
$('#storestatuslisting').DataTable({
|
|
"paging": true,
|
|
"lengthChange": true,
|
|
"searching": true,
|
|
"ordering": true,
|
|
"info": true,
|
|
"autoWidth": false
|
|
});
|
|
});
|
|
</script>
|