payroll-rules-india 2.12.6 → 2.12.7
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.
|
@@ -20,3 +20,15 @@ export const specialAllowanceDailyRule = {
|
|
|
20
20
|
monthlyFormula: "round(22 * payableDays, 2)",
|
|
21
21
|
annualFormula: "round(22 * payableDays * 12, 2)",
|
|
22
22
|
};
|
|
23
|
+
// Special Allowance: 22 rupees per day * worked days
|
|
24
|
+
export const specialAllowanceTierARule = {
|
|
25
|
+
ruleCode: "SPECIAL_ALLOWANCE_TIER_A",
|
|
26
|
+
name: "Special Allowance - Tier A",
|
|
27
|
+
category: "Earning",
|
|
28
|
+
type: "Custom",
|
|
29
|
+
version: "FY2024-2025",
|
|
30
|
+
description: "Special Allowance = 5.41 rupees per day * worked days (payable days)",
|
|
31
|
+
condition: "payableDays > 0",
|
|
32
|
+
monthlyFormula: "round(5.41 * payableDays, 2)",
|
|
33
|
+
annualFormula: "round(5.41 * payableDays * 12, 2)",
|
|
34
|
+
};
|