Přejít na obsah
Menu
You need to be registered to interact with the community.
This question has been flagged
1 Odpovědět
8675 Zobrazení

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
Zrušit
Nejlepší odpověď

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
Zrušit
Related Posts Odpovědi Zobrazení Aktivita
1
úno 21
8076
0
úno 24
1461
2
bře 22
6329
0
lis 20
3734
1
lis 19
7108