payroll-rules-india 2.12.4 → 2.12.6
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/conveyanceAllowanceRules.d.ts +1 -0
- package/dist/rules/fy2024_2025/conveyanceAllowanceRules.js +11 -0
- package/dist/rules/fy2024_2025/mobileAllowanceRules.d.ts +1 -0
- package/dist/rules/fy2024_2025/mobileAllowanceRules.js +11 -0
- package/dist/rules/fy2024_2025/washingAllowanceRules.d.ts +1 -0
- package/dist/rules/fy2024_2025/washingAllowanceRules.js +11 -0
- package/package.json +1 -1
|
@@ -57,3 +57,14 @@ export const conveyanceDailyRateRule = {
|
|
|
57
57
|
monthlyFormula: "round(payableDays * 31.255, 2)",
|
|
58
58
|
annualFormula: "round(payableDays * 31.255, 2)",
|
|
59
59
|
};
|
|
60
|
+
export const conveyanceFixed1980Rule = {
|
|
61
|
+
ruleCode: "CONVEYANCE_FIXED_1980",
|
|
62
|
+
name: "Conveyance Allowance - Fixed ₹1980",
|
|
63
|
+
category: "Earning",
|
|
64
|
+
type: "Custom",
|
|
65
|
+
version: "FY2024-2025",
|
|
66
|
+
description: "Conveyance Allowance = (1980 rupees / no. of working days in month) * payable days",
|
|
67
|
+
condition: "workingDaysInMonth > 0 && payableDays > 0",
|
|
68
|
+
monthlyFormula: "round((1980 / workingDaysInMonth) * payableDays, 2)",
|
|
69
|
+
annualFormula: "round(((1980 / workingDaysInMonth) * payableDays) * 12, 2)",
|
|
70
|
+
};
|
|
@@ -66,3 +66,14 @@ export const mobileAllowaceTierD = {
|
|
|
66
66
|
monthlyFormula: "round(56.94 * payableDays, 2)",
|
|
67
67
|
annualFormula: "round(56.94 * payableDays, 2)",
|
|
68
68
|
};
|
|
69
|
+
export const mobileAllowanceTierARule = {
|
|
70
|
+
ruleCode: "MOBILE_ALLOWANCE_TIER_A",
|
|
71
|
+
name: "Mobile Allowance TIER A",
|
|
72
|
+
category: "Earning",
|
|
73
|
+
type: "Custom",
|
|
74
|
+
version: "FY2024-2025",
|
|
75
|
+
description: "Mobile allowance = (550 / workingDaysInMonth) * payableDays",
|
|
76
|
+
condition: "payableDays > 0 && workingDaysInMonth > 0",
|
|
77
|
+
monthlyFormula: "round((550 / workingDaysInMonth) * payableDays, 0)",
|
|
78
|
+
annualFormula: "round((550 / workingDaysInMonth) * payableDays, 0)",
|
|
79
|
+
};
|
|
@@ -9,3 +9,4 @@ export declare const washingAllowanceUSWRuleTierF: Rule;
|
|
|
9
9
|
export declare const washingAllowanceUSWRuleTierG: Rule;
|
|
10
10
|
export declare const washingAllowanceTierH: Rule;
|
|
11
11
|
export declare const washingAllowanceDailyRule: Rule;
|
|
12
|
+
export declare const washingAllowanceTierI: Rule;
|
|
@@ -103,3 +103,14 @@ export const washingAllowanceDailyRule = {
|
|
|
103
103
|
condition: "payableDays > 0",
|
|
104
104
|
monthlyFormula: "round(payableDays * 41, 0)",
|
|
105
105
|
};
|
|
106
|
+
export const washingAllowanceTierI = {
|
|
107
|
+
ruleCode: "WASHING_ALLOWANCE_TIER_I",
|
|
108
|
+
name: "Washing Allowance – Tier I",
|
|
109
|
+
category: "Earning",
|
|
110
|
+
type: "Custom",
|
|
111
|
+
version: "FY2024-2025",
|
|
112
|
+
description: "Washing Allowance = (604 / workingDaysInMonth) * payableDays",
|
|
113
|
+
condition: "payableDays > 0 && workingDaysInMonth > 0",
|
|
114
|
+
monthlyFormula: "round((604 / workingDaysInMonth) * payableDays, 2)",
|
|
115
|
+
annualFormula: "round(((604 / workingDaysInMonth) * payableDays) * 12, 2)",
|
|
116
|
+
};
|