Přejít na obsah
Odoo Menu
  • Přihlásit se
  • Vyzkoušejte zdarma
  • Aplikace
    Finance
    • Účetnictví
    • Fakturace
    • Výdaje
    • Spreadsheet (BI)
    • Dokumenty
    • Podpisy
    Prodej
    • CRM
    • Prodej
    • POS Obchod
    • POS Restaurace
    • Předplatné
    • Pronájem
    Webové stránky
    • Webové stránky
    • E-shop
    • Blog
    • Fórum
    • Živý chat
    • eLearning
    Dodavatelský řetězec
    • Sklad
    • Výroba
    • PLM
    • Nákup
    • Údržba
    • Kvalita
    Lidské zdroje
    • Zaměstnanci
    • Nábor
    • Volno
    • Hodnocení zaměstnanců
    • Doporučení
    • Vozový park
    Marketing
    • Marketing sociálních sítí
    • Emailový marketing
    • SMS Marketing
    • Události
    • Marketingová automatizace
    • Dotazníky
    Služby
    • Projekt
    • Časové výkazy
    • Práce v terénu
    • Helpdesk
    • Plánování
    • Schůzky
    Produktivita
    • Diskuze
    • Schvalování
    • IoT
    • VoIP
    • Znalosti
    • WhatsApp
    Aplikace třetích stran Odoo Studio Odoo cloudová platforma
  • Branže
    Maloobchod
    • Knihkupectví
    • Obchod s oblečením
    • Obchod s nábytkem
    • Potraviny
    • Obchod s hardwarem
    • Hračkářství
    Jídlo a pohostinství
    • Bar a Pub
    • Restaurace
    • Fast Food
    • Penzion
    • Distributor nápojů
    • Hotel
    Nemovitost
    • Realitní kancelář
    • Architektonická firma
    • Stavba
    • Správa nemovitostí
    • Zahradnictví
    • Asociace vlastníků nemovitosti
    Poradenství
    • Účetní firma
    • Odoo Partner
    • Marketingová agentura
    • Právník
    • Akvizice talentů
    • Audit a certifikace
    Výroba
    • Textil
    • Kov
    • Nábytek
    • Jídlo
    • Pivovar
    • Korporátní dárky
    Zdraví a fitness
    • Sportovní klub
    • Prodejna brýli
    • Fitness Centrum
    • Wellness praktikové
    • Lékárna
    • Kadeřnictví
    Transakce
    • Údržbář
    • Podpora IT & hardware
    • Systémy solární energie
    • Výrobce obuvi
    • Úklidové služby
    • Služby HVAC
    Ostatní
    • Nezisková organizace
    • Agentura pro životní prostředí
    • Pronájem billboardů
    • Fotografování
    • Leasing jízdních kol
    • Prodejce softwaru
    Procházet všechna odvětví
  • Komunita
    Edukační program
    • Tutoriály
    • Dokumentace
    • Certifikace
    • Vzdělávání
    • Blog
    • Podcast
    Podpora vzdělávání
    • Vzdělávací program
    • Scale Up! Hra na firmu
    • Navštivte Odoo
    Získat software
    • Stáhnout
    • Porovnejte edice
    • Verze
    Spolupráce
    • Github
    • Fórum
    • Události
    • Překlady
    • Stát se partnerem
    • Služby pro partnery
    • Registrujte svou účetní firmu
    Získat služby
    • Najít partnera
    • Najít účetní
    • Setkejte se s poradcem
    • Implementační služby
    • Zákaznické reference
    • Podpora
    • Upgrady
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Dohodnout demo
  • Ceník
  • Pomoc

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

  • CRM
  • e-Commerce
  • Účetnictví
  • Sklad
  • PoS
  • Projekty
  • MRP
All apps
You need to be registered to interact with the community.
All Posts Lidé Odznaky
Štítky (View all)
odoo accounting v14 pos v15
O tomto fóru
You need to be registered to interact with the community.
All Posts Lidé Odznaky
Štítky (View all)
odoo accounting v14 pos v15
O tomto fóru
Pomoc

How to format Amount Paid on customer invoices

Odebírat

Get notified when there's activity on this post

This question has been flagged
qwebinvoicescurrencyformatting
4 Odpovědi
9619 Zobrazení
Avatar
Iming Chan

Dear all,

I'm new to Odoo 8 and Qweb, so I'm looking for help to get my customer invoice report right.

