Is it possible to display a many2many field in the sale order print?
I would like to show the categories from the sale order on the quotation and the order confirmation. I do not know if it is even possible to use this field here.
The field I want to display is "categ_ids". The value is stored under the table crm_case_categ.
I have tried using: [[(o.categ_ids and o.categ_ids.name)]]
This keeps showing up as: browse_record_list(1)
I have also tried: [[repeatIn(objects,'o')]] [[repeatIn(o.categ_ids,'line')]] [[(o.categ_ids and o.categ_ids.name)]]
But this returns the same value.
Does anyone know how I can achieve this?