Passa al contenuto
Odoo Menu
  • Accedi
  • Provalo gratis
  • App
    Finanze
    • Contabilità
    • Fatturazione
    • Note spese
    • Fogli di calcolo (BI)
    • Documenti
    • Firma
    Vendite
    • CRM
    • Vendite
    • Punto vendita Negozio
    • Punto vendita Ristorante
    • Abbonamenti
    • Noleggi
    Siti web
    • Configuratore sito web
    • E-commerce
    • Blog
    • Forum
    • Live chat
    • E-learning
    Supply chain
    • Magazzino
    • Produzione
    • PLM
    • Acquisti
    • Manutenzione
    • Qualità
    Risorse umane
    • Dipendenti
    • Assunzioni
    • Ferie
    • Valutazioni
    • Referral dipendenti
    • Parco veicoli
    Marketing
    • Social marketing
    • E-mail marketing
    • SMS marketing
    • Eventi
    • Marketing automation
    • Sondaggi
    Servizi
    • Progetti
    • Fogli ore
    • Assistenza sul campo
    • Helpdesk
    • Pianificazione
    • Appuntamenti
    Produttività
    • Comunicazioni
    • Approvazioni
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    App di terze parti Odoo Studio Piattaforma cloud Odoo
  • Settori
    Retail
    • Libreria
    • Negozio di abbigliamento
    • Negozio di arredamento
    • Alimentari
    • Ferramenta
    • Negozio di giocattoli
    Cibo e ospitalità
    • Bar e pub
    • Ristorante
    • Fast food
    • Pensione
    • Grossista di bevande
    • Hotel
    Agenzia immobiliare
    • Agenzia immobiliare
    • Studio di architettura
    • Edilizia
    • Gestione immobiliare
    • Impresa di giardinaggio
    • Associazione di proprietari immobiliari
    Consulenza
    • Società di contabilità
    • Partner Odoo
    • Agenzia di marketing
    • Studio legale
    • Selezione del personale
    • Audit e certificazione
    Produzione
    • Tessile
    • Metallo
    • Arredamenti
    • Alimentare
    • Birrificio
    • Ditta di regalistica aziendale
    Benessere e sport
    • Club sportivo
    • Negozio di ottica
    • Centro fitness
    • Centro benessere
    • Farmacia
    • Parrucchiere
    Commercio
    • Tuttofare
    • Hardware e assistenza IT
    • Ditta di installazione di pannelli solari
    • Calzolaio
    • Servizi di pulizia
    • Servizi di climatizzazione
    Altro
    • Organizzazione non profit
    • Ente per la tutela ambientale
    • Agenzia di cartellonistica pubblicitaria
    • Studio fotografico
    • Punto noleggio di biciclette
    • Rivenditore di software
    Carica tutti i settori
  • Community
    Apprendimento
    • Tutorial
    • Documentazione
    • Certificazioni 
    • Formazione
    • Blog
    • Podcast
    Potenzia la tua formazione
    • Programma educativo
    • Scale Up! Business Game
    • Visita Odoo
    Ottieni il software
    • Scarica
    • Versioni a confronto
    • Note di versione
    Collabora
    • Github
    • Forum
    • Eventi
    • Traduzioni
    • Diventa nostro partner
    • Servizi per partner
    • Registra la tua società di contabilità
    Ottieni servizi
    • Trova un partner
    • Trova un contabile
    • Incontra un esperto
    • Servizi di implementazione
    • Testimonianze dei clienti
    • Supporto
    • Aggiornamenti
    GitHub Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Richiedi una demo
  • Prezzi
  • Aiuto

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

  • CRM
  • e-Commerce
  • Contabilità
  • Magazzino
  • PoS
  • Progetti
  • MRP
All apps
È necessario essere registrati per interagire con la community.
Tutti gli articoli Persone Badge
Etichette (Mostra tutto)
odoo accounting v14 pos v15
Sul forum
È necessario essere registrati per interagire con la community.
Tutti gli articoli Persone Badge
Etichette (Mostra tutto)
odoo accounting v14 pos v15
Sul forum
Assistenza

Is there some conditions to respect to use widget in my qweb report?

Iscriviti

