Skip to Content
Odoo Menu
  • Log ind
  • Prøv gratis
  • Apps
    Økonomi
    • Bogføring
    • Fakturering
    • Udgifter
    • Regneark (BI)
    • Dokumenter
    • e-Signatur
    Salg
    • CRM
    • Salg
    • POS Butik
    • POS Restaurant
    • Abonnementer
    • Udlejning
    Hjemmeside
    • Hjemmesidebygger
    • e-Handel
    • Blog
    • Forum
    • LiveChat
    • e-Læring
    Forsyningskæde
    • Lagerbeholdning
    • Produktion
    • PLM
    • Indkøb
    • Vedligeholdelse
    • Kvalitet
    HR
    • Medarbejdere
    • Rekruttering
    • Fravær
    • Medarbejdersamtaler
    • Anbefalinger
    • Flåde
    Marketing
    • Markedsføring på sociale medier
    • E-mailmarketing
    • SMS-marketing
    • Arrangementer
    • Automatiseret marketing
    • Spørgeundersøgelser
    Tjenester
    • Projekt
    • Timesedler
    • Udkørende Service
    • Kundeservice
    • Planlægning
    • Aftaler
    Produktivitet
    • Dialog
    • Godkendelser
    • IoT
    • VoIP
    • Vidensdeling
    • WhatsApp
    Tredjepartsapps Odoo Studio Odoo Cloud-platform
  • Brancher
    Detailhandel
    • Boghandel
    • Tøjforretning
    • Møbelforretning
    • Dagligvarebutik
    • Byggemarked
    • Legetøjsforretning
    Mad og værtsskab
    • Bar og pub
    • Restaurant
    • Fastfood
    • Gæstehus
    • Drikkevareforhandler
    • Hotel
    Ejendom
    • Ejendomsmægler
    • Arkitektfirma
    • Byggeri
    • Ejendomsadministration
    • Havearbejde
    • Boligejerforening
    Rådgivning
    • Regnskabsfirma
    • Odoo-partner
    • Marketingbureau
    • Advokatfirma
    • Rekruttering
    • Audit & certificering
    Produktion
    • Tekstil
    • Metal
    • Møbler
    • Fødevareproduktion
    • Bryggeri
    • Firmagave
    Heldbred & Fitness
    • Sportsklub
    • Optiker
    • Fitnesscenter
    • Kosmetolog
    • Apotek
    • Frisør
    Håndværk
    • Handyman
    • IT-hardware og support
    • Solenergisystemer
    • Skomager
    • Rengøringsservicer
    • VVS- og ventilationsservice
    Andet
    • Nonprofitorganisation
    • Miljøagentur
    • Udlejning af billboards
    • Fotografi
    • Cykeludlejning
    • Softwareforhandler
    Gennemse alle brancher
  • Community
    Få mere at vide
    • Tutorials
    • Dokumentation
    • Certificeringer
    • Oplæring
    • Blog
    • Podcast
    Bliv klogere
    • Udannelselsesprogram
    • Scale Up!-virksomhedsspillet
    • Besøg Odoo
    Få softwaren
    • Download
    • Sammenlign versioner
    • Udgaver
    Samarbejde
    • Github
    • Forum
    • Arrangementer
    • Oversættelser
    • Bliv partner
    • Tjenester til partnere
    • Registrér dit regnskabsfirma
    Modtag tjenester
    • Find en partner
    • Find en bogholder
    • Kontakt en rådgiver
    • Implementeringstjenester
    • Kundereferencer
    • Support
    • Opgraderinger
    Github Youtube Twitter LinkedIn Instagram Facebook Spotify
    +1 (650) 691-3277
    Få en demo
  • Prissætning
  • Hjælp

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

  • CRM
  • e-Commerce
  • Bogføring
  • Lager
  • PoS
  • Projekt
  • MRP
All apps
Du skal være registreret for at interagere med fællesskabet.
All Posts People Emblemer
Tags (View all)
odoo accounting v14 pos v15
Om dette forum
Du skal være registreret for at interagere med fællesskabet.
All Posts People Emblemer
Tags (View all)
odoo accounting v14 pos v15
Om dette forum
Hjælp

Qweb - Drop trailing 0's after decimal

Tilmeld

Få besked, når der er aktivitet på dette indlæg

Dette spørgsmål er blevet anmeldt
qwebreportingreport
8 Besvarelser
23273 Visninger
Avatar
Cliff Kujala

How can we format values on Qweb reports to only drop the trailing 0's after the decimal poing in Qweb v8 reports?  Such that 1.0000 would display as 1, 1.5000 would display as 1.5, and 1.5250 would display as 1.525?

Can it be a modification to formatLang(<<your value>>,digits=0)

I want my quantities in Quotes/Sales Orders/Invoice reports to appear like this https://www.purekarting.com/odoo/lightspeedinvoice.pdf instead of how they are currently like this https://www.purekarting.com/odoo/sale.report_saleorder.pdf

