Localizza le valute in italiano per amount_to_text
Project description
Italiano
Il core di Odoo fornisce amount_to_text, il quale converte importi numerici in testo ottenendo la lingua dal contesto fornito o dalle impostazioni utente/partner, con alcune limitazioni.
Esempio: 45,75 €
Lingua utente “Inglese” → Forty-Five Euros and Seventy-Five Cents
Lingua utente “Italiano” → Quarantacinque Euros e Settantacinque Cents
L’unità/sottounità di valuta non viene tradotta e non viene gestita la forma singolare. Inoltre tutte le parole possiedono l’iniziale maiuscola, forma non corretta nella lingua italiana.
Questo modulo fornisce una base per tradurre le unità/sottounità di valuta, adattando le parole alle regole della lingua italiana.
Vengono inoltre gestite le eccezioni per la forma singolare delle valute EUR, USD, GBP e CNY.
Esempio: 1,01 €
La parte intera diventa “un euro”, non “uno euro”
La parte decimale diventa “un centesimo”, non “uno centesimi”
English
Odoo core provides amount_to_text, which converts numerical amounts to text getting language from given context or user/partner setting, with some limitations.
Example: 45,75 €
User Language ‘English’ -> Forty-Five Euros and Seventy-Five Cents
User Language ‘Italian’ -> Quaranta Euros e Settantacinque Cents
Currency unit/subunit is not translated and singular form is not handled. Moreover all words are capitalized, which is incorrect in italian language.
This module provides a base for translating currency unit/subunit adapting words to italian language rules.
Singular form expections for EUR, USD, GBP and CNY currencies are handled as well.
Example: 1,01 €
Integer part becomes “un euro”, not “uno euro”
Decimal part becomes “un centesimo”, not “uno centesimi”
Table of contents
Configuration
Italiano
Versione libreria num2words >= 0.5.12
English
num2words library version >= 0.5.12
Usage
Italiano
Chiamare la funzione amount_to_text nel modello valuta (res.currency).
Per esempio, se è necessario convertire un importo in testo aggiungere questo codice ai report:
<t t-foreach="docs" t-as="o"> <t t-set="currency" t-value="o.currency_id"/> # Language obtained from context <t t-esc="currency.with_context({'lang': 'it_IT'}).amount_to_text(45.75)"/> # Language obtained from user/partner settings. # If not it_IT, Odoo core amount_to_text will be used. <t t-esc="currency.amount_to_text(45.75)"/> </t>
English
Call function amount_to_text in currency model (res.currency).
For example, add this code if you need to convert amount to text in your reports:
<t t-foreach="docs" t-as="o"> <t t-set="currency" t-value="o.currency_id"/> # Language obtained from context <t t-esc="currency.with_context({'lang': 'it_IT'}).amount_to_text(45.75)"/> # Language obtained from user/partner settings. # If not it_IT, Odoo core amount_to_text will be used. <t t-esc="currency.amount_to_text(45.75)"/> </t>
Bug Tracker
Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. If you spotted it first, help us to smash it by providing a detailed and welcomed feedback.
Do not contact contributors directly about support or help with technical issues.
Credits
Contributors
Saran Lim. <saranl@ecosoft.co.th>
Pimolnat Suntian <pimolnats@ecosoft.co.th>
Sergio Zanchetta <https://github.com/primes2h>
Maintainers
This module is maintained by the OCA.
OCA, or the Odoo Community Association, is a nonprofit organization whose mission is to support the collaborative development of Odoo features and promote its widespread use.
This module is part of the OCA/l10n-italy project on GitHub.
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
File details
Details for the file odoo14_addon_l10n_it_amount_to_text-14.0.1.0.1.dev3-py3-none-any.whl
.
File metadata
- Download URL: odoo14_addon_l10n_it_amount_to_text-14.0.1.0.1.dev3-py3-none-any.whl
- Upload date:
- Size: 28.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 123a078858bd6260bfc41614f2248be4bb39f29e61f4ffefcac2158f4492ba60 |
|
MD5 | 99420cb6ad57a2b7020e254a39d872a6 |
|
BLAKE2b-256 | a4f18ce7c6fd8b19c27a7131070703f353c41a4b0644d9cb774486459b566ac6 |