Odoo 12字数

问题描述 投票:0回答:1

如何使用num2words中的Odoo 12库在Invoice报告中显示Total Amount

我在num2words找到了/base/models/res_currency.py功能

@api.multi
def amount_to_text(self, amount):
    self.ensure_one()
    def _num2words(number, lang):
        try:
            return num2words(number, lang=lang).title()
        except NotImplementedError:
            return num2words(number, lang='en').title()

    if num2words is None:
        logging.getLogger(__name__).warning("The library 'num2words' is missing, cannot render textual amounts.")
        return ""

    formatted = "%.{0}f".format(self.decimal_places) % amount
    parts = formatted.partition('.')
    integer_value = int(parts[0])
    fractional_value = int(parts[2] or 0)

    lang_code = self.env.context.get('lang') or self.env.user.lang
    lang = self.env['res.lang'].search([('code', '=', lang_code)])
    amount_words = tools.ustr('{amt_value} {amt_word}').format(
                    amt_value=_num2words(integer_value, lang=lang.iso_code),
                    amt_word=self.currency_unit_label,
                    )
    if not self.is_zero(amount - integer_value):
        amount_words += ' ' + _('and') + tools.ustr(' {amt_value} {amt_word}').format(
                    amt_value=_num2words(fractional_value, lang=lang.iso_code),
                    amt_word=self.currency_subunit_label,
                    )
    return amount_words
python-3.x python-3.5 odoo odoo-12
1个回答
0
投票

基本上如果方法返回文本>> return amount_words <<并且要求将参数传递给数字>> def amount_to_text(self,amount):<<你可以做什么

考虑到方法是有效的! <<

@api.one
def amount_in_words_from_number(self):
    amount_in_number = 12345
    amount_in_words = ''
    #Pass the amount in number as parameter which should return number in text
    amount_in_words = self.amount_to_text(amount_in_number)
    print("Amount in words", amount_in_words)
© www.soinside.com 2019 - 2024. All rights reserved.