Skip ke Konten
Odoo Menu
  • Login
  • Uji coba gratis
  • Aplikasi
    Keuangan
    • Akuntansi
    • Faktur
    • Pengeluaran
    • Spreadsheet (BI)
    • Dokumen
    • Tanda Tangan
    Sales
    • CRM
    • Sales
    • POS Toko
    • POS Restoran
    • Langganan
    • Rental
    Website
    • Website Builder
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Rantai Pasokan
    • Inventaris
    • Manufaktur
    • PLM
    • Purchase
    • Maintenance
    • Kualitas
    Sumber Daya Manusia
    • Karyawan
    • Rekrutmen
    • Cuti
    • Appraisal
    • Referensi
    • Armada
    Marketing
    • Social Marketing
    • Email Marketing
    • SMS Marketing
    • Acara
    • Otomatisasi Marketing
    • Survei
    Layanan
    • Project
    • Timesheet
    • Layanan Lapangan
    • Meja Bantuan
    • Planning
    • Appointment
    Produktivitas
    • Diskusi
    • Approval
    • IoT
    • VoIP
    • Pengetahuan
    • WhatsApp
    Aplikasi pihak ketiga Odoo Studio Platform Odoo Cloud
  • Industri-Industri
    Retail
    • Toko Buku
    • Toko Baju
    • Toko Furnitur
    • Toko Kelontong
    • Toko Hardware
    • Toko Mainan
    Makanan & Hospitality
    • Bar dan Pub
    • Restoran
    • Fast Food
    • Rumah Tamu
    • Distributor Minuman
    • Hotel
    Real Estate
    • Agensi Real Estate
    • Firma Arsitektur
    • Konstruksi
    • Estate Management
    • Perkebunan
    • Asosiasi Pemilik Properti
    Konsultansi
    • Firma Akuntansi
    • Mitra Odoo
    • Agensi Marketing
    • Firma huku
    • Talent Acquisition
    • Audit & Sertifikasi
    Manufaktur
    • Tekstil
    • Logam
    • Perabotan
    • Makanan
    • Brewery
    • Corporate Gift
    Kesehatan & Fitness
    • Sports Club
    • Toko Kacamata
    • Fitness Center
    • Wellness Practitioners
    • Farmasi
    • Salon Rambut
    Perdagangan
    • Handyman
    • IT Hardware & Support
    • Sistem-Sistem Energi Surya
    • Pembuat Sepatu
    • Cleaning Service
    • Layanan HVAC
    Lainnya
    • Organisasi Nirlaba
    • Agen Lingkungan
    • Rental Billboard
    • Fotografi
    • Penyewaan Sepeda
    • Reseller Software
    Browse semua Industri
  • Komunitas
    Belajar
    • Tutorial-tutorial
    • Dokumentasi
    • Sertifikasi
    • Pelatihan
    • Blog
    • Podcast
    Empower Education
    • Program Edukasi
    • Game Bisnis 'Scale Up!'
    • Kunjungi Odoo
    Dapatkan Softwarenya
    • Download
    • Bandingkan Edisi
    • Daftar Rilis
    Kolaborasi
    • Github
    • Forum
    • Acara
    • Terjemahan
    • Menjadi Partner
    • Layanan untuk Partner
    • Daftarkan perusahaan Akuntansi Anda.
    Dapatkan Layanan
    • Temukan Mitra
    • Temukan Akuntan
    • Temui penasihat
    • Layanan Implementasi
    • Referensi Pelanggan
    • Bantuan
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Dapatkan demo
  • Harga
  • Bantuan

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Akuntansi
  • Inventaris
  • PoS
  • Project
  • MRP
All apps
Anda harus terdaftar untuk dapat berinteraksi di komunitas.
Semua Post Orang Lencana-Lencana
Label (Lihat semua)
odoo accounting v14 pos v15
Mengenai forum ini
Anda harus terdaftar untuk dapat berinteraksi di komunitas.
Semua Post Orang Lencana-Lencana
Label (Lihat semua)
odoo accounting v14 pos v15
Mengenai forum ini
Help

check if html.field is empty on Qweb report

Langganan

Dapatkan notifikasi saat terdapat aktivitas pada post ini

Pertanyaan ini telah diberikan tanda
qweb
7 Replies
27226 Tampilan
Avatar
jean44

Hello,

I have an html field and I want to display the field on Qweb report if it is not empty.

python code:

note= fields.Html(string="Note")

Qweb:

            <p t-if="doc.note">

                <strong>Note: </strong>

                <span t-raw="doc.note"/>

            </p>


if the the field is empty I got always the result:

Note:

Which is not as should be expected, I don't know if t-if tag is working on html.fields, please help !

Best regards

1
Avatar
Buang
Ray Carnes

Hello,

Thank you for yourreply, I tried your code but it does not work


Avatar
Stephan Becker
Jawaban Terbai

