Hello, I have two tables estimation.info and project details
class EstimationModel(models.Model):
project_detail_ids = fields.One2many(
'project.details','estimation_id',string="Project Details")
technology_id = fields.Many2many('technology.info',string="Technology Name",tracking=1,store=True)
class ProjectDetails(models.Model):
estimation_id = fields.Many2one('estimation.info', string="estimation")
technology_id = fields.Many2one('technology.info',string="Technology Name",tracking=1,store=True)
I want only those values inside my project details tables technology_id dropdown which the user enter in technology_id of estimation table
how can I achieve this?