How to show the employee details on another model in a kanban view whose birthday is on that day ?
I have two model 'hr.employee' And 'send_wish'. In 'send_wish' modelI want to show only those employee details in kanban view, whose birthday is today.
Please show your model structure of model send_wish
from odoo import models, fields, api
from datetime import datetime, timedelta, time
class kw_send_wish(models.Model):
_name = 'kw_send_wish'
_description = 'A model to manage send wishes'
This is my model structure.