payroll-rules-india 1.7.1 → 1.7.2
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.
|
@@ -11,12 +11,12 @@ export const uniformAllowanceHSWRule = {
|
|
|
11
11
|
annualFormula: "round(60.63 * payableDays * 12, 2)",
|
|
12
12
|
};
|
|
13
13
|
export const uniformAllowanceRule = {
|
|
14
|
-
ruleCode: "
|
|
15
|
-
name: "Uniform Allowance - custom",
|
|
14
|
+
ruleCode: "UNIFORM_ALLOWANCE_CUSTOM",
|
|
15
|
+
name: "Uniform Allowance - custom(HSW)",
|
|
16
16
|
category: "Earning",
|
|
17
17
|
type: "Custom",
|
|
18
18
|
version: "FY2024-2025",
|
|
19
|
-
description: "Uniform Allowance = Rs. 65.00/- * payable days (worked days)",
|
|
19
|
+
description: "ONLY FOR HSW Uniform Allowance = Rs. 65.00/- * payable days (worked days)",
|
|
20
20
|
condition: "payableDays > 0 && employeeCategory === 'HSW'",
|
|
21
21
|
monthlyFormula: "round(65 * payableDays, 2)",
|
|
22
22
|
annualFormula: "round(65 * payableDays * 12, 2)",
|
|
@@ -45,3 +45,14 @@ export const uniformAllowanceSSWRule = {
|
|
|
45
45
|
monthlyFormula: "round(38.90 * payableDays, 2)",
|
|
46
46
|
annualFormula: "round(38.90 * payableDays * 12, 2)",
|
|
47
47
|
};
|
|
48
|
+
export const uniformAllowanceRuleForAll = {
|
|
49
|
+
ruleCode: "UNIFORM_ALLOWANCE_CUSTOM_ALL",
|
|
50
|
+
name: "Uniform Allowance - custom",
|
|
51
|
+
category: "Earning",
|
|
52
|
+
type: "Custom",
|
|
53
|
+
version: "FY2024-2025",
|
|
54
|
+
description: "General Uniform Allowance = Rs. 65.00/- * payable days (worked days)",
|
|
55
|
+
condition: "payableDays > 0",
|
|
56
|
+
monthlyFormula: "round(65 * payableDays, 2)",
|
|
57
|
+
annualFormula: "round(65 * payableDays * 12, 2)",
|
|
58
|
+
};
|