payroll-rules-india 2.0.2 → 2.0.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.
@@ -27,7 +27,6 @@ export * from "./washingAllowanceRules";
27
27
  export * from "./uniformAllowanceRules";
28
28
  export * from "./safetyAllowanceRules";
29
29
  export * from "./emergencyAllowance";
30
- export * from "./emergencyAllowance";
31
30
  export * from "./acChargesRule";
32
31
  export * from "./geyserAllowance";
33
32
  export * from "./quarterRentRules";
@@ -27,7 +27,6 @@ export * from "./washingAllowanceRules";
27
27
  export * from "./uniformAllowanceRules";
28
28
  export * from "./safetyAllowanceRules";
29
29
  export * from "./emergencyAllowance";
30
- export * from "./emergencyAllowance";
31
30
  export * from "./acChargesRule";
32
31
  export * from "./geyserAllowance";
33
32
  export * from "./quarterRentRules";
@@ -7,4 +7,5 @@ export const localAllowanceRule = {
7
7
  description: "Local allowance calculated on a pro-rata basis at Rs.1800 per month divided by 26 working days.",
8
8
  condition: "payableDays > 0",
9
9
  monthlyFormula: "round((1800 / 26) * payableDays, 0)",
10
+ annualFormula: "round(((1800 / 26) * payableDays) * 12, 0)",
10
11
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "payroll-rules-india",
3
- "version": "2.0.2",
3
+ "version": "2.0.4",
4
4
  "description": "Custom and statutory payroll rules engine for India salary calculations.",
5
5
  "author": "Yogesh c",
6
6
  "license": "MIT",