payroll-rules-india 1.7.2 → 1.9.0
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,6 +10,17 @@ export const rbBasic4_81Rule = {
|
|
|
10
10
|
monthlyFormula: "round(basic * 0.0481, 2)",
|
|
11
11
|
annualFormula: "round(basic * 0.0481 * 12, 2)",
|
|
12
12
|
};
|
|
13
|
+
export const rbEarningRule492 = {
|
|
14
|
+
ruleCode: "RB_4_92_PERCENT",
|
|
15
|
+
name: "RB Allowance",
|
|
16
|
+
category: "Earning",
|
|
17
|
+
type: "Custom",
|
|
18
|
+
version: "FY2024-2025",
|
|
19
|
+
description: "Retention Bonus = Basic * 4.92%",
|
|
20
|
+
condition: "basic > 0",
|
|
21
|
+
monthlyFormula: "round(basic * 0.0492, 2)",
|
|
22
|
+
annualFormula: "round(basic * 0.0492 * 12, 2)",
|
|
23
|
+
};
|
|
13
24
|
// RB: Basic * 5%
|
|
14
25
|
export const rbBasic5Rule = {
|
|
15
26
|
ruleCode: "RB_BASIC_5",
|