On this report, there is an "Amount Paid" field:

<td><strong>Amount Paid</strong></td>

<td class="text-right">AUD$

<span t-raw="o.amount_total - o.residual"/>

When I print the report (in PDF), it shows detail as "AUD$13.5" instead of "AUD$13.50" (with 2 decimal places to be consistant with rest of this report).  On the screen, it does show with two (2) decimal places (which is consistant with Australian currency practice).

Can anyone help to get this corrected?

Thank you again for your help in advance.  Much appreciated.

Kind regards,

Iming

1
Avatar
Zrušit
Avatar
Virali
Nejlepší odpověď

Hii Iming Chan ,

May be this will help you. put this code instead yours.

<span t-raw="formatLang(o.amount_total - o.residual or 0, digits=2)"/> 

1
Avatar
Zrušit
Avatar
Yannick Yaskos
Nejlepší odpověď

please i also have problem to interpred this code in my qweb report i new in  odoo v8 and i try to custum my quotation report


<tr class="border-black">

<td><strong>Total</strong></td>

<td class="text-right">

<span t-field="o.amount_total" t-field-options="{"widget": "monetary", "display_currency": "o.pricelist_id.currency_id"}"/>

</td>

</tr>

 

0
Avatar
Zrušit
Matjaz

This isn't hard to understand: -

; new row with black border - Total; new column with bold text "Total" - ; another column with text right oriented - ; in upper cell that has text right oriented value of database column amount_total that is 'monetary' formated (with thousand and decimal characters and currency symbol at the end)
Avatar
Matjaz
Nejlepší odpověď

Hello,

I have the same problem in Odoo8 Qweb reporting.

Decimal Accuracy is set and it's working nicely if number in Qweb is defined as "t-field".

If you need to calculate or call function you need to do it with "t-esc" function and in that case number is not formatted correctly. As I saw, you can use "formalLang" but you have to wrap old RML parser with Qweb one as in "report_payslip".

But isn't this nonsense. We are throving away RML reporting in behalf of Qweb and now wrapping it again? What will happen in Odoo 9, will this solution work also (as I know there will be no support for RML)?

What can be done? Call a function and format a number on 'python' side ???


Thanks for any information or solution,

Matjaž

0
Avatar
Zrušit
Avatar
Juan Muñoz
Nejlepší odpověď

Hi Iming,

In order to change the digits you must go to Settings/Technical/Database Structure/Decimal Accuracy and here can change all the fields digits.

In order to change the decimal or thousand separator, you must go to Settings/Translations/Languages, select your language and change the values.

Hope this will help you!

Regards, 

Juan.

0
Avatar
Zrušit
Enjoying the discussion? Don't just read, join in!

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

Přihlásit se
Related Posts Odpovědi Zobrazení Aktivita
How to style product description output in sale.order report template?
qweb formatting template
Avatar
Avatar
1
bře 21
4249
How to display the shipping address in my invoice report - Odoo 12 Community version
qweb invoices shipping
Avatar
0
led 20
4317
Change the number format in Odoo 8
currency formatting number
Avatar
Avatar
Avatar
5
lis 16
11968
Issue with Currency Display in Odoo QWeb Report (Odoo 17)
qweb currency reports odoo17
Avatar
Avatar
Avatar
2
lis 25
2505
Qweb foreign currency printing problem Vyřešeno
qweb currency ecommerce website_sale
Avatar
Avatar
Avatar
3
říj 25
5536
Komunita
  • Tutoriály
  • Dokumentace
  • Fórum
Open Source
  • Stáhnout
  • Github
  • Runbot
  • Překlady
Služby
  • Odoo.sh hostování
  • Podpora
  • Upgrade
  • Nestandardní vývoj
  • Edukační program
  • Najít účetní
  • Najít partnera
  • Stát se partnerem
O nás
  • Naše společnost
  • Podklady značky
  • Kontakujte nás
  • Práce
  • Události
  • Podcast
  • Blog
  • Zákazníci
  • Právní dokumenty • Soukromí
  • Zabezpečení
الْعَرَبيّة 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 je balíček open-source aplikací, které pokrývají všechny potřeby vaší společnosti: CRM, e-shop, účetnictví, sklady, kasy, projektové řízení a další.

Unikátní nabídka od Odoo poskytuje velmi jednoduché uživatelské rozhraní a vše je integrované na jednom místě.

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