Skip to Content
Menu
You need to be registered to interact with the community.
This question has been flagged
1 Odgovori
8760 Prikazi

I tried to modify the Meetings Calendar view to display tags after event's name. For now, I'm able to display IDs with categ_ids. How can I add the relation to display name of Meeting Type instead of IDs ?  

The following XML code is used to display categ ids in Calendar Meetings view:

<?xml version="1.0"?> <calendar string="Meetings" date_start="start" date_stop="stop" date_delay="duration" all_day="allday" display="[name] - [categ_ids.name]" color="color_partner_id" attendee="partner_ids" avatar_model="res.partner" mode="day" use_contacts="True" event_open_popup="271"> <field name="name"/> <field name="user_id"/> <field name="color_partner_id"/> <field name="partner_ids"/> <field name="categ_ids" widget="many2many_tags_name"/> </calendar>

 

 

 

Avatar
Opusti
Best Answer

You could probobly create a computed fields than appends your tags names.


tag_names = fields.Char(compute='_get_tag_names')


@api.one

@api.depends('categ_ids)

def _get_tag_names(self):

    self.tag_names = ', '.join(c.name for c in self.categ_ids)


Then use it in your calendar view:


display="[name] - [tag_names]"

Avatar
Opusti
Related Posts Odgovori Prikazi Aktivnost
1
feb. 21
8216
0
feb. 24
1528
2
mar. 22
6479
0
nov. 20
3829
1
nov. 19
7224