Zum Inhalt springen
Menü
Sie müssen registriert sein, um mit der Community zu interagieren.
Diese Frage wurde gekennzeichnet
1 Antworten
3905 Ansichten

I am trying to hide the first two digits (country digits) of the vat field when I print a qweb report. Looking for the way to do it I have found this method:

t-esc="o.partner_id.vat[2:]"

But it's not working for me. I get an error:

QWebException: "vat[2:]" while evaluating


Maybe it's not the right way. Any solution is appreciated.



Avatar
Verwerfen
Beste Antwort

Your answer is partially correct.

You need to check whether vat is available for that partner before doing vat[2:]

    <h2 t-if="o.partner_id.vat">
      VAT: <span t-esc="o.partner_id.vat[2:]" />
</h2>

Avatar
Verwerfen
Autor

Thank you, t-if is needed to make it works.

Verknüpfte Beiträge Antworten Ansichten Aktivität
1
Juni 21
8100
2
Okt. 22
6494
3
März 21
43984
1
Sept. 16
4082
0
Dez. 15
4430