Skip to Content
Odoo Menu
  • Prisijungti
  • Išbandykite nemokamai
  • Programėlės
    Finansai
    • Apskaita
    • Pateikimas apmokėjimui
    • Sąnaudos
    • Skaičiuoklė (BI)
    • Dokumentai
    • Pasirašymas
    Pardavimai
    • CRM
    • Pardavimai
    • Kasų sistema - Parduotuvė
    • Kasų sistema - Restoranas
    • Prenumeratos
    • Nuoma
    Svetainės
    • Svetainių kūrėjimo įrankis
    • El. Prekyba
    • Internetinis Tinklaraštis
    • Forumas
    • Tiesioginis pokalbis
    • eMokymasis
    Tiekimo grandinė
    • Atsarga
    • Gamyba
    • PLM
    • Įsigijimai
    • Priežiūra
    • Kokybė
    Žmogaus ištekliai
    • Darbuotojai
    • Įdarbinimas
    • Atostogos
    • Įvertinimai
    • Rekomendacijos
    • Transporto priemonės
    Rinkodara
    • Socialinė rinkodara
    • Rinkodara el. paštu
    • SMS rinkodara
    • Renginiai
    • Rinkodaros automatizavimas
    • Apklausos
    Paslaugos
    • Projektas
    • Darbo laiko žiniaraščiai
    • Priežiūros tarnyba
    • Pagalbos tarnyba
    • Planavimas
    • Rezervacijos
    Produktyvumas
    • Diskucija
    • Patvirtinimai
    • IoT
    • VoIP
    • Žinių biblioteka
    • WhatsApp
    Trečiųjų šalių programos Odoo Studija Odoo debesijos platforma
  • Pramonės šakos
    Mažmeninė prekyba
    • Knygynas
    • Drabužių parduotuvė
    • Baldų parduotuvė
    • Maisto prekių parduotuvė
    • Techninės įrangos parduotuvė
    • Žaislų parduotuvė
    Food & Hospitality
    • Barai ir pub'ai
    • Restoranas
    • Greitasis maistas
    • Guest House
    • Gėrimų platintojas
    • Hotel
    Nekilnojamasis turtas
    • Real Estate Agency
    • Architektūros įmonė
    • Konstrukcija
    • Estate Managament
    • Sodininkauti
    • Turto savininkų asociacija
    Konsultavimas
    • Accounting Firm
    • Odoo Partneris
    • Marketing Agency
    • Teisinė firma
    • Talentų paieška
    • Auditai & sertifikavimas
    Gamyba
    • Textile
    • Metal
    • Furnitures
    • Maistas
    • Brewery
    • Įmonių dovanos
    Sveikata & Fitnesas
    • Sporto klubas
    • Akinių parduotuvė
    • Fitneso Centras
    • Sveikatos praktikai
    • Vaistinė
    • Kirpėjas
    Trades
    • Handyman
    • IT įranga ir palaikymas
    • Saulės energijos sistemos
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Kiti
    • Nonprofit Organization
    • Aplinkos agentūra
    • Reklaminių stendų nuoma
    • Fotografavimas
    • Dviračių nuoma
    • Programinės įrangos perpardavėjas
    Browse all Industries
  • Bendrija
    Mokykitės
    • Mokomosios medžiagos
    • Dokumentacija
    • Sertifikatai
    • Mokymai
    • Internetinis Tinklaraštis
    • Tinklalaidės
    Skatinkite švietinimą
    • Švietimo programa
    • Scale Up! Verslo žaidimas
    • Aplankykite Odoo
    Gaukite programinę įrangą
    • Atsisiųsti
    • Palyginkite versijas
    • Leidimai
    Bendradarbiauti
    • Github
    • Forumas
    • Renginiai
    • Vertimai
    • Tapkite partneriu
    • Services for Partners
    • Registruokite jūsų apskaitos įmonę
    Gaukite paslaugas
    • Susiraskite partnerį
    • Susirask buhalterį
    • Susitikti su konsultantu
    • Diegimo paslaugos
    • Klientų rekomendavimas
    • Palaikymas
    • Atnaujinimai
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Gaukite demo
  • Kainodara
  • Pagalba

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

  • CRM
  • e-Commerce
  • Apskaita
  • Atsarga
  • PoS
  • Projektas
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Žymos (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Žymos (View all)
odoo accounting v14 pos v15
About this forum
Pagalba

Qweb - Drop trailing 0's after decimal

Prenumeruoti

Get notified when there's activity on this post

This question has been flagged
qwebreportingreport
8 Replies
23276 Rodiniai
Portretas
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
Portretas
Atmesti
Portretas
Cyrus Waithaka
Best Answer

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
Portretas
Atmesti
Portretas
Stephen Mack
Best Answer

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
Portretas
Atmesti
Portretas
Cliff Kujala
Autorius Best Answer

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
Portretas
Atmesti
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
Autorius

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.

Portretas
Erhuvwu Akpobaro
Best Answer

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
Portretas
Atmesti
Enjoying the discussion? Don't just read, join in!

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

Registracija
Related Posts Replies Rodiniai Veikla
[SOLVED]Retrieving the product template linked to a variant selected in treeview Solved
qweb reporting report
Portretas
Portretas
Portretas
3
kov. 18
8818
How to generate custom report with custom data from a wizard? v16 Solved
qweb reporting report odoo16features
Portretas
Portretas
1
geg. 24
4525
How to add the order number in the footer (QWEB)
qweb reporting report odoo10
Portretas
0
liep. 17
4387
odoo 16 report target new page scss
qweb report
Portretas
Portretas
1
bal. 25
2187
Missing external identifier on new external layout template Solved
qweb report
Portretas
Portretas
2
kov. 25
2779
Bendrija
  • Mokomosios medžiagos
  • Dokumentacija
  • Forumas
Atvirasis kodas
  • Atsisiųsti
  • Github
  • Runbot
  • Vertimai
Paslaugos
  • Odoo.sh talpinimas
  • Palaikymas
  • Atnaujinti
  • Pritaikytas programavimo kūrimas
  • Švietimas
  • Susirask buhalterį
  • Susiraskite partnerį
  • Tapkite partneriu
Apie mus
  • Mūsų įmonė
  • Prekės ženklo turtas
  • Susisiekite su mumis
  • Darbo pasiūlymai
  • Renginiai
  • Tinklalaidės
  • Internetinis Tinklaraštis
  • Klientai
  • Teisinis • Privatumas
  • Saugumas
الْعَرَبيّة 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 yra atvirojo kodo verslo programų rinkinys, kuris apima visas įmonės poreikius: CRM, El. Prekybą, Apskaitą, Atsargų, Kasų sistemą, Projektų valdymą ir kt.

Unikali Odoo vertės pasiūla – būti tuo pačiu metu labai lengvai naudojama ir visiškai integruota sistema.

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