Skip to Content
Menu
This question has been flagged
1 Reply
1471 Views

how to show the dropdown name from the database of students and show it in StudentMark  filling form of name in odoo12 community

please help

Thanks in Advance

Avatar
Discard
Best Answer

Hi,

In the corresponding model(mark filling form) create a Many2one field with co-model as student record.


You can try like this,

student_id = fields.Many2one('student.student', string='Student')


where student.student is the model of the student record.

Thanks

Avatar
Discard
Author

Thank You