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.
@@ -1,3 +1,4 @@
1
1
  import { Rule } from "../../utils/types";
2
2
  export declare const specialAllowanceRule: Rule;
3
3
  export declare const specialAllowanceDailyRule: Rule;
4
+ export declare const specialAllowanceTierARule: Rule;
@@ -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
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "payroll-rules-india",
3
- "version": "2.12.6",
3
+ "version": "2.12.7",
4
4
  "description": "Custom and statutory payroll rules engine for India salary calculations.",
5
5
  "author": "Yogesh c",
6
6
  "license": "MIT",