payroll-rules-india 1.0.1 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -9,3 +9,14 @@ export const esiRule = {
|
|
|
9
9
|
monthlyFormula: "round(gross * 0.0075, 2)",
|
|
10
10
|
annualFormula: "round(gross * 0.0075 * 12, 2)",
|
|
11
11
|
};
|
|
12
|
+
export const ESI_Employee_On_Basic = {
|
|
13
|
+
ruleCode: "ESI_EMP_BASIC",
|
|
14
|
+
name: "ESI Employee on Basic",
|
|
15
|
+
category: "Deduction",
|
|
16
|
+
type: "Custom",
|
|
17
|
+
version: "FY2024-2025",
|
|
18
|
+
description: "Employee ESI @ 0.75% calculated on Basic (non-statutory custom model)",
|
|
19
|
+
condition: "basic > 0",
|
|
20
|
+
monthlyFormula: "round(basic * 0.0075, 2)",
|
|
21
|
+
annualFormula: "round(basic * 0.0075 * 12, 2)",
|
|
22
|
+
};
|
|
@@ -10,6 +10,17 @@ export const uniformAllowanceHSWRule = {
|
|
|
10
10
|
monthlyFormula: "round(60.63 * payableDays, 2)",
|
|
11
11
|
annualFormula: "round(60.63 * payableDays * 12, 2)",
|
|
12
12
|
};
|
|
13
|
+
export const uniformAllowanceRule = {
|
|
14
|
+
ruleCode: "UNIFORM_ALLOWANCE_HSW",
|
|
15
|
+
name: "Uniform Allowance - HSW",
|
|
16
|
+
category: "Earning",
|
|
17
|
+
type: "Custom",
|
|
18
|
+
version: "FY2024-2025",
|
|
19
|
+
description: "Uniform Allowance = Rs. 65.00/- * payable days (worked days)",
|
|
20
|
+
condition: "payableDays > 0 && employeeCategory === 'HSW'",
|
|
21
|
+
monthlyFormula: "round(65 * payableDays, 2)",
|
|
22
|
+
annualFormula: "round(65 * payableDays * 12, 2)",
|
|
23
|
+
};
|
|
13
24
|
// Uniform Allowance - SW: Rs. 45.76/- * payable days
|
|
14
25
|
export const uniformAllowanceSWRule = {
|
|
15
26
|
ruleCode: "UNIFORM_ALLOWANCE_SW",
|