Calculate the eligibility and benefits for study leave for higher education as per West Bengal government rules. Get complete information about course duration and salary.
Study Leave Calculator
Enter any study leave already consumed during your entire service career.
`;
return;
}
// 3. Compute Timeline Dates
let startDate = new Date(startInput);
let endDate = new Date(startDate);
// Increment months and days
endDate.setMonth(startDate.getMonth() + proposedMonths);
endDate.setDate(endDate.getDate() + proposedDays);
// If the calculation includes the day itself, subtract 1 day from end date
let formattedEndDate = new Date(endDate);
formattedEndDate.setDate(endDate.getDate() - 1);
let rejoiningDate = new Date(formattedEndDate);
rejoiningDate.setDate(formattedEndDate.getDate() + 1);
// Remaining career balance estimation
const remainingMonths = Math.max(0, maxCareerLimit - totalAccumulatedMonths).toFixed(1);
const formatDate = (dateObj) => {
return dateObj.toLocaleDateString('en-IN', { day: '2-digit', month: '2-digit', year: 'numeric' });
};
resultBox.className = "result-box eligible-box";
resultBox.innerHTML = `
Study Leave Assessment
Leave Start Date
${formatDate(startDate)}
Calculated End Date
${formatDate(formattedEndDate)}
Expected Rejoining Date
${formatDate(rejoiningDate)}
Total Career Limit
${maxCareerLimit} Months
Estimated Remaining Balance
${remainingMonths} Months
Important Regulatory Notes:
1. **Qualifying Service:** Study leave counts as active service for promotion, seniority, and regular annual increments.
2. **Execution of Bond:** Employees are required to execute a formal bond undertaking to serve the government for a specific period (commonly 3 years) after returning from study leave.
3. **Leave Salary:** Entitled to full basic pay and dearness allowance; however, HRA/CCA rules depend on the study location and specific department sanction terms.
`;
}
Introduction
West Bengal government employees can take Study Leave for higher education. Partial salary or stipend is received during this leave. With a minimum of 5 years of service and subject to departmental approval, study leave of up to 2 years is available.
How to Use
Step 1: Enter total years of service
Step 2: Enter the course duration in months
Step 3: Enter the monthly salary
Step 4: Click the button
Features
Eligibility verification
Maximum approvable duration
Monthly stipend calculation
Total stipend
Free
How It Works
As per WB rules, with a minimum of 5 years of service, study leave of up to 24 months is available. During this time, typically 50% of basic salary is given as stipend.
Formula
Monthly Stipend = Monthly Salary x 50% | Total = Monthly Stipend x Months