[merge] merge from lp:~openerp/openobject-server/5.0/
[odoo/odoo.git] / bin / tools / amount_to_text_en.py
1 # -*- coding: utf-8 -*-
2 ##############################################################################
3 #    
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>).
6 #
7 #    This program is free software: you can redistribute it and/or modify
8 #    it under the terms of the GNU Affero General Public License as
9 #    published by the Free Software Foundation, either version 3 of the
10 #    License, or (at your option) any later version.
11 #
12 #    This program is distributed in the hope that it will be useful,
13 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
14 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 #    GNU Affero General Public License for more details.
16 #
17 #    You should have received a copy of the GNU Affero General Public License
18 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.     
19 #
20 ##############################################################################
21
22 #-------------------------------------------------------------
23 #ENGLISH
24 #-------------------------------------------------------------
25 from tools.translate import _
26
27 to_19 = ( 'Zero',  'One',   'Two',  'Three', 'Four',   'Five',   'Six',
28           'Seven', 'Eight', 'Nine', 'Ten',   'Eleven', 'Twelve', 'Thirteen',
29           'Fourteen', 'Fifteen', 'Sixteen', 'Seventeen', 'Eighteen', 'Nineteen' )
30 tens  = ( 'Twenty', 'Thirty', 'Forty', 'Fifty', 'Sixty', 'Seventy', 'Eighty', 'Ninety')
31 denom = ( '',
32           'Thousand',     'Million',         'Billion',       'Trillion',       'Quadrillion',
33           'Quintillion',  'Sextillion',      'Septillion',    'Octillion',      'Nonillion',
34           'Decillion',    'Undecillion',     'Duodecillion',  'Tredecillion',   'Quattuordecillion',
35           'Sexdecillion', 'Septendecillion', 'Octodecillion', 'Novemdecillion', 'Vigintillion' )
36
37 # convert a value < 100 to English.
38 def _convert_nn(val):
39     if val < 20:
40         return to_19[val]
41     for (dcap, dval) in ((k, 20 + (10 * v)) for (v, k) in enumerate(tens)):
42         if dval + 10 > val:
43             if val % 10:
44                 return dcap + '-' + to_19[val % 10]
45             return dcap
46
47 # convert a value < 1000 to english, special cased because it is the level that kicks 
48 # off the < 100 special case.  The rest are more general.  This also allows you to
49 # get strings in the form of 'forty-five hundred' if called directly.
50 def _convert_nnn(val):
51     word = ''
52     (mod, rem) = (val % 100, val // 100)
53     if rem > 0:
54         word = to_19[rem] + ' Hundred'
55         if mod > 0:
56             word = word + ' '
57     if mod > 0:
58         word = word + _convert_nn(mod)
59     return word
60
61 def english_number(val):
62     if val < 100:
63         return _convert_nn(val)
64     if val < 1000:
65          return _convert_nnn(val)
66     for (didx, dval) in ((v - 1, 1000 ** v) for v in range(len(denom))):
67         if dval > val:
68             mod = 1000 ** didx
69             l = val // mod
70             r = val - (l * mod)
71             ret = _convert_nnn(l) + ' ' + denom[didx]
72             if r > 0:
73                 ret = ret + ', ' + english_number(r)
74             return ret
75
76 def amount_to_text(number, currency):
77     units_name = currency
78     list = str(number).split('.')
79     start_word = english_number(int(list[0]))
80     end_word = english_number(int(list[1]))
81     cents_number = int(list[1])
82     cents_name = (cents_number > 1) and 'Cents' or 'Cent'
83     final_result = start_word +' '+units_name+' and ' + end_word +' '+cents_name
84     return final_result
85
86
87 #-------------------------------------------------------------
88 # Generic functions
89 #-------------------------------------------------------------
90
91 _translate_funcs = {'en' : amount_to_text}
92     
93 #TODO: we should use the country AND language (ex: septante VS soixante dix)
94 #TODO: we should use en by default, but the translation func is yet to be implemented
95 def amount_to_text(nbr, lang='en', currency='euro'):
96     """
97     Converts an integer to its textual representation, using the language set in the context if any.
98     Example:
99         1654: thousands six cent cinquante-quatre.
100     """
101     import netsvc
102 #    if nbr > 10000000:
103 #        netsvc.Logger().notifyChannel('translate', netsvc.LOG_WARNING, _("Number too large '%d', can not translate it"))
104 #        return str(nbr)
105     
106     if not _translate_funcs.has_key(lang):
107         netsvc.Logger().notifyChannel('translate', netsvc.LOG_WARNING, _("no translation function found for lang: '%s'" % (lang,)))
108         #TODO: (default should be en) same as above
109         lang = 'en'
110     return _translate_funcs[lang](abs(nbr), currency)
111
112 if __name__=='__main__':
113     from sys import argv
114     
115     lang = 'nl'
116     if len(argv) < 2:
117         for i in range(1,200):
118             print i, ">>", int_to_text(i, lang)
119         for i in range(200,999999,139):
120             print i, ">>", int_to_text(i, lang)
121     else:
122         print int_to_text(int(argv[1]), lang)
123