Ricevi una notifica quando c'è un'attività per questo post

La domanda è stata contrassegnata
widgetqwebreporttesting
3 Risposte
18134 Visualizzazioni
Avatar
Pascal Tremblay

Hello all, 

my new report is almost finished. But I did not manage to get only one widget working to format datas in this report. none

so may be i miss something

is there some important conditions to respect to get those widgets working?

Thanks


UPDATE #1

Here is a easy test to show that widgets don't seem to work in my report.

In my report, I have put this code for diagnostic  :

<p>o = <span t-esc="o" /></p>

<p>currency = <span t-esc="currency" /></p>

<p>docs = <span t-esc="docs" /></p>

<p>doc_ids = <span t-esc="doc_ids" /></p>

<p>doc_model = <span t-esc="doc_model" /></p>


An here is the easy test I tried :


<t t-set="i" t-value="1666.435"/>

<td class="text-center" colspan="2"><span style="font-size: 20px;" t-esc="i"

t-field-options='{"widget": "monetary", "display_currency": "currency"}'/></td>



The result. See the variable currency is well defined.

Absolutely none dollar sign to the 1666.435 amount...




UPDATE #2

Since the beginning of my report conception, I ask to myself if I have the right docs, doc_ids and doc_model.

This report is launched from a wizard that I have made myself. Is it normal and correct that my docs and doc_model are  wizard.create.deposit (the model of the wizard)?

Is it normal that doc_ids is empty? 

My report works well even if I can't format with widgets in the qweb xml report.

0
Avatar
Abbandona
Avatar
Pascal Tremblay
Autore Risposta migliore

YES!!!!! And YES again!

I have got result with this line :

<span t-esc="i" t-esc-options='{"widget": "monetary", "display_currency": "currency"}' />

Rather than this one :

<span t-esc="i" t-field-options='{"widget": "monetary", "display_currency": "currency"}' />


Strange thing however... the amount 1666.435 is rounded like 1666,43 $ and not like 1666,44 $. ??????

3
Avatar
Abbandona
Avatar
Mateo Tibaquira
Risposta migliore

You saved my day!! Thanks a lot

On the other hand, you have to use the currency of the report with:

"display_currency": o.currency_id

assuming o as your report object. Best regards

0
Avatar
Abbandona
Pascal Tremblay
Autore

My pleasure!

Ti stai godendo la conversazione? Non leggere soltanto, partecipa anche tu!

Crea un account oggi per scoprire funzionalità esclusive ed entrare a far parte della nostra fantastica community!

Registrati
Post correlati Risposte Visualizzazioni Attività
How to add an attribute to main "widget" used in qweb?
widget qweb report
Avatar
1
mar 15
7941
odoo 16 report target new page scss
qweb report
Avatar
Avatar
1
apr 25
2197
Missing external identifier on new external layout template Risolto
qweb report
Avatar
Avatar
2
mar 25
2793
Translate month name in t-esc Qweb report Risolto
qweb report
Avatar
Avatar
Avatar
Avatar
Avatar
4
nov 24
8158
QWeb Report Shows Different When Edit And Print Review Risolto
qweb report
Avatar
Avatar
1
mar 24
2969
Community
  • Tutorial
  • Documentazione
  • Forum
Open source
  • Scarica
  • Github
  • Runbot
  • Traduzioni
Servizi
  • Hosting Odoo.sh
  • Supporto
  • Aggiornamenti
  • Sviluppi personalizzati
  • Formazione
  • Trova un contabile
  • Trova un partner
  • Diventa nostro partner
Chi siamo
  • La nostra azienda
  • Branding
  • Contattaci
  • Lavora con noi
  • Eventi
  • Podcast
  • Blog
  • Clienti
  • Note legali • Privacy
  • Sicurezza
الْعَرَبيّة 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 è un gestionale di applicazioni aziendali open source pensato per coprire tutte le esigenze della tua azienda: CRM, Vendite, E-commerce, Magazzino, Produzione, Fatturazione elettronica, Project Management e molto altro.

Il punto di forza di Odoo è quello di offrire un ecosistema unico di app facili da usare, intuitive e completamente integrate tra loro.

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