payroll-rules-india 1.0.2 → 1.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.
|
@@ -10,3 +10,15 @@ export const shiftAllowanceRule = {
|
|
|
10
10
|
monthlyFormula: "round(payableDays * 17.16, 2)",
|
|
11
11
|
annualFormula: "round(payableDays * 17.16 * 12, 2)",
|
|
12
12
|
};
|
|
13
|
+
// Shift Allowance: payable days * 11.50 rupee per day
|
|
14
|
+
export const shiftAllowanceRuleNew = {
|
|
15
|
+
ruleCode: "SHIFT_ALLOWANCE",
|
|
16
|
+
name: "Shift Allowance",
|
|
17
|
+
category: "Earning",
|
|
18
|
+
type: "Custom",
|
|
19
|
+
version: "FY2024-2025",
|
|
20
|
+
description: "Shift Allowance = payable days * 11.50 rupee per day",
|
|
21
|
+
condition: "payableDays > 0",
|
|
22
|
+
monthlyFormula: "round(payableDays * 11.50, 2)",
|
|
23
|
+
annualFormula: "round(payableDays * 11.50 * 12, 2)",
|
|
24
|
+
};
|
|
@@ -10,6 +10,17 @@ export const uniformAllowanceHSWRule = {
|
|
|
10
10
|
monthlyFormula: "round(60.63 * payableDays, 2)",
|
|
11
11
|
annualFormula: "round(60.63 * payableDays * 12, 2)",
|
|
12
12
|
};
|
|
13
|
+
export const uniformAllowanceRule = {
|
|
14
|
+
ruleCode: "UNIFORM_ALLOWANCE_HSW",
|
|
15
|
+
name: "Uniform Allowance - HSW",
|
|
16
|
+
category: "Earning",
|
|
17
|
+
type: "Custom",
|
|
18
|
+
version: "FY2024-2025",
|
|
19
|
+
description: "Uniform Allowance = Rs. 65.00/- * payable days (worked days)",
|
|
20
|
+
condition: "payableDays > 0 && employeeCategory === 'HSW'",
|
|
21
|
+
monthlyFormula: "round(65 * payableDays, 2)",
|
|
22
|
+
annualFormula: "round(65 * payableDays * 12, 2)",
|
|
23
|
+
};
|
|
13
24
|
// Uniform Allowance - SW: Rs. 45.76/- * payable days
|
|
14
25
|
export const uniformAllowanceSWRule = {
|
|
15
26
|
ruleCode: "UNIFORM_ALLOWANCE_SW",
|