To display one2many fields in a calendar view in Odoo, you will need to create a calendar view and define the fields that you want to display in the view.
Here is an example of how you can define a calendar view with one2many fields in Odoo:
Copy code
Calendar View with One2many Fields
project.task
calendar
date_start="start_date"
date_stop="end_date"
mode="month"
color="priority"
display_secondary_color="True"
event_open_popup="True"
event_create="True"
all_day="True">
In this example, the calendar view displays the 'name', 'description', 'project_id', 'tag_ids', 'attachment_ids', and 'note_ids' fields from the 'project.task' model. The 'tag_ids', 'attachment_ids', and 'note_ids' fields are all one2many fields.
I hope this helps! Let me know if you have any further questions