?
Current Path : /home1/savoy/public_html/oscarerp.com/application/views/hr/ |
Linux gator3171.hostgator.com 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 |
Current File : /home1/savoy/public_html/oscarerp.com/application/views/hr/add_employee.php |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); $this->load->view('documentreadyfunctions'); ?> <div class="icons_main"> <div class="icons"> <img src="<?=base_url()?>assets/images/back.png" title="Back" class="clickimage" onclick="viewdata('hr','viewinhrsearch','search_employee','view_employee','<?=$_SESSION['pagenum'];?>')" alt="Back" align = "center" width="32" height="32" /> </div> <div class="icons_caption"> <h4>Creating New Employee</h4> </div> </div> <?php $department=$this->mastermodel->getdatas('department','department_id'); $designation=$this->mastermodel->getdatas('designation','designation_id'); $grade=$this->mastermodel->getdatas('grade','grade_id'); $emploee=$this->mastermodel->getdatas('employee','employee_id','asc','employee_id'); $employee_no=$this->mastermodel->get_employee_number(); $status=$this->mastermodel->getdatas('status','status_id'); $branch=$this->mastermodel->getdatas('branch','branch_id'); $police_certificate=$this->mastermodel->getenumvalues('employee','employee_police_certificate'); $attributes=array('id'=>'validateform','class'=>'validate'); echo form_open('hr/addinhr/insert_employee/view_employee/1',$attributes); ?> <div id="success-panel" ></div> <div class="grid_6"> <div class="box"> <div class="header main">Personal Details </div> <div class="content no-padding"> <div class="section _100"> <label>Employee No</label> <div class="single_page"> <?php $data = array( 'name' => 'employee_no', 'id' => 'employee_no', 'class' =>'required', 'value' => $employee_no, 'readonly' => true ); echo form_input($data).form_error($data); ?> </div> </div> <div class="section _100"> <label>Employee Name</label> <div> <input name="employee_name" id="employee_name" class="required" type="text"> </div> </div> <div class="section _100"> <label>Gender</label> <div> <select name="employee_gender" class="required chzn-done" > <option value="">--Select--</option> <option value="Male">Male</option> <option value="Female">Female</option> </select> </div> </div> <div class="section _100"> <label>Teacher</label> <div> <input id="employee_teacher" type="checkbox" class="" name="employee_teacher"> </div> </div> <div class="section _100"> <label>Date of Birth </label> <div> <input id="employee_dob" type="text" class="calfocus" name="employee_dob"> </div> </div> <div class="section _100"> <label>Nationality </label> <div> <?php $nationality = $this->mastermodel->getdatas('nationality', 'nationality_id'); ?> <select name="employee_nationality_id" type="text" class="required chzn-done" id="employee_nationality_id"> <option value="">Select</option> <?php foreach ($nationality as $list) { ?> <option value="<?= $list['nationality_id']; ?>"><?= $list['nationality_name']; ?></option> <?php } ?> </select> </div> </div> <div class="section _100"> <label>Joining Date</label> <div> <input id="employee_joining_date" type="text" class="calfocus" name="employee_joining_date"> </div> </div> <div class="section _100"> <label>Passport No</label> <div> <input name="employee_passport_no" id="employee_passport_no" type="text" class=""> </div> </div> <div class="section _100"> <label>Passport Expiry Date</label> <div> <input type="text" name="passport_expiry_date" id="passport_expiry_date" class="calfocus"> </div> </div> <div class="section _100"> <label>Visa Type</label> <div> <input name="employee_visa_type" id="employee_visa_type" type="text" class="required"> </div> </div> <div class="section _100"> <label>Resident Visa Expiry Date</label> <div> <input type="text" name="employee_visa_expiry_date" id="employee_visa_expiry_date" class="calfocus"> </div> </div> <div class="section _100"> <label>Labor Card No</label> <div> <input type="text" name="employee_labour_card_no" id="employee_labour_card_no" class=""> </div> </div> <div class="section _100"> <label>Labor Card Expiry Date</label> <div> <input id="employee_labour_card_expiry_date" type="text" class="calfocus" name="employee_labour_card_expiry_date"> </div> </div> <div class="section _100"> <label>Police Certificate</label> <div> <select name="employee_police_certificate" id="employee_police_certificate" class="required chzn-done"> <option value="">Select</option> <?php if (count($police_certificate['val']) > 0) { foreach ($police_certificate['val'] as $method) { echo "<option value='" . $method . "' "; echo ">" . $method . "</option>"; } } ?> </select> </div> </div> <div class="section _100"> <label> Qatar ID No</label> <div> <input type="text" name="employee_qatar_id_no" id="employee_qatar_id_no" class="required"> </div> </div> <div class="section _100"> <label> Medical test expiry date</label> <div> <input id="medical_test_expiry_date" type="text" class="calfocus" name="medical_test_expiry_date"> </div> </div> <div class="section _100"> <label>Employee Device No</label> <div> <?php $data = array( 'name' => 'device_no', 'id' => 'device_no', 'onchange' => "checkexistence('employee','device_no',this.value)" ); echo form_input($data).form_error($data); ?> </div> </div> </div> </div> </div> <div class="grid_6"> <div class="box"> <div class="header main">Employee Details</div> <div class="content no-padding"> <div class="section _100"> <label>Branch</label> <div style="margin:10px 1px;"> <select name="employee_branch_id" id="employee_branch_id" class="required chzn-done"> <option value="">Select</option> <?php foreach($branch as $list) { ?> <option value="<?=$list['branch_id'];?>"><?=$list['branch_name'];?></option> <?php } ?> </select> </div> </div> <div class="section _100"> <label>Designation</label> <div style="margin:10px 1px;"> <select name="employee_designation_id" id="employee_designation_id" class="required chzn-done" > <option value="">Select</option> <?php foreach($designation as $desg) { echo "<option value='". $desg['designation_id'] . "' >" . $desg['designation_name']. "</option>"; } ?> </select> </div> </div> <div class="section _100"> <label>Department</label> <div style="margin:10px 1px;"> <? ?> <select name="employee_department_id" id="employee_department_id" class="required chzn-done" > <option value="">Select</option> <?php foreach($department as $depart) { echo "<option value='". $depart['department_id'] . "' >" . $depart['department_name']. "</option>"; } ?> </select> </div> </div> <div class="section _100"> <label>Grade</label> <div style="margin:10px 1px;"> <select name="employee_grade_id" id="employee_grade_id" class="required chzn-done" > <option value="">Select</option> <?php foreach($grade as $grad) { echo "<option value='". $grad['grade_id'] . "' >" . $grad['grade_name']. "</option>"; } ?> </select> </div> </div> <div class="section _100"> <label>Status</label> <div style="margin:10px 1px;"> <select name="employee_status_id" id="employee_status_id" class="required chzn-done" > <option value="">Select</option> <?php foreach($status as $list) { ?> <option value="<?=$list['status_id'];?>"><?=$list['status_name'];?></option> <?php } ?> </select> </div> </div> <div class="section _100"> <label>Reporting To</label> <div style="margin:10px 1px;"> <select name="employee_reporting_to" id="employee_reporting_to" > <option value="">Select</option> <?php foreach($emploee as $emp) { echo "<option value='". $emp['employee_id'] . "' >" . $emp['employee_name']. "</option>"; } ?> </select> </div> </div> </div> </div> </div> <div class="grid_6"> <div class="box"> <div class="header main">Address Details</div> <div class="content no-padding"> <div class="section _100"> <label>Contact No</label> <div> <input type="text" name="employee_contact_no" id="employee_contact_no" class=""> </div> </div> <div class="section _100"> <label>Mobile No</label> <div> <input type="text" name="employee_mobile_no" id="employee_mobile_no" class=""> </div> </div> <div class="section _100"> <label>Email ID</label> <div> <input type="text" name="employee_email" id="employee_email" class="email"> </div> </div> <div class="section _100"> <label>Local Address</label> <div> <textarea name="employee_local_address" id="employee_local_address"></textarea> </div> </div> <div class="section _100"> <label>Permanent Address</label> <div> <textarea name="employee_permanent_address" id="employee_permanent_address"></textarea> </div> </div> </div> </div> </div> <div class="grid_12"> <div class="box"> <div class="content no-padding"> <div class="header main"> Professional Experience</div> <table class="table"> <tr> <th>Employer</th> <th>Designation</th> <th>Period</th> <th><input type="button" id="button2" value="Add More" class="addRow" title="Add Row" style="width:75px;"/></th> </tr> <tr> <td><input class="w_90" type="text" name="employer" id="employer"/></td> <td><input class="w_90" type="text" name="designation" id="designation"/></td> <td> <input class="w_90" type="text" name="period" id="period"/> </td> <td> <img style="float: right; vertical-align: top;"src="<?=base_url()?>assets/images/icons/close.png" alt="Delete Row" class="delRow clickimage" title="Delete Row"/> </td> </tr> </table> </div> </div> </div> <div class="grid_12"> <div class="box"> <div class="content no-padding"> <div class="header main"> Educational Qualification</div> <table class="table"> <tr> <th>Course</th> <th>University</th> <th>Year of Passing</th> <th><input type="button" id="button2" value="Add More" class="addRow" title="Add Row" style="width:75px;"/></th> </tr> <tr> <td><input class="w_90" type="text" name="course" id="course"/></td> <td><input class="w_90" type="text" name="university" id="university"/></td> <td> <input class="w_90" type="text" name="yearofpassing" id="yearofpassing"/> </td> <td> <img style="float: right; vertical-align: top;"src="<?=base_url()?>assets/images/icons/close.png" alt="Delete Row" class="delRow clickimage" title="Delete Row"/> </td> </tr> </table> </div> </div> </div> <div class="grid_12"> <div class="box"> <div class="content no-padding"> <div class="header main">Additional Certification</div> <table class="table"> <tr> <th>Course</th> <th>Institute</th> <th>Year of Passing</th> <th><input type="button" id="button2" value="Add More" class="addRow" title="Add Row" style="width:75px;"/></th> </tr> <tr> <td><input class="w_90" type="text" name="additional_course" id="additional_course"/></td> <td><input class="w_90" type="text" name="additional_institute" id="additional_institute"/></td> <td> <input class="w_90" type="text" name="additional_yearofpassing" id="additional_yearofpassing"/> </td> <td> <img style="float: right; vertical-align: top;"src="<?=base_url()?>assets/images/icons/close.png" alt="Delete Row" class="delRow clickimage" title="Delete Row"/> </td> </tr> </table> </div> </div> </div> <div class="grid_12"> <div class="box"> <div class="actions"> <div class="actions-left"> <input type="reset"/> </div> <div class="actions-right"> <button type="submit" id="submit" class="clickimage" onclick="addformdata('validateform')">Save</button> </div> </div> </div> </div> <?php echo form_close();?>