Passa al contenuto
Menu
È necessario essere registrati per interagire con la community.
La domanda è stata contrassegnata
4 Risposte
48188 Visualizzazioni

Hello there,

In a qweb report, does it exist a operator to detect if a field contains a particular string?

Example :

<div t-if="p.name contains 'SUM'">
    <p>bla bla bla</p>
</div>


Thanks to help!


EDIT #1

After the tip of mister Ray Carnes, I have try this one. No success. Syntax error.

                            <tr t-foreach="get_payslip_lines(o.line_ids)" t-as="p">
<td t-if="p.name like '%SUM%'">
<span>IT WORKS!!!!</span>
</td>
    
.......



Avatar
Abbandona
Risposta migliore

Hi,

You try:

<t t-if="'SUM' in p.name">
    <span>OK</span>
</t>
Avatar
Abbandona
Autore

Exactly what I needed! Thanks a lot.

Risposta migliore

Would this work (have not tested)?

<div t-if="p.name like '%SUM%'">
<p>bla bla bla</p>
</div>
Avatar
Abbandona
Autore

I test it right now. I come back soon. Thanks a lot.

Autore

It doesn't seem to work. It is not the first time I meet this problem with t-if in qweb.

Post correlati Risposte Visualizzazioni Attività
0
ago 16
4240
1
mar 15
20754
0
giu 24
17
0
feb 24
1710
0
giu 21
3940