'Added'
This commit is contained in:
parent
c14197ac33
commit
156ec555bc
@ -29,70 +29,12 @@
|
||||
<center><b><h2> Siddharth Industries - Create Purchase Order from Requistion </h2></b></center><br/><br/>
|
||||
<div class="container-fluid">
|
||||
<div id="content"></div>
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<div class="col-md-3">
|
||||
<label>Select Department Name</label>
|
||||
<div>
|
||||
<?php
|
||||
$options = array("0"=>'Select Department Name');
|
||||
//print_r( $options);
|
||||
|
||||
if(!empty($DeptList))
|
||||
{
|
||||
foreach ($DeptList as $DID):
|
||||
|
||||
|
||||
$options[$DID->DEPCode] = $DID->DEPCode.' '.' - '.' '.$DID->DepartmentName;
|
||||
|
||||
endforeach;
|
||||
}
|
||||
|
||||
echo form_dropdown('drpDepartment', $options,set_value('drpDepartment'),'id="drpDepartment"' ,'class = "form-control required"','required="true"');
|
||||
|
||||
?>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-3">
|
||||
<label>Requested Status</label>
|
||||
<div>
|
||||
<?php
|
||||
$StList = array("0"=>'Select Requistion Status');
|
||||
//print_r( $options);
|
||||
|
||||
if(!empty($stList))
|
||||
{
|
||||
foreach ($stList as $SID):
|
||||
$StList[$SID->StatusCode] = $SID->StatusCode.' '.' - '.' '.$SID->StatusName;
|
||||
endforeach;
|
||||
}
|
||||
|
||||
echo form_dropdown('drpstatus', $StList,set_value('drpstatus'),'id="drpstatus"' ,'class = "form-control required"','required="true"');
|
||||
|
||||
?>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-md-3">
|
||||
<!-- Date range -->
|
||||
<div class="form-group">
|
||||
<label>Requested Date range:</label>
|
||||
|
||||
<div class="input-group">
|
||||
<div class="input-group-addon">
|
||||
<i class="fa fa-calendar"></i>
|
||||
</div>
|
||||
<input type="text" class="form-control pull-right" id="ReqDate" name="ReqDate" >
|
||||
</div>
|
||||
<!-- /.input group -->
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
|
||||
<div class="col-md-3" >
|
||||
<br/>
|
||||
<a class="btn btn-primary" onclick="Search()" >Search</a>
|
||||
<a class="btn btn-primary" onclick="Reset()" >Clear</a>
|
||||
|
||||
|
||||
<p>
|
||||
<div align="right" style="padding-right:10px">
|
||||
<!--<a href="<?php echo base_url(); ?>purchaseorderform/purchaseorder">
|
||||
|
||||
Loading…
Reference in New Issue
Block a user