Skip ke Konten
Menu
Pertanyaan ini telah diberikan tanda
1 Balas
4477 Tampilan

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
Buang
Penulis Jawaban Terbai

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
Buang
Post Terkait Replies Tampilan Aktivitas
2
Okt 25
2719
1
Okt 25
249
1
Agu 25
1079
1
Apr 25
1983
1
Jul 24
2357