2018-01-16 06:58:15 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
2018-01-16 11:34:37 +01:00
|
|
|
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
|
2018-01-16 06:58:15 +01:00
|
|
|
|
2018-01-16 11:34:37 +01:00
|
|
|
from flectra.addons.mail.controllers.main import MailController
|
|
|
|
from flectra import http
|
2018-01-16 06:58:15 +01:00
|
|
|
|
|
|
|
|
|
|
|
class HrHolidaysController(http.Controller):
|
|
|
|
|
|
|
|
@http.route('/hr_holidays/validate', type='http', auth='user', methods=['GET'])
|
|
|
|
def hr_holidays_validate(self, res_id, token):
|
|
|
|
comparison, record, redirect = MailController._check_token_and_record_or_redirect('hr.holidays', int(res_id), token)
|
|
|
|
if comparison and record:
|
|
|
|
try:
|
|
|
|
record.action_approve()
|
|
|
|
except Exception:
|
|
|
|
return MailController._redirect_to_messaging()
|
|
|
|
return redirect
|
|
|
|
|
|
|
|
@http.route('/hr_holidays/refuse', type='http', auth='user', methods=['GET'])
|
|
|
|
def hr_holidays_refuse(self, res_id, token):
|
|
|
|
comparison, record, redirect = MailController._check_token_and_record_or_redirect('hr.holidays', int(res_id), token)
|
|
|
|
if comparison and record:
|
|
|
|
try:
|
|
|
|
record.action_refuse()
|
|
|
|
except Exception:
|
|
|
|
return MailController._redirect_to_messaging()
|
|
|
|
return redirect
|