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.
@@ -4,3 +4,4 @@ export declare const conveyanceFixed1600Rule: Rule;
4
4
  export declare const conveyanceDaily23Rule: Rule;
5
5
  export declare const conveyanceDaily75Rule: Rule;
6
6
  export declare const conveyanceDailyRateRule: Rule;
7
+ export declare const conveyanceFixed1980Rule: Rule;
@@ -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
+ };
@@ -5,3 +5,4 @@ export declare const mobileAllowanceRuleTierB: Rule;
5
5
  export declare const mobileAllowanceMonthlyProratedRule: Rule;
6
6
  export declare const mobileAllowaceTierC: Rule;
7
7
  export declare const mobileAllowaceTierD: Rule;
8
+ export declare const mobileAllowanceTierARule: Rule;
@@ -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
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "payroll-rules-india",
3
- "version": "2.12.4",
3
+ "version": "2.12.6",
4
4
  "description": "Custom and statutory payroll rules engine for India salary calculations.",
5
5
  "author": "Yogesh c",
6
6
  "license": "MIT",