-
-
- '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"');
-
- ?>
-
-
-
-
-
- '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"');
-
- ?>
-
-
-