Skip to Content
Меню
Вам необхідно зареєструватися, щоб взаємодіяти зі спільнотою.
Це запитання позначене
1 Відповісти
3901 Переглядів

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.



Аватар
Відмінити
Найкраща відповідь

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>

Аватар
Відмінити
Автор

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

Related Posts Відповіді Переглядів Дія
1
черв. 21
8094
2
жовт. 22
6487
Sum on QWeb reports Вирішено
3
бер. 21
43975
1
вер. 16
4080
0
груд. 15
4430