跳至内容
菜单
此问题已终结
1 回复
4330 查看

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
589
1
4月 25
1602
1
9月 24
2275
1
7月 24
2040
1
5月 24
4474