Hello,
I want to display the payment informations on my invoice Qweb, but these ones depend on the method of payment.
If the invoice is paid with factoring, I wanna display the text 1, if not, I wanna display the text 2.
So I created a boolean field "x_factoring" in invoice.form.
I want to write something like this :
<div if t-field="x_factoring == true">
text 1
</div>
<div if t-field="x_factoring == false">
text 2
</div>
I don't know the exact way to do so thanks to correct me.