Skip to Content
Menú
This question has been flagged
1 Respondre
4473 Vistes

Currently on the Sales Order report, the Terms print on two lines:

Payment Term:

30 NET Days

I would like it like this:

Payment Term: 30 NET Days

The current code is:

                <div t-if="o.payment_term" class="col-xs-3">
                    <strong>Payment Term:</strong>
                    <p t-field="o.payment_term"/>
                </div>

Avatar
Descartar
Autor Best Answer

I should have looked at the bottom of the report. Change the paragraph tag to a span tag:

<div t-if="o.payment_term" class="col-xs-3">
                    <strong>Payment Term:</strong>
                    <span t-field="o.payment_term"/>
                </div>

Avatar
Descartar
Related Posts Respostes Vistes Activitat
2
d’oct. 25
2715
1
d’oct. 25
215
1
d’ag. 25
1076
1
d’abr. 25
1981
1
de jul. 24
2354