コンテンツへスキップ
メニュー
この質問にフラグが付けられました
1 返信
4324 ビュー

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>

アバター
破棄
著作者 最善の回答

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>

アバター
破棄
関連投稿 返信 ビュー 活動
1
8月 25
584
1
4月 25
1599
1
9月 24
2273
1
7月 24
2037
1
5月 24
4458