We need to restrict employees sick leaves for future dates. He will be able to apply only past dates not for future.
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- Müşteri İlişkileri Yönetimi
- e-Commerce
- Muhasebe
- Envanter
- PoS
- Proje Yönetimi
- MRP
Bu soru işaretlendi
Hi,
You can do something like this, in the constrains check the leave type and given dates and raise validation error if the entered date is a future date.
class HRLeave(models.Model):
_inherit = 'hr.leave'
@api.constrains('request_date_from', 'request_date_to')
def check_sick_dates(self):
# set current date to the variable current date
if self.holiday_status_id.name == 'Sick Leaves':
if self.request_date_from > current_date or self.request_date_to > current_date:
raise ValidationError(_("Sick Leaves is not allowed for Future Dates.. !"))
Thanks
Hi Mitul Could you please elaborate below answer because I am new to Odoo:
there are many ways to achieve this.
you can achieve this using the override the create method / constraints / onchange of the startdate-enddate and leave type.
Hello
there are many ways to achieve this.
you can achieve this using the override the create method / constraints / onchange of the startdate-enddate and leave type.
Hello Raja,
Its not available out of the box, but you can customize to accommodate the requirements. If you need assistance in doing so contact bd@erpfied.com
Best Regards
Enjoying the discussion? Don't just read, join in!
Create an account today to enjoy exclusive features and engage with our awesome community!
Üye Ol| İlgili Gönderiler | Cevaplar | Görünümler | Aktivite | |
|---|---|---|---|---|
|
|
1
May 23
|
3802 | ||
|
|
2
Oca 23
|
2899 | ||
|
|
1
Kas 22
|
6093 | ||
|
|
0
Eki 17
|
4312 | ||
|
|
1
Oca 17
|
4551 |