You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

30 lines
970 B

# -*- coding: utf-8 -*-
from odoo import http
from odoo.http import request
class Reminders(http.Controller):
@http.route('/hr_reminder/all_reminder', type='json', auth="public")
def all_reminder(self):
reminder = []
for i in request.env['hr.reminder'].search([]):
if i.reminder_active:
reminder.append(i.name)
return reminder
@http.route('/hr_reminder/reminder_active', type='json', auth="public")
def reminder_active(self, **kwargs):
reminder_value = kwargs.get('reminder_name')
value = []
for i in request.env['hr.reminder'].search([('name', '=', reminder_value)]):
value.append(i.model_name.model)
value.append(i.model_field.name)
value.append(i.search_by)
value.append(i.date_set)
value.append(i.date_from)
value.append(i.date_to)
# value.append(i.exclude_year)
return value