Skip to Content
Menu
This question has been flagged
1 Odpoveď
4470 Zobrazenia

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
Zrušiť
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
Zrušiť
Related Posts Replies Zobrazenia Aktivita
2
okt 25
2713
1
okt 25
206
1
aug 25
1073
1
apr 25
1978
1
júl 24
2352