Overslaan naar inhoud
Menu
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Deze vraag is gerapporteerd
1 Beantwoorden
5603 Weergaven

How to show selection fields in QWeb report?

 <tr t-foreach="o.order_line" t-as="l">
      <td><span t-field="l.product_id.state" /> </td>

Avatar
Annuleer
Beste antwoord

It seems you are looping over sale_order_line. There is a 'state' field in this table. So if the state is what you want to show, you should try:

<span t-field="l.state" />

Avatar
Annuleer