You need to escape the < > in XML.

For me the following works:

                    <div t-if="html-field != '&lt;p&gt;&lt;br&gt;&lt;/p&gt;'">

                    </div>

Wich is essentialle probing for a content of <p><br/></p>.
The HTML field is filled with that string by odoo automatically if you leave the HTML form widget edit area empty.
5
Avatar
Buang
Raphael Hue de Froberville

There is a better way nowadays :

<p t-if="not is_html_empty(doc.payment_term_id.note)">
<strong>Note :</strong>
<span t-field="doc.payment_term_id.note"/>
</p>

Avatar
Jainesh Shah(Aktiv Software)
Jawaban Terbai

Try

<div t-if="doc.note != '<p><br/></p>'">

    <strong>Note: </strong>

    <span t-raw="doc.note"/>

</div>

2
Avatar
Buang
Dipak Shah

Have you tried this ?

Avatar
Yenthe Van Ginneken (Mainframe Monkey)
Jawaban Terbai

Hi,


Since Odoo V14 there is a new helper called "is_html_empty". This built-in helper in the Odoo core now allows you to check if a field is empty or not. You can use this "is_html_empty" function in QWeb statements. You can then simply wrap this in a t-if statement as such: "t-if="is_html_empty(doc.note)" and do a t-else statement for example.

P.S: Sorry I wanted to paste a whole code block sample but sadly the official forum editor is completely broken again. You can see a sample in the core from Odoo here

 



1
Avatar
Buang
Rodrigo Robles

Does this work for mail.template?

Trying to make a template that fills note field from a module if not empty. Still haven't found a way to make it work if it matches '&lt;p&gt;&lt;br&gt;&lt;/p&gt;' aswell.

Rodrigo Robles

I mean for UI web template editor*

Avatar
empress
Jawaban Terbai

salam jean44;

in order to check if the html.field is empty you need to add this code:

<t t-foreach="docs" t-as="doc">
                <t t-if="doc.html.field == '&lt;br&gt;'">
                    <t t-set="style" t-value=" 'display: none;' "/>
                </t>

<span  t-att-style="style" t-raw="html.field"/> 

</t>

where &lt;br&gt; is <br> decoded

0
Avatar
Buang
Avatar
Muniswaran
Jawaban Terbai

HI Jean

You just try <span> or <div> tag instead of <p> tag

I mean,

             <span t-if="doc.note">

                <strong>Note: </strong>

                <span t-raw="doc.note"/>

            </span>


or


            <div t-if="doc.note">

                <strong>Note: </strong>

                <span t-raw="doc.note"/>

            </div>

0
Avatar
Buang
Avatar
Ray Carnes
Jawaban Terbai

This how Odoo does it, did you try their method?

https://github.com/odoo/odoo/blob/11.0/addons/website_quote/views/website_quote_templates.xml#L649

<div t-field="option_line.website_description" class="oe_no_empty"/>
0
Avatar
Buang
jean44
Penulis

Hello,

in my code Qweb there is also the string "Note", I don't want to display it the field note is emty, how I can do that please ?

Avatar
jean44
Penulis Jawaban Terbai

Hello,


I still have this problem, Any help please !


BR

0
Avatar
Buang
Menikmati diskusi? Jangan hanya membaca, ikuti!

Buat akun sekarang untuk menikmati fitur eksklufi dan agar terlibat dengan komunitas kami!

Daftar
Post Terkait Replies Tampilan Aktivitas
Odoo 18: Display image from char field containing url in qweb form
qweb
Avatar
Avatar
1
Jul 25
3000
PDF Export Option for QWeb Reports in odoo 17.0
qweb
Avatar
Avatar
1
Mei 25
3794
QWeb: use t-if to check birthday date Diselesaikan
qweb
Avatar
Avatar
1
Apr 25
3276
Odoo 17 - QWeb Reports with External Datasource Diselesaikan
qweb
Avatar
Avatar
1
Feb 25
2652
Tree line field shrinked/cut
qweb
Avatar
0
Okt 24
2185
Komunitas
  • Tutorial-tutorial
  • Dokumentasi
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Terjemahan
Layanan
  • Odoo.sh Hosting
  • Bantuan
  • Peningkatan
  • Custom Development
  • Pendidikan
  • Temukan Akuntan
  • Temukan Mitra
  • Menjadi Partner
Tentang Kami
  • Perusahaan kami
  • Aset Merek
  • Hubungi kami
  • Tugas
  • Acara
  • Podcast
  • Blog
  • Pelanggan
  • Hukum • Privasi
  • Keamanan
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo adalah rangkaian aplikasi bisnis open source yang mencakup semua kebutuhan perusahaan Anda: CRM, eCommerce, akuntansi, inventaris, point of sale, manajemen project, dan seterusnya.

Mudah digunakan dan terintegrasi penuh pada saat yang sama adalah value proposition unik Odoo.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now