This question has been flagged
2 Replies
2953 Views

hello  I would like to convert the amount of my bill letter

Avatar
Discard
Best Answer

you can use amount_to_text, this function can develop by your self, you can found this function in ...\openerp\tools

use this function in your mudole like in \account_check_writing\account_voucher.py 

from openerp.osv import osv,fields
from openerp.tools.translate import _
from openerp.tools.amount_to_text_en import amount_to_text
from lxml import etree

class account_voucher(osv.osv):

...........

Avatar
Discard

AFAIK, only English (not properly configured), Dutch, and French are supported out of the box. You need to create your own module for other language.

Author Best Answer

thanks i will trie and tell you bac

Avatar
Discard