Skip to Content
Меню
Вам необхідно зареєструватися, щоб взаємодіяти зі спільнотою.
Це запитання позначене
2 Відповіді
1954 Переглядів

I'm using odoo version 15 and I want to convert numbers to text and I tried 

from odoo.tools import amout_to_text_en

but it didn't work for me
I got the error message :

ImportError: cannot import name 'amount_to_text_en' from 'odoo.tools'


I even tried to import the amount_to_text function from odoo.addons.base.models.res_currency but it didn't work as well

Аватар
Відмінити
Автор Найкраща відповідь

Here's the solution that worked for me


def amount_to_text(self, amount, currency):        
​return currency.amount_to_text(amount)




Аватар
Відмінити
Найкраща відповідь

Hi,


You can use num2words for converting numbers to text.


from num2words import num2words

#Inside your function,

words = num2words(amount, lang='en')


Hope it helps

Аватар
Відмінити
Related Posts Відповіді Переглядів Дія
2
січ. 23
4836
1
черв. 22
3155
1
трав. 22
3443
1
груд. 21
2759
4
бер. 25
51745