payroll-rules-india 2.12.2 → 2.12.4
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.
- package/dist/rules/fy2024_2025/esiRules.d.ts +1 -1
- package/dist/rules/fy2024_2025/esiRules.js +9 -9
- package/dist/rules/fy2024_2025/leaveAllowanceRules.d.ts +1 -0
- package/dist/rules/fy2024_2025/leaveAllowanceRules.js +11 -0
- package/dist/rules/fy2024_2025/otherAllowanceRules.js +1 -1
- package/dist/rules/fy2024_2025/pfRules.d.ts +1 -0
- package/dist/rules/fy2024_2025/pfRules.js +11 -0
- package/package.json +1 -1
|
@@ -3,4 +3,4 @@ export declare const esiRule: Rule;
|
|
|
3
3
|
export declare const ESI_Employee_On_Basic: Rule;
|
|
4
4
|
export declare const ESIRuleOnBasic: Rule;
|
|
5
5
|
export declare const ESI_Employee_On_BasicPlusDA: Rule;
|
|
6
|
-
export declare const
|
|
6
|
+
export declare const CONSTANTZEROESI: Rule;
|
|
@@ -41,14 +41,14 @@ export const ESI_Employee_On_BasicPlusDA = {
|
|
|
41
41
|
monthlyFormula: "round(basicPlusDA * 0.0075, 2)",
|
|
42
42
|
annualFormula: "round(basicPlusDA * 0.0075 * 12, 2)",
|
|
43
43
|
};
|
|
44
|
-
export const
|
|
45
|
-
ruleCode: "
|
|
46
|
-
name: "
|
|
47
|
-
category: "
|
|
48
|
-
type: "
|
|
44
|
+
export const CONSTANTZEROESI = {
|
|
45
|
+
ruleCode: "FIXED_ZERO_ESI",
|
|
46
|
+
name: "ESI Employee Fixed to Zero",
|
|
47
|
+
category: "Deduction",
|
|
48
|
+
type: "Statutory",
|
|
49
49
|
version: "FY2024-2025",
|
|
50
|
-
description: "
|
|
51
|
-
condition: "
|
|
52
|
-
monthlyFormula: "
|
|
53
|
-
annualFormula: "
|
|
50
|
+
description: "Employee ESI Fixed to 0",
|
|
51
|
+
condition: "true",
|
|
52
|
+
monthlyFormula: "0",
|
|
53
|
+
annualFormula: "0",
|
|
54
54
|
};
|
|
@@ -22,3 +22,14 @@ export const leaveBasic4_8Rule = {
|
|
|
22
22
|
monthlyFormula: "round(basic * 0.048, 2)",
|
|
23
23
|
annualFormula: "round(basic * 0.048 * 12, 2)",
|
|
24
24
|
};
|
|
25
|
+
export const leaveAllowanceBasicPlusDARule = {
|
|
26
|
+
ruleCode: "LEAVE_ALLOWANCE",
|
|
27
|
+
name: "Leave Allowance - 5% of Basic + DA",
|
|
28
|
+
category: "Earning",
|
|
29
|
+
type: "Custom",
|
|
30
|
+
version: "FY2024-2025",
|
|
31
|
+
description: "Leave Allowance = 5% of (Basic + DA)",
|
|
32
|
+
condition: "basicPlusDA > 0",
|
|
33
|
+
monthlyFormula: "round(basicPlusDA * 0.05, 0)",
|
|
34
|
+
annualFormula: "round(basicPlusDA * 0.05 * 12, 0)",
|
|
35
|
+
};
|
|
@@ -5,7 +5,7 @@ export const otherAllowanceRule = {
|
|
|
5
5
|
category: "Earning",
|
|
6
6
|
type: "Custom",
|
|
7
7
|
version: "FY2024-2025",
|
|
8
|
-
description: "Other Allowance = IF(
|
|
8
|
+
description: "Other Allowance = IF(payableDays > 20, 2000, ROUND((2000/26) * payableDays, 0))",
|
|
9
9
|
condition: "payableDays > 0",
|
|
10
10
|
monthlyFormula: "round(payableDays > 20 ? 2000 : ((2000 / 26) * payableDays), 0)",
|
|
11
11
|
annualFormula: "round((payableDays > 20 ? 2000 : ((2000 / 26) * payableDays)) * 12, 0)",
|
|
@@ -32,3 +32,14 @@ export const employeePfBasicRule = {
|
|
|
32
32
|
monthlyFormula: "round(basic * 0.12, 0)",
|
|
33
33
|
annualFormula: "round(basic * 0.12, 0) * 12",
|
|
34
34
|
};
|
|
35
|
+
export const CONSTANTZEROPF = {
|
|
36
|
+
ruleCode: "FIXED_ZERO_PF",
|
|
37
|
+
name: "PF Employee Fixed to Zero",
|
|
38
|
+
category: "Deduction",
|
|
39
|
+
type: "Statutory",
|
|
40
|
+
version: "FY2024-2025",
|
|
41
|
+
description: "Employee PF Fixed to 0",
|
|
42
|
+
condition: "true",
|
|
43
|
+
monthlyFormula: "0",
|
|
44
|
+
annualFormula: "0",
|
|
45
|
+
};
|