=================* for html-pdf-node NPM *================= sudo apt-get install libfontconfig export OPENSSL_CONF=/dev/null if not done go to /etc/ssl/ open openssl.cnf and comment the following lines providers = provider_sect ssl_conf = ssl_sect export OPENSSL_CONF=/etc/ssl/ ============================================================================== --- generateSalary---- *Taking year, month and company_id id body *Getting dates array line ['2025-01-01','2025-01-02',...,'2025-01-31'] for given month year. *Checking if given month greter than current month then showing "Salary could not be generated for future months". *Getting Published Denied users *'getActiveUsers' - Getting List of 'Active' users with data that are required to show in payslip and other places. *Looping with active users to process each user's data. *Inside loop item is the object to hold particular user's data and we are using object's reference to pass this objects to another functons and updating accordingly. *If we found user in publish_denied_users list then we are setting a key is_publish_denied to 1 else 0. So that is front end that user can be markes as publish denied and publish button will not be shown. *Calculating total_days which represent total workable days for the month of that particular employee based on joining and release date. *'getSalaryByUser' - getting salary details of the employee if salary for that employee already generated it will return data in resSalary object with status 1. Data is formatted with the already generated salary details and leaves details. And we are changing whole item to refer to the returned formatted object. else We are going to else part for generating salary for that employee for that month. *We are getting timesheet_status for that employee by executing listEmployeeTimesheetStatusByUser. *'getLeaveOnlateComingReGenerate' - Getting leave deduction on attendance issues and any sandwitch leaves. *Previously i.e. before 31-08-2024, leave on attendace was adjusted with the employee's leave balances using 'deductLateCommingFromBalances' function *Getting leave balances for that employee to get total leave taken and balances using 'getLeaveBalance'. If no records found it is setting default 0. * calculating total_days, days_present, salary_paid_for, salary_deducted_for, leave_encashment_days base on leave balance *'getSalaryDetails' - getting salary confirguration for the month based on effective from and if there are multiple configuration in the month then also calculating salary on the basis of the multiple configuration and returning head amounts. *if it is last month salary or has relase day in the month then calculating leave encashment days based on leave balances in the 'calculateLeaveEncashment'. *'calculateLeaveDeduction' - calculating salary deduction based on user, month, year, employee status, lastMonthFlag and by checking probation end date and month's last date. *recalculating salary_paid_for and salary_deducted_for days. *looping through expense heads and calcuating tds and loan amount if applicable. *'calculateSalaryHeads' - calculating salary heads based on salary_paid_for days and salary configuration. And also on multiple configguration. *'addSalary' - Inserting generated salary data in the tables. *'updateNextMonthLeaveBalance' - updating next month leave balances. *'getAllLeaveBalance' - getting category wise leave balances. ============================================================================