Overslaan naar inhoud
Odoo Menu
  • Aanmelden
  • Probeer het gratis
  • Apps
    Financiën
    • Boekhouding
    • Facturatie
    • Onkosten
    • Spreadsheet (BI)
    • Documenten
    • Ondertekenen
    Verkoop
    • CRM
    • Verkoop
    • Kassasysteem winkel
    • Kassasysteem Restaurant
    • Abonnementen
    • Verhuur
    Websites
    • Websitebouwer
    • E-commerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Bevoorradingsketen
    • Voorraad
    • Productie
    • PLM
    • Inkoop
    • Onderhoud
    • Kwaliteit
    Personeelsbeheer
    • Werknemers
    • Werving & Selectie
    • Verlof
    • Evaluaties
    • Aanbevelingen
    • Wagenpark
    Marketing
    • Social media Marketing
    • E-mailmarketing
    • SMS Marketing
    • Evenementen
    • Marketingautomatisering
    • Enquêtes
    Diensten
    • Project
    • Urenstaten
    • Buitendienst
    • Helpdesk
    • Planning
    • Afspraken
    Productiviteit
    • Chat
    • Goedkeuringen
    • IoT
    • VoIP
    • Kennis
    • WhatsApp
    Apps van derden Odoo Studio Odoo Cloud Platform
  • Bedrijfstakken
    Detailhandel
    • Boekhandel
    • kledingwinkel
    • Meubelzaak
    • Supermarkt
    • Bouwmarkt
    • Speelgoedwinkel
    Food & Hospitality
    • Bar en Pub
    • Restaurant
    • Fastfood
    • Guest House
    • Drankenhandelaar
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architectenbureau
    • Bouw
    • Vastgoedbeheer
    • Tuinieren
    • Vereniging van eigenaren
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketingbureau
    • Advocatenkantoor
    • Talentenwerving
    • Audit & Certificering
    Productie
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Relatiegeschenken
    Gezondheid & Fitness
    • Sportclub
    • Opticien
    • Fitnesscentrum
    • Wellness-medewerkers
    • Apotheek
    • Kapper
    Trades
    • Klusjesman
    • IT-hardware & support
    • Solar Energy Systems
    • Schoenmaker
    • Schoonmaakdiensten
    • HVAC Services
    Others
    • Nonprofit Organization
    • Milieuagentschap
    • Verhuur van Billboards
    • Fotograaf
    • Fietsleasing
    • Softwareverkoper
    Browse all Industries
  • Community
    Leren
    • Tutorials
    • Documentatie
    • Certificeringen
    • Training
    • Blog
    • Podcast
    Versterk het onderwijs
    • Onderwijs- programma
    • Scale Up! Business Game
    • Bezoek Odoo
    Download de Software
    • Downloaden
    • Vergelijk edities
    • Releases
    Werk samen
    • Github
    • Forum
    • Evenementen
    • Vertalingen
    • Word een Partner
    • Services for Partners
    • Registreer je accountantskantoor
    Diensten
    • Vind een partner
    • Vind een boekhouder
    • Een adviseur ontmoeten
    • Implementatiediensten
    • Klantreferenties
    • Ondersteuning
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Vraag een demo aan
  • Prijzen
  • Help

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

  • CRM
  • e-Commerce
  • Boekhouding
  • Voorraad
  • PoS
  • Project
  • MRP
All apps
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Alle posts Personen Badges
Labels (Bekijk alle)
odoo accounting v14 pos v15
Over dit forum
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Alle posts Personen Badges
Labels (Bekijk alle)
odoo accounting v14 pos v15
Over dit forum
Help

What's the difference between t-esc and t-field in a report ?

Inschrijven

Ontvang een bericht wanneer er activiteit is op deze post

Deze vraag is gerapporteerd
qwebt-field
3 Antwoorden
32558 Weergaven
Avatar
Paraita Wohler

I'm using Odoo 8 and I've inherited account.invoice.line and added a new field:



class account_invoice_line(models.Model):
_inherit = "account.invoice.line"

