Se rendre au contenu
Menu
Cette question a été signalée
1 Répondre
8744 Vues

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
Ignorer
Meilleure réponse

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
Ignorer
Publications associées Réponses Vues Activité
1
févr. 21
8198
0
févr. 24
1519
2
mars 22
6452
0
nov. 20
3820
1
nov. 19
7207