+
+
+
+
+ 'Select Request Type');
+ //print_r( $options);
+
+ if(!empty($RequestType))
+ {
+ foreach ($RequestType as $RID):
+
+
+ $options[$RID->ConfigValue] = $RID->ConfigValue;
+
+ endforeach;
+ }
+
+ echo form_dropdown('RequestType', $options,set_value('ConfigValue'),'id="RequestType"' ,'class = "form-control select2"','required="true"','disabled=disabled');
+
+ ?>
+
+
+
+
+
+
+ 'Select Requested By');
+ //print_r( $options);
+
+ if(!empty($EmpList))
+ {
+ foreach ($EmpList as $EID):
+
+
+ $options[$EID->EmpID] = $EID->EmpID.' '.' - '.' '.$EID->FirstName.' . '.' '.$EID->LastName;
+
+ endforeach;
+ }
+
+ echo form_dropdown('EmpID', $options,set_value('EmpID'),'id="EmpID"' ,'class = "form-control"','disabled=disabled');
+
+
+ ?>
+
+
+
+
+
+
+ 'DeptName','value' => set_value('DeptName'),'id'=>'DeptName', 'class' => 'form-control' ,'readonly' => 'true');
+ echo form_input($data);
+ ?>
+
+
+
+
+
+ 'Designation','value' => set_value('Designation'),'id'=>'Designation', 'class' => 'form-control' ,'readonly' => 'true');
+ echo form_input($data);
+ ?>
+
+
+
+
+
+
+
+ 'Select Cost Center Name');
+ //print_r( $options);
+
+ if(!empty($Cost))
+ {
+ foreach ($Cost as $SID):
+ // echo $SID->ConfigValue;
+ $Budget[$SID->CostCenterCode] = $SID->CostCenterCode;
+
+ endforeach;
+
+ }
+ echo form_dropdown('CostCenter', $options,set_value('CostCenter'),'id="CostCenter"' ,'class = "form-control"', 'disabled=disabled');
+
+ ?>
+
+
+
+
+
+
+ 'AvlBudgetAmount','value' => set_value('AvlBudgetAmount'),'id'=>'AvlBudgetAmount', 'class' => 'form-control' ,'readonly' => 'true');
+ echo form_input($data);
+ ?>
+
+
+
+