0
Avatar
Kassér
Avatar
Cyrus Waithaka
Bedste svar

Qweb allows you to run python expressions using t-esc and t-raw tags. This should therefore work: 

t-esc="int(float(l.quantity))"

I hope this helps.

5
Avatar
Kassér
Avatar
Stephen Mack
Bedste svar

Don't believe there is code to do that.  You will probably need to write some code to handle the special formatting you require.

How about trying this piece of coding based on the text of your question/answer:

<t t-set="mod_qty">
    formatLang(l.product_uom_qty, digit=0)
</t>

<t t-if="mod_qty == l.product_uom_qty">
    <t t-esc="mod_qty" />
</t>

<t t-if="mod_qty != l.product_uom_qty">
    <t t-esc="(l.product_uom_qty * 1)" />
</t>

Or this generic code that will print your list of numbers.

<t t-foreach="[3.000, 3.050, 3.005, 3.0005]" t-as="my_qty">
    <t t-set="mod_qty">
        formatLang(my_qty, digit=0)
    </t>

    <t t-if="mod_qty == my_qty">
        <p><t t-esc="mod_qty"/></p>
    </t>

    <t t-if="mod_qty != my_qty">
        <p><t t-esc="(my_qty * 1)"/></p>
    </t>
</t>

1
Avatar
Kassér
Avatar
Cliff Kujala
Forfatter Bedste svar

I've gotten closer.

https://www.purekarting.com/odoo/sale.report_saleorder_closer.pdf

By using <t t-esc="(l.product_uom_qty * 1)" />, it converts the qty from a string to a number.  Trailing zeros past the first decimal precision are dropped in numbers.

So, seeing as how I have decimal precision set to 3 on product_uom_qty, values will be reported as:

3.000 prints as 3.0
3.050 prints as 3.05
3.005 prints as 3.005
3.0005 is rounded up by Odoo to 3.001, and then prints as 3.001

Close but not perfect.  I'd like to drop that trailing .0 from the whole number quantities still.

0
Avatar
Kassér
Stephen Mack

Why not handle that case in an if statement. Test to see if you have a whole number and then use formatLang to remove the zeros just for whole numbers. Seems you have everything else covered.

Cliff Kujala
Forfatter

Any idea how to check if whole number? IF WHOLE IF NOT THEN THIS FOR w/ Decimals I've also ready through this: https://www.odoo.com/documentation/master/reference/qweb.html There is simply no detailed documentation on writing the conditionals. I also wonder if the decimal trim can't just be done with a t-field-options setting, in the same way we format date fields on reports. However, I can't find the documentation explaining the t-field-options which are available for each specific field. From the Qweb documentation: t-field-options can be used to customize fields, the most common option is widget, other options are field- or widget-dependent.

Stephen Mack

why cant you truncate it to a whole number in formatLang then test it against the original value. If they are equal then it is a whole number and you print the truncated number if not then you print your formatted decimal.

Stephen Mack

I have updated my answer above. Give that a try.

Avatar
Erhuvwu Akpobaro
Bedste svar

what you could  do is :

import openerp.addons.decimal_precision as dp

and also  for example this will allow your field to acces the decimal accuary of account so if you set account to have 8 decimal places your field will have 8 decimal places:

'rent':fields.float('Rent',digits_compute= dp.get_precision('Account')), 

 

 

 

-1
Avatar
Kassér
Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Tilmeld dig
Related Posts Besvarelser Visninger Aktivitet
[SOLVED]Retrieving the product template linked to a variant selected in treeview Løst
qweb reporting report
Avatar
Avatar
Avatar
3
mar. 18
8815
How to generate custom report with custom data from a wizard? v16 Løst
qweb reporting report odoo16features
Avatar
Avatar
1
maj 24
4520
How to add the order number in the footer (QWEB)
qweb reporting report odoo10
Avatar
0
jul. 17
4386
odoo 16 report target new page scss
qweb report
Avatar
Avatar
1
apr. 25
2184
Missing external identifier on new external layout template Løst
qweb report
Avatar
Avatar
2
mar. 25
2777
Community
  • Tutorials
  • Dokumentation
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Oversættelser
Tjenester
  • Odoo.sh-hosting
  • Support
  • Opgradere
  • Individuelt tilpasset udvikling
  • Uddannelse
  • Find en bogholder
  • Find en partner
  • Bliv partner
Om os
  • Vores virksomhed
  • Brandaktiver
  • Kontakt os
  • Stillinger
  • Arrangementer
  • Podcast
  • Blog
  • Kunder
  • Juridiske dokumenter • Privatlivspolitik
  • Sikkerhedspolitik
الْعَرَبيّة 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 er en samling open source-forretningsapps, der dækker alle dine virksomhedsbehov – lige fra CRM, e-handel og bogføring til lagerstyring, POS, projektledelse og meget mere.

Det unikke ved Odoo er, at systemet både er brugervenligt og fuldt integreret.

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