EmpID; $FirstName = $Emp->FirstName; $Designation = $Emp->Designation; $DepartmentName = $Emp->DepartmentName; } } ?>
'form-label-left requistion ', 'name' => 'requistion', 'id' => 'requistion'); echo form_open(base_url() . 'Requisitionform::SearchRequistList', $attributes); ?>
'Select Requested By'); if (!empty($RequestBy)) { foreach ($RequestBy as $EID) : $RequestByOpt[$EID->EmpID] = $EID->Full_Name; endforeach; } echo form_dropdown('EmpID', $RequestByOpt, set_value('EmpID'), 'id="EmpID" class = "form-control searchabledropdown" data-toggle="select2" required="true"'); ?>
'Select Request Type'); 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 searchabledropdown" data-toggle="select2"', 'required="true"'); ?>
'DeptName', 'value' => set_value('DeptName', $DepartmentName), 'id' => 'DeptName', 'class' => 'form-control', 'readonly' => 'true'); echo form_input($data); ?>
'Designation', 'value' => set_value('Designation', $Designation), 'id' => 'Designation', 'class' => 'form-control', 'readonly' => 'true'); echo form_input($data); ?>
'Select Cost Center Name'); if (!empty($CostCenter)) { foreach ($CostCenter as $SID) : $Costs[$SID->CostCenterCode] = $SID->CostCenterCode . '-' . $SID->CostCenterName; endforeach; } echo form_dropdown( 'CostCenter', $Costs, set_value('CostCenter'), 'class="form-control searchabledropdown" id="CostCenter" data-toggle="select2"' ); ?>
SNo Material Code Material Name Uom Quantity Action
'ServiceNo', 'value' => set_value('ServiceNo'), 'id' => 'ServiceNo', 'class' => 'form-control num', 'onkeypress' => 'return isNumberKey(event);'); echo form_hidden($data); ?>
ConfigValue] = $SerOption->ConfigValue; endforeach; } echo form_dropdown('ServiceOptions', $ServiceOptions, set_value('ServiceOptions'), 'id="ServiceOptions"', 'class = "form-control searchabledropdown"', 'data-toggle="select2"'); ?>