price_unit_currency = fields.Float('Prix-Unitaire-Devise', store=False, readonly=True,
compute='_compute_pu_currency',
default=0.)

@api.one
def _compute_pu_currency(self):
self.price_unit_currency = line.price_unit * 1.28


In my report, I can print that field (first column) but doesn't show up in the second column:​


<tr t-foreach="o.invoice_line" t-as="l">
<td>
<span t-esc="l.price_unit_currency"/>
</td>
<td>
<span t-field="l.price_unit_currency"/>
</td>
</tr>


When I generate my report, I get this error in the log:

​

2019-12-30 20:09:09,820 329299 WARNING My_Super_Module openerp.addons.base.ir.ir_qweb: Could not get field price_unit_currency for model account.invoice.line


I'd just like to understand why it works with t-esc, and not with t-field. https://www.odoo.com/documentation/8.0/reference/qweb.html didn't really helped me understand the mechanism but I suspect t-field to only work on stored fields, is that the case ? Where can I learn more about that ?

Thanks in advance to the community :)

2
Avatar
Annuleer
Sehrish

Hope this will helps in future: http://learnopenerp.blogspot.com/search/label/Qweb

Avatar
TeqStars Technologies
Beste antwoord

Hello Paraita Wohler,

Let us describe to you in more detail. 

QWeb has a primary output directive which automatically HTML-escape. es​c takes an expression, evaluates it and prints the content.

For example, if you want to get the data from a python dictionary.  

<t t-esc="dict['key']"/>

Simply, t-esc allows you to evaluate code runtime like python code and print it. 

Where t-field directive can only be used when performing field access (Only work on stored fields) and formatting data according to the field type. Also, t-field-options can be used to customize fields. See below example, 

<t-field="o.date" t-field-options='{"widget":"date"'}'/>
5
Avatar
Annuleer
Avatar
alvinadjie
Beste antwoord

Hi,
For computed field if you want to called it in qweb you need to add store=true on your field definition on python file.

if not stored you should use t-esc

t-esc is for running python code on qweb you can call python function doing calculation using t-esc

t-field is for calling field from your model into qweb

1
Avatar
Annuleer
Geniet je van het gesprek? Blijf niet alleen lezen, doe ook mee!

Maak vandaag nog een account aan om te profiteren van exclusieve functies en deel uit te maken van onze geweldige community!

Aanmelden
Gerelateerde posts Antwoorden Weergaven Activiteit
Customize document layout Opgelost
qweb odoo t-field
Avatar
Avatar
1
apr. 22
8070
Odoo 18: Display image from char field containing url in qweb form
qweb
Avatar
Avatar
1
jul. 25
2917
PDF Export Option for QWeb Reports in odoo 17.0
qweb
Avatar
Avatar
1
mei 25
3627
QWeb: use t-if to check birthday date Opgelost
qweb
Avatar
Avatar
1
apr. 25
3175
Odoo 17 - QWeb Reports with External Datasource Opgelost
qweb
Avatar
Avatar
1
feb. 25
2552
Community
  • Tutorials
  • Documentatie
  • Forum
Open Source
  • Downloaden
  • Github
  • Runbot
  • Vertalingen
Diensten
  • Odoo.sh Hosting
  • Ondersteuning
  • Upgrade
  • Gepersonaliseerde ontwikkelingen
  • Onderwijs
  • Vind een boekhouder
  • Vind een partner
  • Word een Partner
Over ons
  • Ons bedrijf
  • Merkelementen
  • Neem contact met ons op
  • Vacatures
  • Evenementen
  • Podcast
  • Blog
  • Klanten
  • Juridisch • Privacy
  • Beveiliging
الْعَرَبيّة 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 is een suite van open source zakelijke apps die aan al je bedrijfsbehoeften voldoet: CRM, E-commerce, boekhouding, inventaris, kassasysteem, projectbeheer, enz.

Odoo's unieke waardepropositie is om tegelijkertijd zeer gebruiksvriendelijk en volledig geïntegreerd te zijn.

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