UI issue fixed in IGR and RequisitionForm
This commit is contained in:
parent
5b2014048b
commit
b634790dc1
@ -105,7 +105,7 @@ Inputmask("A{2,3} 9{1,2} A{1,2} 9{4}").mask($("#VehicleNo"));
|
||||
|
||||
|
||||
<div class="col-md-2">
|
||||
<label>Delivery Challan/Invoice No</label>
|
||||
<label>Delivery Challan/Inv No</label>
|
||||
<?php
|
||||
$data = array('name' => 'InvoiceNo','value' => set_value('InvoiceNo'),'id'=>'InvoiceNo', 'class' => 'form-control', 'required=>"true"','onkeypress'=>'return isNumberKey(event);' );
|
||||
|
||||
@ -113,7 +113,7 @@ Inputmask("A{2,3} 9{1,2} A{1,2} 9{4}").mask($("#VehicleNo"));
|
||||
?>
|
||||
</div>
|
||||
<div class="col-md-2">
|
||||
<label>Delivery Challan/Invoice Date</label>
|
||||
<label>Delivery Challan/Inv Date</label>
|
||||
<?php
|
||||
$data = array('name' => 'InvoiceDate','value' => set_value('InvoiceDate'),'id'=>'InvoiceDate', 'class' => 'form-control num', 'required'=>'true' );
|
||||
echo form_input($data);
|
||||
|
||||
@ -21,13 +21,17 @@ if(!empty($Emp))
|
||||
{
|
||||
width: 100% ! important;
|
||||
}
|
||||
.num{
|
||||
text-align:right;
|
||||
}
|
||||
</style>
|
||||
|
||||
<div class="content-wrapper" style="min-height:537px;">
|
||||
|
||||
|
||||
|
||||
<section class="content">
|
||||
|
||||
|
||||
<center><b><h2>Siddharth Industries - Requisition Form</h2></b></center>
|
||||
<div class="container-fluid">
|
||||
<div id="content"></div>
|
||||
@ -115,10 +119,10 @@ if(!empty($Emp))
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-2">
|
||||
<label>Available Budget Amount</label> <img id="AlertImg" src="<?php echo base_url(); ?>assets/dist/img/red.png" alt="your image" width="25px" style="display:none"/>
|
||||
<label>Available Budget Amt</label> <img id="AlertImg" src="<?php echo base_url(); ?>assets/dist/img/red.png" alt="your image" width="15px" style="display:none"/>
|
||||
<div class="form-group">
|
||||
<?php
|
||||
$data = array('name' => 'AvlBudgetAmount','value' => set_value('AvlBudgetAmount'),'id'=>'AvlBudgetAmount', 'class' => 'form-control' ,'readonly' => 'true');
|
||||
$data = array('name' => 'AvlBudgetAmount','value' => set_value('AvlBudgetAmount'),'id'=>'AvlBudgetAmount', 'class' => 'form-control num' ,'readonly' => 'true');
|
||||
echo form_input($data);
|
||||
?>
|
||||
</div>
|
||||
@ -127,7 +131,7 @@ if(!empty($Emp))
|
||||
<div class="col-md-12">
|
||||
|
||||
<div class="col-md-2" id="DisplayScheduleDiv" style="display:none;">
|
||||
<label>Select Service Schedule Type</label>
|
||||
<label>Service Schedule Type</label>
|
||||
<div class="form-group">
|
||||
<?php
|
||||
$Schdule =array("One Time", "Recurring");
|
||||
@ -148,7 +152,7 @@ if(!empty($Emp))
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-2" id="ServicePeriodOption" style="display:none;">
|
||||
<label>Select Service Period Option</label>
|
||||
<label>Service Period Option</label>
|
||||
<div class="form-group">
|
||||
<?php
|
||||
|
||||
@ -173,7 +177,7 @@ if(!empty($Emp))
|
||||
<div class="form-group">
|
||||
<?php
|
||||
|
||||
$data = array('name' => 'ServiceNo','value' => set_value('ServiceNo'),'id'=>'ServiceNo', 'class' => 'form-control' ,'onkeypress'=>'return isNumberKey(event);');
|
||||
$data = array('name' => 'ServiceNo','value' => set_value('ServiceNo'),'id'=>'ServiceNo', 'class' => 'form-control num' ,'onkeypress'=>'return isNumberKey(event);');
|
||||
echo form_input($data);
|
||||
?>
|
||||
</div>
|
||||
@ -200,7 +204,7 @@ if(!empty($Emp))
|
||||
|
||||
<!-- Modal content-->
|
||||
<div class="modal-content">
|
||||
<div class="modal-header" style="background-color: #3c8dbc;">
|
||||
<div class="modal-header" style="background-color: #3c8dbc;color:#fff;">
|
||||
<button type="button" class="close" data-dismiss="modal">×</button>
|
||||
<center><h4>Add Line Item </h4></center>
|
||||
</div>
|
||||
@ -252,7 +256,7 @@ if(!empty($Emp))
|
||||
<label>Quantity</label>
|
||||
<div class="form-group">
|
||||
<?php
|
||||
$data = array('name' => 'Quantity','value' => set_value('Quantity'),'id'=>'Quantity', 'class' => 'form-control' ,'onkeypress'=>'return isNumberKey(event)','maxlength'=>'20');
|
||||
$data = array('name' => 'Quantity','value' => set_value('Quantity'),'id'=>'Quantity', 'class' => 'form-control num' ,'onkeypress'=>'return isNumberKey(event)','maxlength'=>'20');
|
||||
echo form_input($data);
|
||||
?>
|
||||
</div>
|
||||
@ -262,7 +266,7 @@ if(!empty($Emp))
|
||||
</div>
|
||||
|
||||
<div class="modal-footer">
|
||||
<a class="btn btn-primary font addClick" ID="addClick" ><i class="fa fa-plus"></i> <span class="bold">Add</span></a>
|
||||
<a class="btn btn-primary font addClick" ID="addClick" ><span class="bold">Add</span></a>
|
||||
<a class="btn btn-primary" data-dismiss="modal" value="Cancel">cancel</a>
|
||||
</div>
|
||||
</div>
|
||||
@ -276,7 +280,7 @@ if(!empty($Emp))
|
||||
|
||||
<!-- Modal content-->
|
||||
<div class="modal-content">
|
||||
<div class="modal-header" style="background-color: #3c8dbc;">
|
||||
<div class="modal-header" style="background-color: #3c8dbc;color:#fff;">
|
||||
<button type="button" class="close" data-dismiss="modal">×</button>
|
||||
<center><h4>Edit Line Item </h4></center>
|
||||
</div>
|
||||
@ -315,7 +319,7 @@ if(!empty($Emp))
|
||||
<label>Quantity</label>
|
||||
<div class="form-group">
|
||||
<?php
|
||||
$data = array('name' => 'EditQuantity','value' => set_value('EditQuantity'),'id'=>'EditQuantity', 'class' => 'form-control','onkeypress'=>'return isNumberKey(event)','maxlength'=>'20');
|
||||
$data = array('name' => 'EditQuantity','value' => set_value('EditQuantity'),'id'=>'EditQuantity', 'class' => 'form-control num','onkeypress'=>'return isNumberKey(event)','maxlength'=>'20');
|
||||
echo form_input($data);
|
||||
?>
|
||||
</div>
|
||||
@ -325,7 +329,7 @@ if(!empty($Emp))
|
||||
</div>
|
||||
|
||||
<div class="modal-footer">
|
||||
<a class="btn btn-primary font EditClick" ID="EditClick" ><i class="fa fa-plus"></i> <span class="bold">Edit</span></a>
|
||||
<a class="btn btn-primary font EditClick" ID="EditClick" ><span class="bold">Edit</span></a>
|
||||
<a class="btn btn-primary" data-dismiss="modal" value="Cancel">Cancel</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
0
uploads/images/no_pic.png
Normal file → Executable file
0
uploads/images/no_pic.png
Normal file → Executable file
|
Before Width: | Height: | Size: 9.9 KiB After Width: | Height: | Size: 9.9 KiB |
Loading…
Reference in New Issue
Block a user