├── report_aeroo ├── .gitignore ├── barcode │ ├── courB08.pbm │ ├── courB08.pil │ ├── FreeMonoBold.ttf │ ├── __init__.py │ ├── barcode.py │ ├── code39.py │ ├── code128.py │ └── EANBarCode.py ├── ctt_languages │ ├── __init__.py │ ├── en_US │ │ ├── currencies │ │ │ ├── __init__.py │ │ │ ├── eur.py │ │ │ ├── lvl.py │ │ │ ├── usd.py │ │ │ ├── mxn.py │ │ │ ├── trl.py │ │ │ └── ltl.py │ │ └── __init__.py │ ├── es_ES │ │ ├── currencies │ │ │ ├── __init__.py │ │ │ ├── eur.py │ │ │ ├── mxn.py │ │ │ └── usd.py │ │ └── __init__.py │ ├── lt_LT │ │ ├── currencies │ │ │ ├── __init__.py │ │ │ ├── eur.py │ │ │ ├── ltl.py │ │ │ ├── lvl.py │ │ │ ├── usd.py │ │ │ └── uah.py │ │ └── __init__.py │ ├── lv_LV │ │ ├── currencies │ │ │ ├── __init__.py │ │ │ ├── eur.py │ │ │ ├── mxn.py │ │ │ ├── ltl.py │ │ │ ├── lvl.py │ │ │ ├── uah.py │ │ │ ├── rub.py │ │ │ ├── trl.py │ │ │ └── usd.py │ │ └── __init__.py │ ├── ru_RU │ │ ├── currencies │ │ │ ├── __init__.py │ │ │ ├── eur.py │ │ │ ├── ltl.py │ │ │ ├── lvl.py │ │ │ ├── uah.py │ │ │ ├── rub.py │ │ │ └── usd.py │ │ └── __init__.py │ ├── tr_TR │ │ ├── currencies │ │ │ ├── __init__.py │ │ │ ├── usd.py │ │ │ ├── eur.py │ │ │ ├── trl.py │ │ │ └── lvl.py │ │ └── __init__.py │ └── uk_UA │ │ ├── currencies │ │ ├── __init__.py │ │ ├── eur.py │ │ ├── ltl.py │ │ ├── lvl.py │ │ ├── rub.py │ │ ├── uah.py │ │ └── usd.py │ │ └── __init__.py ├── static │ └── description │ │ └── icon.png ├── config_pixmaps │ └── module_banner.png ├── README.md ├── security │ └── ir.model.access.csv ├── data │ └── report_aeroo_data.xml ├── wizard │ ├── __init__.py │ ├── remove_print_button_view.xml │ ├── add_print_button_view.xml │ ├── report_print_by_action.py │ ├── remove_print_button.py │ ├── add_print_button.py │ ├── report_actions.py │ ├── report_import_wizard.py │ └── report_print_actions.py ├── report_controller.py ├── __init__.py ├── check_deps.py ├── report.py ├── installer.xml ├── installer.py ├── __openerp__.py └── ctt_objects.py ├── report_aeroo_ooo ├── .gitignore ├── test_temp.odt ├── config_pixmaps │ └── module_banner.png ├── README.md ├── report_view.xml ├── data │ └── report_aeroo_data.xml ├── check_deps.py ├── __init__.py ├── __openerp__.py ├── report.py ├── installer.xml ├── installer.py └── DocumentConverter.py ├── report_aeroo_sample ├── .gitignore ├── report │ ├── template.odt │ ├── report_sample.xml │ ├── __init__.py │ └── parser.py ├── README.md ├── wizard │ ├── __init__.py │ ├── sample_report_view.xml │ └── sample_report.py ├── __init__.py └── __openerp__.py ├── README.md └── .gitignore /report_aeroo/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /report_aeroo_ooo/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /report_aeroo_sample/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /report_aeroo_ooo/test_temp.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamotion/aeroo/HEAD/report_aeroo_ooo/test_temp.odt -------------------------------------------------------------------------------- /report_aeroo/barcode/courB08.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamotion/aeroo/HEAD/report_aeroo/barcode/courB08.pbm -------------------------------------------------------------------------------- /report_aeroo/barcode/courB08.pil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamotion/aeroo/HEAD/report_aeroo/barcode/courB08.pil -------------------------------------------------------------------------------- /report_aeroo/ctt_languages/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf8 -*- 3 | # Please do not edit this file! 4 | -------------------------------------------------------------------------------- /report_aeroo/barcode/FreeMonoBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamotion/aeroo/HEAD/report_aeroo/barcode/FreeMonoBold.ttf -------------------------------------------------------------------------------- /report_aeroo_sample/report/template.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamotion/aeroo/HEAD/report_aeroo_sample/report/template.odt -------------------------------------------------------------------------------- /report_aeroo/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamotion/aeroo/HEAD/report_aeroo/static/description/icon.png -------------------------------------------------------------------------------- /report_aeroo/config_pixmaps/module_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamotion/aeroo/HEAD/report_aeroo/config_pixmaps/module_banner.png -------------------------------------------------------------------------------- /report_aeroo/ctt_languages/en_US/currencies/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf8 -*- 3 | # Please do not edit this file! 4 | -------------------------------------------------------------------------------- /report_aeroo/ctt_languages/es_ES/currencies/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf8 -*- 3 | # Please do not edit this file! 4 | -------------------------------------------------------------------------------- /report_aeroo/ctt_languages/lt_LT/currencies/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf8 -*- 3 | # Please do not edit this file! 4 | -------------------------------------------------------------------------------- /report_aeroo/ctt_languages/lv_LV/currencies/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf8 -*- 3 | # Please do not edit this file! 4 | -------------------------------------------------------------------------------- /report_aeroo/ctt_languages/ru_RU/currencies/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf8 -*- 3 | # Please do not edit this file! 4 | -------------------------------------------------------------------------------- /report_aeroo/ctt_languages/tr_TR/currencies/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf8 -*- 3 | # Please do not edit this file! 4 | -------------------------------------------------------------------------------- /report_aeroo/ctt_languages/uk_UA/currencies/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf8 -*- 3 | # Please do not edit this file! 4 | -------------------------------------------------------------------------------- /report_aeroo_ooo/config_pixmaps/module_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamotion/aeroo/HEAD/report_aeroo_ooo/config_pixmaps/module_banner.png -------------------------------------------------------------------------------- /report_aeroo/README.md: -------------------------------------------------------------------------------- 1 | report_aeroo 2 | ============ 3 | 4 | Aeroo Reports for Odoo (8.0) 5 | 6 | For further Informations on Aeroo Reports please visit the main repository containing all plugins. 7 | 8 | Main Repository https://github.com/jamotion/aeroo.git 9 | -------------------------------------------------------------------------------- /report_aeroo_sample/README.md: -------------------------------------------------------------------------------- 1 | report_aeroo_sample 2 | =================== 3 | 4 | Sample Aeroo Report for Odoo (8.0) 5 | 6 | For further Informations on Aeroo Reports please visit the main repository containing all plugins. 7 | 8 | Main Repository https://github.com/jamotion/aeroo.git 9 | -------------------------------------------------------------------------------- /report_aeroo_ooo/README.md: -------------------------------------------------------------------------------- 1 | report_aeroo_ooo 2 | ================ 3 | 4 | Aeroo Reports OpenOffice Connector for Odoo (8.0) 5 | 6 | For further Informations on Aeroo Reports please visit the main repository containing all plugins. 7 | 8 | Main Repository https://github.com/jamotion/aeroo.git 9 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Aeroo Reports for OpenERP / Odoo 8.0 2 | ==================================== 3 | 4 | The official release of aeroo reports for Odoo 8.0 is available 5 | ---------------------------------------------------------------- 6 | 7 | So please call all your questions, issues and pull request on https://github.com/aeroo. 8 | 9 | Thanks for all your help! 10 | 11 | Kind Regards 12 | 13 | Renzo 14 | -------------------------------------------------------------------------------- /report_aeroo/security/ir.model.access.csv: -------------------------------------------------------------------------------- 1 | "id","name","model_id:id","group_id:id","perm_read","perm_write","perm_create","perm_unlink" 2 | "report_stylesheets","report.stylesheets","model_report_stylesheets","base.group_system",1,1,1,1 3 | "report_stylesheets_user","report.stylesheets.user","model_report_stylesheets",,1,0,0,0 4 | "report_mimetypes_system","report.mimetypes.system","model_report_mimetypes","base.group_system",1,1,1,1 5 | "report_mimetypes_user","report.mimetypes.user","model_report_mimetypes","base.group_user",1,0,0,0 6 | -------------------------------------------------------------------------------- /report_aeroo/ctt_languages/en_US/currencies/eur.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf8 -*- 3 | 4 | from openerp.addons.report_aeroo.ctt_objects import ctt_currency 5 | 6 | class eur(ctt_currency): 7 | def _init_currency(self): 8 | self.language = u'en_US' 9 | self.code = u'EUR' 10 | self.fractions = 100 11 | self.cur_singular = u' euro' 12 | self.cur_plural = u' euro' 13 | self.frc_singular = u' cent' 14 | self.frc_plural = u' cents' 15 | # grammatical genders: f - feminine, m - masculine, n -neuter 16 | self.cur_gram_gender = 'm' 17 | self.frc_gram_gender = 'm' 18 | 19 | eur() 20 | -------------------------------------------------------------------------------- /report_aeroo/ctt_languages/en_US/currencies/lvl.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf8 -*- 3 | 4 | from openerp.addons.report_aeroo.ctt_objects import ctt_currency 5 | 6 | class lvl(ctt_currency): 7 | def _init_currency(self): 8 | self.language = u'en_US' 9 | self.code = u'LVL' 10 | self.fractions = 100 11 | self.cur_singular = u' lat' 12 | self.cur_plural = u' lats' 13 | self.frc_singular = u' santim' 14 | self.frc_plural = u' santims' 15 | # grammatical genders: f - feminine, m - masculine, n -neuter 16 | self.cur_gram_gender = 'm' 17 | self.frc_gram_gender = 'm' 18 | 19 | lvl() 20 | -------------------------------------------------------------------------------- /report_aeroo/ctt_languages/es_ES/currencies/eur.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf8 -*- 3 | 4 | from openerp.addons.report_aeroo.ctt_objects import ctt_currency 5 | 6 | class eur(ctt_currency): 7 | def _init_currency(self): 8 | self.language = u'es_ES' 9 | self.code = u'EUR' 10 | self.fractions = 100 11 | self.cur_singular = u' euro' 12 | self.cur_plural = u' euros' 13 | self.frc_singular = u' centavo' 14 | self.frc_plural = u' centavos' 15 | # grammatical genders: f - feminine, m - masculine, n -neuter 16 | self.cur_gram_gender = 'm' 17 | self.frc_gram_gender = 'm' 18 | 19 | eur() 20 | -------------------------------------------------------------------------------- /report_aeroo/ctt_languages/es_ES/currencies/mxn.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf8 -*- 3 | 4 | from openerp.addons.report_aeroo.ctt_objects import ctt_currency 5 | 6 | class mxn(ctt_currency): 7 | def _init_currency(self): 8 | self.language = u'es_ES' 9 | self.code = u'MXN' 10 | self.fractions = 100 11 | self.cur_singular = u' peso' 12 | self.cur_plural = u' pesos' 13 | self.frc_singular = u' centavo' 14 | self.frc_plural = u' centavos' 15 | # grammatical genders: f - feminine, m - masculine, n -neuter 16 | self.cur_gram_gender = 'm' 17 | self.frc_gram_gender = 'm' 18 | 19 | mxn() 20 | -------------------------------------------------------------------------------- /report_aeroo/ctt_languages/en_US/currencies/usd.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf8 -*- 3 | 4 | from openerp.addons.report_aeroo.ctt_objects import ctt_currency 5 | 6 | class usd(ctt_currency): 7 | def _init_currency(self): 8 | self.language = u'en_US' 9 | self.code = u'USD' 10 | self.fractions = 100 11 | self.cur_singular = u' US dollar' 12 | self.cur_plural = u' US dollars' 13 | self.frc_singular = u' cent' 14 | self.frc_plural = u' cents' 15 | # grammatical genders: f - feminine, m - masculine, n -neuter 16 | self.cur_gram_gender = 'm' 17 | self.frc_gram_gender = 'm' 18 | 19 | usd() 20 | -------------------------------------------------------------------------------- /report_aeroo/ctt_languages/en_US/currencies/mxn.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf8 -*- 3 | 4 | from openerp.addons.report_aeroo.ctt_objects import ctt_currency 5 | 6 | class mxn(ctt_currency): 7 | def _init_currency(self): 8 | self.language = u'en_US' 9 | self.code = u'MXN' 10 | self.fractions = 100 11 | self.cur_singular = u' Mexican peso' 12 | self.cur_plural = u' Mexican pesos' 13 | self.frc_singular = u' cent' 14 | self.frc_plural = u' cents' 15 | # grammatical genders: f - feminine, m - masculine, n -neuter 16 | self.cur_gram_gender = 'm' 17 | self.frc_gram_gender = 'm' 18 | 19 | mxn() 20 | -------------------------------------------------------------------------------- /report_aeroo/ctt_languages/en_US/currencies/trl.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf8 -*- 3 | 4 | from openerp.addons.report_aeroo.ctt_objects import ctt_currency 5 | 6 | class trl(ctt_currency): 7 | def _init_currency(self): 8 | self.language = u'en_US' 9 | self.code = u'TRL' 10 | self.fractions = 100 11 | self.cur_singular = u' Turkish lira' 12 | self.cur_plural = u' Turkish Liras' 13 | self.frc_singular = u' kurus' 14 | self.frc_plural = u' kuruss' 15 | # grammatical genders: f - feminine, m - masculine, n -neuter 16 | self.cur_gram_gender = 'm' 17 | self.frc_gram_gender = 'm' 18 | 19 | trl() 20 | -------------------------------------------------------------------------------- /report_aeroo/ctt_languages/en_US/currencies/ltl.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf8 -*- 3 | 4 | from openerp.addons.report_aeroo.ctt_objects import ctt_currency 5 | 6 | class ltl(ctt_currency): 7 | def _init_currency(self): 8 | self.language = u'en_US' 9 | self.code = u'LTL' 10 | self.fractions = 100 11 | self.cur_singular = u' Lithuanian litas' 12 | self.cur_plural = u' Lithuanian litas' 13 | self.frc_singular = u' cent' 14 | self.frc_plural = u' cents' 15 | # grammatical genders: f - feminine, m - masculine, n -neuter 16 | self.cur_gram_gender = 'm' 17 | self.frc_gram_gender = 'm' 18 | 19 | ltl() 20 | -------------------------------------------------------------------------------- /report_aeroo/ctt_languages/es_ES/currencies/usd.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf8 -*- 3 | 4 | from openerp.addons.report_aeroo.ctt_objects import ctt_currency 5 | 6 | class usd(ctt_currency): 7 | def _init_currency(self): 8 | self.language = u'es_ES' 9 | self.code = u'USD' 10 | self.fractions = 100 11 | self.cur_singular = u' dólar Américano' 12 | self.cur_plural = u' dólares Américanos' 13 | self.frc_singular = u' centavo' 14 | self.frc_plural = u' centavos' 15 | # grammatical genders: f - feminine, m - masculine, n -neuter 16 | self.cur_gram_gender = 'm' 17 | self.frc_gram_gender = 'm' 18 | 19 | usd() 20 | -------------------------------------------------------------------------------- /report_aeroo/ctt_languages/tr_TR/currencies/usd.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf8 -*- 3 | 4 | from openerp.addons.report_aeroo.ctt_objects import ctt_currency 5 | 6 | class usd(ctt_currency): 7 | def _init_currency(self): 8 | self.language = u'tr_TR' 9 | self.code = u'USD' 10 | self.fractions = 100 11 | self.cur_singular = u' USD' 12 | # default plural form for currency 13 | self.cur_plural = u' USD' 14 | self.frc_singular = u' sent' 15 | # default plural form for fractions 16 | self.frc_plural = u' sent' 17 | # grammatical genders: f - feminine, m - masculine, n -neuter 18 | self.cur_gram_gender = 'm' 19 | self.frc_gram_gender = 'm' 20 | 21 | usd() 22 | -------------------------------------------------------------------------------- /report_aeroo/ctt_languages/tr_TR/currencies/eur.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf8 -*- 3 | 4 | from openerp.addons.report_aeroo.ctt_objects import ctt_currency 5 | 6 | class eur(ctt_currency): 7 | def _init_currency(self): 8 | self.language = u'tr_TR' 9 | self.code = u'EUR' 10 | self.fractions = 100 11 | self.cur_singular = u' Euro' 12 | # default plural form for currency 13 | self.cur_plural = u' Euro' 14 | self.frc_singular = u' sent' 15 | # default plural form for fractions 16 | self.frc_plural = u' sent' 17 | # grammatical genders: f - feminine, m - masculine, n -neuter 18 | self.cur_gram_gender = 'm' 19 | self.frc_gram_gender = 'm' 20 | 21 | eur() 22 | -------------------------------------------------------------------------------- /report_aeroo/ctt_languages/tr_TR/currencies/trl.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf8 -*- 3 | 4 | from openerp.addons.report_aeroo.ctt_objects import ctt_currency 5 | 6 | class trl(ctt_currency): 7 | def _init_currency(self): 8 | self.language = u'tr_TR' 9 | self.code = u'TRL' 10 | self.fractions = 100 11 | self.cur_singular = u' Lira' 12 | # default plural form for currency 13 | self.cur_plural = u' Lira' 14 | self.frc_singular = u' kuruş' 15 | # default plural form for fractions 16 | self.frc_plural = u' kuruş' 17 | # grammatical genders: f - feminine, m - masculine, n -neuter 18 | self.cur_gram_gender = 'm' 19 | self.frc_gram_gender = 'm' 20 | 21 | trl() 22 | -------------------------------------------------------------------------------- /report_aeroo/ctt_languages/uk_UA/currencies/eur.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf8 -*- 3 | 4 | from openerp.addons.report_aeroo.ctt_objects import ctt_currency 5 | 6 | class eur(ctt_currency): 7 | def _init_currency(self): 8 | self.language = u'uk_UA' 9 | self.code = u'EUR' 10 | self.fractions = 100 11 | self.cur_singular = u' евро' 12 | self.cur_plural = u' евро' 13 | self.frc_singular = u' цент' 14 | # default plural form for fractions 15 | self.frc_plural = u' центов' 16 | self.frc_plural_2to4 = u' цента' 17 | # grammatical genders: f - feminine, m - masculine, n -neuter 18 | self.cur_gram_gender = 'm' 19 | self.frc_gram_gender = 'm' 20 | 21 | eur() 22 | -------------------------------------------------------------------------------- /report_aeroo/ctt_languages/ru_RU/currencies/eur.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf8 -*- 3 | 4 | from openerp.addons.report_aeroo.ctt_objects import ctt_currency 5 | 6 | class eur(ctt_currency): 7 | def _init_currency(self): 8 | self.language = u'ru_RU' 9 | self.code = u'EUR' 10 | self.fractions = 100 11 | self.cur_singular = u' евро' 12 | self.cur_plural = u' евро' 13 | self.frc_singular = u' цент' 14 | # default plural form for fractions 15 | self.frc_plural = u' центов' 16 | self.frc_plural_2_to4 = u' цента' 17 | 18 | # grammatical genders: f - feminine, m - masculine, n -neuter 19 | self.cur_gram_gender = 'm' 20 | self.frc_gram_gender = 'm' 21 | 22 | eur() 23 | -------------------------------------------------------------------------------- /report_aeroo/ctt_languages/tr_TR/currencies/lvl.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf8 -*- 3 | 4 | from openerp.addons.report_aeroo.ctt_objects import ctt_currency 5 | 6 | class lvl(ctt_currency): 7 | def _init_currency(self): 8 | self.language = u'tr_TR' 9 | self.code = u'LVL' 10 | self.fractions = 100 11 | self.cur_singular = u' Litvanya Liatası' 12 | # default plural form for currency 13 | self.cur_plural = u' Litvanya Liatası' 14 | self.frc_singular = u' santim' 15 | # default plural form for fractions 16 | self.frc_plural = u' santims' 17 | # grammatical genders: f - feminine, m - masculine, n -neuter 18 | self.cur_gram_gender = 'm' 19 | self.frc_gram_gender = 'm' 20 | 21 | lvl() 22 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Byte-compiled / optimized / DLL files 2 | __pycache__/ 3 | *.py[cod] 4 | 5 | # C extensions 6 | *.so 7 | 8 | # Distribution / packaging 9 | .Python 10 | env/ 11 | bin/ 12 | build/ 13 | develop-eggs/ 14 | dist/ 15 | eggs/ 16 | lib/ 17 | lib64/ 18 | parts/ 19 | sdist/ 20 | var/ 21 | *.egg-info/ 22 | .installed.cfg 23 | *.egg 24 | 25 | # Installer logs 26 | pip-log.txt 27 | pip-delete-this-directory.txt 28 | 29 | # Unit test / coverage reports 30 | htmlcov/ 31 | .tox/ 32 | .coverage 33 | .cache 34 | nosetests.xml 35 | coverage.xml 36 | 37 | # Translations 38 | *.mo 39 | 40 | # Mr Developer 41 | .mr.developer.cfg 42 | .project 43 | .pydevproject 44 | 45 | # Rope 46 | .ropeproject 47 | 48 | # Django stuff: 49 | *.log 50 | *.pot 51 | 52 | # Sphinx documentation 53 | docs/_build/ 54 | 55 | -------------------------------------------------------------------------------- /report_aeroo/ctt_languages/lv_LV/currencies/eur.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf8 -*- 3 | 4 | from openerp.addons.report_aeroo.ctt_objects import ctt_currency 5 | 6 | class eur(ctt_currency): 7 | def _init_currency(self): 8 | self.language = u'lv_LV' 9 | self.code = u'EUR' 10 | self.fractions = 100 11 | self.cur_singular = u' eiro' 12 | self.cur_plural = u' eiro' 13 | self.frc_singular = u' cents' 14 | # default plural form for fractions 15 | self.frc_plural = u' centu' 16 | # betwean 1 and 10 yields different plural form, if defined 17 | self.frc_plural_2to10 = u' centi' 18 | # grammatical genders: f - feminine, m - masculine, n -neuter 19 | self.cur_gram_gender = 'm' 20 | self.frc_gram_gender = 'm' 21 | 22 | eur() 23 | -------------------------------------------------------------------------------- /report_aeroo/ctt_languages/lv_LV/currencies/mxn.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf8 -*- 3 | 4 | from openerp.addons.report_aeroo.ctt_objects import ctt_currency 5 | 6 | class mxn(ctt_currency): 7 | def _init_currency(self): 8 | self.language = u'lv_LV' 9 | self.code = u'MXN' 10 | self.fractions = 100 11 | self.cur_singular = u' Meksikas peso' 12 | self.cur_plural = self.cur_singular 13 | self.frc_singular = u' cents' 14 | # default plural form for fractions 15 | self.frc_plural = u' centu' 16 | # betwean 1 and 10 yields different plural form, if defined 17 | self.frc_plural_2to10 = u' centi' 18 | # grammatical genders: f - feminine, m - masculine, n -neuter 19 | self.cur_gram_gender = 'm' 20 | self.frc_gram_gender = 'm' 21 | 22 | mxn() 23 | -------------------------------------------------------------------------------- /report_aeroo/ctt_languages/ru_RU/currencies/ltl.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf8 -*- 3 | 4 | from openerp.addons.report_aeroo.ctt_objects import ctt_currency 5 | 6 | class ltl(ctt_currency): 7 | def _init_currency(self): 8 | self.language = u'ru_RU' 9 | self.code = u'LTL' 10 | self.fractions = 100 11 | self.cur_singular = u' лит' 12 | # default plural form for currency 13 | self.cur_plural = u' литов' 14 | self.cur_plural_2to4 = u' лита' 15 | self.frc_singular = u' цент' 16 | # default plural form for fractions 17 | self.frc_plural = u' центов' 18 | self.frc_plural_2to4 = u' цента' 19 | # grammatical genders: f - feminine, m - masculine, n -neuter 20 | self.cur_gram_gender = 'm' 21 | self.frc_gram_gender = 'm' 22 | 23 | ltl() 24 | -------------------------------------------------------------------------------- /report_aeroo/ctt_languages/uk_UA/currencies/ltl.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf8 -*- 3 | 4 | from openerp.addons.report_aeroo.ctt_objects import ctt_currency 5 | 6 | class ltl(ctt_currency): 7 | def _init_currency(self): 8 | self.language = u'uk_UA' 9 | self.code = u'LTL' 10 | self.fractions = 100 11 | self.cur_singular = u' лит' 12 | # default plural form for currency 13 | self.cur_plural = u' литов' 14 | self.cur_plural_2to4 = u' лита' 15 | self.frc_singular = u' цент' 16 | # default plural form for fractions 17 | self.frc_plural = u' центов' 18 | self.frc_plural_2to4 = u' цента' 19 | # grammatical genders: f - feminine, m - masculine, n -neuter 20 | self.cur_gram_gender = 'm' 21 | self.frc_gram_gender = 'm' 22 | 23 | ltl() 24 | -------------------------------------------------------------------------------- /report_aeroo/ctt_languages/ru_RU/currencies/lvl.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf8 -*- 3 | 4 | from openerp.addons.report_aeroo.ctt_objects import ctt_currency 5 | 6 | class lvl(ctt_currency): 7 | def _init_currency(self): 8 | self.language = u'ru_RU' 9 | self.code = u'LVL' 10 | self.fractions = 100 11 | self.cur_singular = u' лат' 12 | # default plural form for currency 13 | self.cur_plural = u' латов' 14 | self.cur_plural_2to4 = u' лата' 15 | self.frc_singular = u' сантим' 16 | # default plural form for fractions 17 | self.frc_plural = u' сантимов' 18 | self.frc_plural_2to4 = u' сантима' 19 | # grammatical genders: f - feminine, m - masculine, n -neuter 20 | self.cur_gram_gender = 'm' 21 | self.frc_gram_gender = 'm' 22 | 23 | lvl() 24 | -------------------------------------------------------------------------------- /report_aeroo/ctt_languages/ru_RU/currencies/uah.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf8 -*- 3 | 4 | from openerp.addons.report_aeroo.ctt_objects import ctt_currency 5 | 6 | class uah(ctt_currency): 7 | def _init_currency(self): 8 | self.language = u'ru_RU' 9 | self.code = u'UAH' 10 | self.fractions = 100 11 | self.cur_singular = u' гривна' 12 | # default plural form for currency 13 | self.cur_plural = u' гривен' 14 | self.cur_plural_2to4 = u' гривны' 15 | self.frc_singular = u' копeйка' 16 | # default plural form for fractions 17 | self.frc_plural = u' копeек' 18 | self.frc_plural_2to4 = u' копeйки' 19 | # grammatical genders: f - feminine, m - masculine, n -neuter 20 | self.cur_gram_gender = 'f' 21 | self.frc_gram_gender = 'f' 22 | 23 | uah() 24 | -------------------------------------------------------------------------------- /report_aeroo/ctt_languages/uk_UA/currencies/lvl.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf8 -*- 3 | 4 | from openerp.addons.report_aeroo.ctt_objects import ctt_currency 5 | 6 | class lvl(ctt_currency): 7 | def _init_currency(self): 8 | self.language = u'uk_UA' 9 | self.code = u'LVL' 10 | self.fractions = 100 11 | self.cur_singular = u' лат' 12 | # default plural form for currency 13 | self.cur_plural = u' латов' 14 | self.cur_plural_2to3 = u' лата' 15 | self.frc_singular = u' сантим' 16 | # default plural form for fractions 17 | self.frc_plural = u' сантимов' 18 | self.frc_plural_2to3 = u' сантима' 19 | # grammatical genders: f - feminine, m - masculine, n -neuter 20 | self.cur_gram_gender = 'm' 21 | self.frc_gram_gender = 'm' 22 | 23 | lvl() 24 | -------------------------------------------------------------------------------- /report_aeroo/ctt_languages/uk_UA/currencies/rub.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf8 -*- 3 | 4 | from openerp.addons.report_aeroo.ctt_objects import ctt_currency 5 | 6 | class rub(ctt_currency): 7 | def _init_currency(self): 8 | self.language = u'uk_UA' 9 | self.code = u'RUB' 10 | self.fractions = 100 11 | self.cur_singular = u' рубль' 12 | # default plural form for currency 13 | self.cur_plural = u' рублiв' 14 | self.cur_plural_2to4 = u' рубля' 15 | self.frc_singular = u' копійка' 16 | # default plural form for fractions 17 | self.frc_plural = u' копійок' 18 | self.frc_plural_2to4 = u' копійки' 19 | # grammatical genders: f - feminine, m - masculine, n -neuter 20 | self.cur_gram_gender = 'm' 21 | self.frc_gram_gender = 'f' 22 | 23 | rub() 24 | -------------------------------------------------------------------------------- /report_aeroo/ctt_languages/uk_UA/currencies/uah.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf8 -*- 3 | 4 | from openerp.addons.report_aeroo.ctt_objects import ctt_currency 5 | 6 | class uah(ctt_currency): 7 | def _init_currency(self): 8 | self.language = u'uk_UA' 9 | self.code = u'UAH' 10 | self.fractions = 100 11 | self.cur_singular = u' гривня' 12 | # default plural form for currency 13 | self.cur_plural = u' гривень' 14 | self.cur_plural_2to4 = u' гривні' 15 | self.frc_singular = u' копійка' 16 | # default plural form for fractions 17 | self.frc_plural = u' копійок' 18 | self.frc_plural_2to4 = u' копійки' 19 | # grammatical genders: f - feminine, m - masculine, n -neuter 20 | self.cur_gram_gender = 'f' 21 | self.frc_gram_gender = 'f' 22 | 23 | uah() 24 | -------------------------------------------------------------------------------- /report_aeroo/ctt_languages/ru_RU/currencies/rub.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf8 -*- 3 | 4 | from openerp.addons.report_aeroo.ctt_objects import ctt_currency 5 | 6 | class rub(ctt_currency): 7 | def _init_currency(self): 8 | self.language = u'ru_RU' 9 | self.code = u'RUB' 10 | self.fractions = 100 11 | self.cur_singular = u' рубль' 12 | # default plural form for currency 13 | self.cur_plural = u' рублей' 14 | self.cur_plural_2to4 = u' рубля' 15 | self.frc_singular = u' копейка' 16 | # default plural form for fractions 17 | self.frc_plural = u' копеек' 18 | self.frc_plural_2to4 = u' копейки' 19 | # grammatical genders: f - feminine, m - masculine, n -neuter 20 | self.cur_gram_gender = 'm' 21 | self.frc_gram_gender = 'f' 22 | 23 | rub() 24 | -------------------------------------------------------------------------------- /report_aeroo/ctt_languages/uk_UA/currencies/usd.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf8 -*- 3 | 4 | from openerp.addons.report_aeroo.ctt_objects import ctt_currency 5 | 6 | class usd(ctt_currency): 7 | def _init_currency(self): 8 | self.language = u'uk_UA' 9 | self.code = u'USD' 10 | self.fractions = 100 11 | self.cur_singular = u' доллара США' 12 | # default plural form for currency 13 | self.cur_plural = u' долларов США' 14 | self.cur_plural_2to4 = u' доллара США' 15 | self.frc_singular = u' цент' 16 | # default plural form for fractions 17 | self.frc_plural = u' центов' 18 | self.frc_plural_2to4 = u' цента' 19 | # grammatical genders: f - feminine, m - masculine, n -neuter 20 | self.cur_gram_gender = 'm' 21 | self.frc_gram_gender = 'm' 22 | 23 | usd() 24 | -------------------------------------------------------------------------------- /report_aeroo/ctt_languages/ru_RU/currencies/usd.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf8 -*- 3 | 4 | from openerp.addons.report_aeroo.ctt_objects import ctt_currency 5 | 6 | class usd(ctt_currency): 7 | def _init_currency(self): 8 | self.language = u'ru_RU' 9 | self.code = u'USD' 10 | self.fractions = 100 11 | self.cur_singular = u' доллара США' 12 | # default plural form for currency 13 | self.cur_plural = u' долларов США' 14 | self.cur_frc_plural_2to4 = u' доллара США' 15 | self.frc_singular = u' цент' 16 | # default plural form for fractions 17 | self.frc_plural = u' центов' 18 | self.frc_plural_2to4 = u' цента' 19 | # grammatical genders: f - feminine, m - masculine, n -neuter 20 | self.cur_gram_gender = 'm' 21 | self.frc_gram_gender = 'm' 22 | 23 | usd() 24 | -------------------------------------------------------------------------------- /report_aeroo/data/report_aeroo_data.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | ODF Text Document (.odt) 7 | oo-odt 8 | oo-odt 9 | 10 | 11 | 12 | ODF Spreadsheet (.ods) 13 | oo-ods 14 | oo-ods 15 | 16 | 17 | 18 | Generic 19 | genshi-raw 20 | genshi-raw 21 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /report_aeroo/ctt_languages/lv_LV/currencies/ltl.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf8 -*- 3 | 4 | from openerp.addons.report_aeroo.ctt_objects import ctt_currency 5 | 6 | class ltl(ctt_currency): 7 | def _init_currency(self): 8 | self.language = u'lv_LV' 9 | self.code = u'LTL' 10 | self.fractions = 100 11 | self.cur_singular = u' lits' 12 | # default plural form for currency 13 | self.cur_plural = u' litu' 14 | # betwean 1 and 10 yields different plural form, if defined 15 | self.cur_plural_2to10 = u' liti' 16 | self.frc_singular = u' cents' 17 | # default plural form for fractions 18 | self.frc_plural = u' centu' 19 | # betwean 1 and 10 yields different plural form, if defined 20 | self.frc_plural_2to10 = u' centi' 21 | # grammatical genders: f - feminine, m - masculine, n -neuter 22 | self.cur_gram_gender = 'm' 23 | self.frc_gram_gender = 'm' 24 | 25 | ltl() 26 | -------------------------------------------------------------------------------- /report_aeroo/ctt_languages/lt_LT/currencies/eur.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf8 -*- 3 | 4 | from openerp.addons.report_aeroo.ctt_objects import ctt_currency 5 | 6 | class eur(ctt_currency): 7 | def _init_currency(self): 8 | self.language = u'lt_LT' 9 | self.code = u'EUR' 10 | self.fractions = 100 11 | self.cur_singular = u' euras' 12 | # default plural form for currency 13 | self.cur_plural = u' eurų' 14 | # betwean 1 and 10 yields different plural form, if defined 15 | self.cur_plural_2to10 = u' eurai' 16 | self.frc_singular = u' centas' 17 | # default plural form for fractions 18 | self.frc_plural = u' centų' 19 | # betwean 1 and 10 yields different plural form, if defined 20 | self.frc_plural_2to10 = u' centai' 21 | # grammatical genders: f - feminine, m - masculine, n -neuter 22 | self.cur_gram_gender = 'm' 23 | self.frc_gram_gender = 'm' 24 | 25 | eur() 26 | -------------------------------------------------------------------------------- /report_aeroo/ctt_languages/lt_LT/currencies/ltl.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf8 -*- 3 | 4 | from openerp.addons.report_aeroo.ctt_objects import ctt_currency 5 | 6 | class ltl(ctt_currency): 7 | def _init_currency(self): 8 | self.language = u'lt_LT' 9 | self.code = u'LTL' 10 | self.fractions = 100 11 | self.cur_singular = u' litas' 12 | # default plural form for currency 13 | self.cur_plural = u' litų' 14 | # betwean 1 and 10 yields different plural form, if defined 15 | self.cur_plural_2to10 = u' litai' 16 | self.frc_singular = u' centas' 17 | # default plural form for fractions 18 | self.frc_plural = u' centų' 19 | # betwean 1 and 10 yields different plural form, if defined 20 | self.frc_plural_2to10 = u' centai' 21 | # grammatical genders: f - feminine, m - masculine, n -neuter 22 | self.cur_gram_gender = 'm' 23 | self.frc_gram_gender = 'm' 24 | 25 | ltl() 26 | -------------------------------------------------------------------------------- /report_aeroo/ctt_languages/lv_LV/currencies/lvl.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf8 -*- 3 | 4 | from openerp.addons.report_aeroo.ctt_objects import ctt_currency 5 | 6 | class lvl(ctt_currency): 7 | def _init_currency(self): 8 | self.language = u'lv_LV' 9 | self.code = u'LVL' 10 | self.fractions = 100 11 | self.cur_singular = u' lats' 12 | # default plural form for currency 13 | self.cur_plural = u' latu' 14 | # betwean 1 and 10 yields different plural form, if defined 15 | self.cur_plural_2to10 = u' lati' 16 | self.frc_singular = u' santīms' 17 | # default plural form for fractions 18 | self.frc_plural = u' santīmi' 19 | # betwean 1 and 10 yields different plural form, if defined 20 | self.frc_plural_2to10 = u' santīmu' 21 | # grammatical genders: f - feminine, m - masculine, n -neuter 22 | self.cur_gram_gender = 'm' 23 | self.frc_gram_gender = 'm' 24 | 25 | lvl() 26 | -------------------------------------------------------------------------------- /report_aeroo/ctt_languages/lv_LV/currencies/uah.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf8 -*- 3 | 4 | from openerp.addons.report_aeroo.ctt_objects import ctt_currency 5 | 6 | class uah(ctt_currency): 7 | def _init_currency(self): 8 | self.language = u'lv_LV' 9 | self.code = u'UAH' 10 | self.fractions = 100 11 | self.cur_singular = u' grivna' 12 | # default plural form for currency 13 | self.cur_plural = u' grivnu' 14 | # betwean 1 and 10 yields different plural form, if defined 15 | self.cur_plural_2to10 = u' grivnas' 16 | self.frc_singular = u' kapeika' 17 | # default plural form for fractions 18 | self.frc_plural = u' kapeiku' 19 | # betwean 1 and 10 yields different plural form, if defined 20 | self.frc_plural_2to10 = u' kapeikas' 21 | # grammatical genders: f - feminine, m - masculine, n -neuter 22 | self.cur_gram_gender = 'f' 23 | self.frc_gram_gender = 'f' 24 | uah() 25 | -------------------------------------------------------------------------------- /report_aeroo/ctt_languages/lt_LT/currencies/lvl.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf8 -*- 3 | 4 | from openerp.addons.report_aeroo.ctt_objects import ctt_currency 5 | 6 | class lvl(ctt_currency): 7 | def _init_currency(self): 8 | self.language = u'lt_LT' 9 | self.code = u'LVL' 10 | self.fractions = 100 11 | self.cur_singular = u' latas' 12 | # default plural form for currency 13 | self.cur_plural = u' latų' 14 | # betwean 1 and 10 yields different plural form, if defined 15 | self.cur_plural_2to10 = u' latai' 16 | self.frc_singular = u' santimas' 17 | # default plural form for fractions 18 | self.frc_plural = u' santimų' 19 | # betwean 1 and 10 yields different plural form, if defined 20 | self.frc_plural_2to10 = u' santimai' 21 | # grammatical genders: f - feminine, m - masculine, n -neuter 22 | self.cur_gram_gender = 'm' 23 | self.frc_gram_gender = 'm' 24 | 25 | lvl() 26 | -------------------------------------------------------------------------------- /report_aeroo/ctt_languages/lt_LT/currencies/usd.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf8 -*- 3 | 4 | from openerp.addons.report_aeroo.ctt_objects import ctt_currency 5 | 6 | class usd(ctt_currency): 7 | def _init_currency(self): 8 | self.language = u'lt_LT' 9 | self.code = u'USD' 10 | self.fractions = 100 11 | self.cur_singular = u' doleris' 12 | # default plural form for currency 13 | self.cur_plural = u' dolerių' 14 | # betwean 1 and 10 yields different plural form, if defined 15 | self.cur_plural_2to10 = u' doleriai' 16 | self.frc_singular = u' centas' 17 | # default plural form for fractions 18 | self.frc_plural = u' centų' 19 | # betwean 1 and 10 yields different plural form, if defined 20 | self.frc_plural_2to10 = u' centai' 21 | # grammatical genders: f - feminine, m - masculine, n -neuter 22 | self.cur_gram_gender = 'm' 23 | self.frc_gram_gender = 'm' 24 | 25 | usd() 26 | -------------------------------------------------------------------------------- /report_aeroo/ctt_languages/lv_LV/currencies/rub.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf8 -*- 3 | 4 | from openerp.addons.report_aeroo.ctt_objects import ctt_currency 5 | 6 | class rub(ctt_currency): 7 | def _init_currency(self): 8 | self.language = u'lv_LV' 9 | self.code = u'RUB' 10 | self.fractions = 100 11 | self.cur_singular = u' rublis' 12 | # default plural form for currency 13 | self.cur_plural = u' rubļu' 14 | # betwean 1 and 10 yields different plural form, if defined 15 | self.cur_plural_2to10 = u' rubļi' 16 | self.frc_singular = u' kapeika' 17 | # default plural form for fractions 18 | self.frc_plural = u' kapeiku' 19 | # betwean 1 and 10 yields different plural form, if defined 20 | self.frc_plural_2to10 = u' kapeikas' 21 | # grammatical genders: f - feminine, m - masculine, n -neuter 22 | self.cur_gram_gender = 'm' 23 | self.frc_gram_gender = 'f' 24 | 25 | rub() 26 | -------------------------------------------------------------------------------- /report_aeroo/ctt_languages/lt_LT/currencies/uah.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf8 -*- 3 | 4 | from openerp.addons.report_aeroo.ctt_objects import ctt_currency 5 | 6 | class uah(ctt_currency): 7 | def _init_currency(self): 8 | self.language = u'lt_LT' 9 | self.code = u'UAH' 10 | self.fractions = 100 11 | self.cur_singular = u' grivna' 12 | # default plural form for currency 13 | self.cur_plural = u' grivnų' 14 | # betwean 1 and 10 yields different plural form, if defined 15 | self.cur_plural_2to10 = u' grivnai' 16 | self.frc_singular = u' kapeika' 17 | # default plural form for fractions 18 | self.frc_plural = u' kapeikų' 19 | # betwean 1 and 10 yields different plural form, if defined 20 | self.frc_plural_2to10 = u' kapeikos' 21 | # grammatical genders: f - feminine, m - masculine, n -neuter 22 | self.cur_gram_gender = 'm' 23 | self.frc_gram_gender = 'm' 24 | 25 | uah() 26 | -------------------------------------------------------------------------------- /report_aeroo/ctt_languages/lv_LV/currencies/trl.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf8 -*- 3 | 4 | from openerp.addons.report_aeroo.ctt_objects import ctt_currency 5 | 6 | class trl(ctt_currency): 7 | def _init_currency(self): 8 | self.language = u'lv_LV' 9 | self.code = u'TRL' 10 | self.fractions = 100 11 | self.cur_singular = u' Turku lira' 12 | # default plural form for currency 13 | self.cur_plural = u' Turku liru' 14 | # betwean 1 and 10 yields different plural form, if defined 15 | self.cur_plural_2to10 = u' Turku liras' 16 | self.frc_singular = u' kurušs' 17 | # default plural form for fractions 18 | self.frc_plural = u' kurušu' 19 | # betwean 1 and 10 yields different plural form, if defined 20 | self.frc_plural_2to10 = u' kuruši' 21 | # grammatical genders: f - feminine, m - masculine, n -neuter 22 | self.cur_gram_gender = 'f' 23 | self.frc_gram_gender = 'm' 24 | 25 | trl() 26 | -------------------------------------------------------------------------------- /report_aeroo/ctt_languages/lv_LV/currencies/usd.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf8 -*- 3 | 4 | from openerp.addons.report_aeroo.ctt_objects import ctt_currency 5 | 6 | class usd(ctt_currency): 7 | def _init_currency(self): 8 | self.language = u'lv_LV' 9 | self.code = u'USD' 10 | self.fractions = 100 11 | self.cur_singular = u' ASV dolārs' 12 | # default plural form for currency 13 | self.cur_plural = u' ASV dolāru' 14 | # betwean 1 and 10 yields different plural form, if defined 15 | self.cur_plural_2to10 = u' ASV dolāri' 16 | self.frc_singular = u' cents' 17 | # default plural form for fractions 18 | self.frc_plural = u' centu' 19 | # betwean 1 and 10 yields different plural form, if defined 20 | self.frc_plural_2to10 = u' centi' 21 | # grammatical genders: f - feminine, m - masculine, n -neuter 22 | self.cur_gram_gender = 'm' 23 | self.frc_gram_gender = 'm' 24 | 25 | usd() 26 | -------------------------------------------------------------------------------- /report_aeroo_sample/wizard/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | ############################################################################## 3 | # 4 | # OpenERP, Open Source Management Solution 5 | # Copyright (C) 2004-2010 Tiny SPRL (). 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 . 19 | # 20 | ############################################################################## 21 | import sample_report -------------------------------------------------------------------------------- /report_aeroo_sample/report/report_sample.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Sample Report 7 | ir.actions.report.xml 8 | res.partner 9 | sample_report 10 | aeroo 11 | oo-odt 12 | report_aeroo_sample/report/parser.py 13 | report_aeroo_sample/report/template.odt 14 | loc 15 | file 16 | 17 | 18 | 19 | 20 | 21 | 22 | Sample Report 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /report_aeroo_ooo/report_view.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | ir.actions.report.xml.aeroo.form1 7 | ir.actions.report.xml 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 8 16 | 17 | 18 | 19 | 20 | 21 | 22 | Configure OpenOffice.org connection 23 | ir.actions.act_window 24 | aeroo_config.installer 25 | 26 | form 27 | form 28 | new 29 | {'menu':True} 30 | 31 | 32 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /report_aeroo/barcode/__init__.py: -------------------------------------------------------------------------------- 1 | ############################################################################## 2 | # 3 | # Copyright (c) 2008-2011 Alistek Ltd (http://www.alistek.com) All Rights Reserved. 4 | # General contacts 5 | # 6 | # WARNING: This program as such is intended to be used by professional 7 | # programmers who take the whole responsability of assessing all potential 8 | # consequences resulting from its eventual inadequacies and bugs 9 | # End users who are looking for a ready-to-use solution with commercial 10 | # garantees and support are strongly adviced to contract a Free Software 11 | # Service Company 12 | # 13 | # This program is Free Software; you can redistribute it and/or 14 | # modify it under the terms of the GNU General Public License 15 | # as published by the Free Software Foundation; either version 3 16 | # of the License, or (at your option) any later version. 17 | # 18 | # This module is GPLv3 or newer and incompatible 19 | # with OpenERP SA "AGPL + Private Use License"! 20 | # 21 | # This program is distributed in the hope that it will be useful, 22 | # but WITHOUT ANY WARRANTY; without even the implied warranty of 23 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 24 | # GNU General Public License for more details. 25 | # 26 | # You should have received a copy of the GNU General Public License 27 | # along with this program; if not, write to the Free Software 28 | # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 29 | # 30 | ############################################################################## 31 | 32 | import barcode 33 | 34 | -------------------------------------------------------------------------------- /report_aeroo_sample/report/__init__.py: -------------------------------------------------------------------------------- 1 | ############################################################################## 2 | # 3 | # Copyright (c) 2008-2011 Alistek Ltd (http://www.alistek.com) All Rights Reserved. 4 | # General contacts 5 | # 6 | # WARNING: This program as such is intended to be used by professional 7 | # programmers who take the whole responsability of assessing all potential 8 | # consequences resulting from its eventual inadequacies and bugs 9 | # End users who are looking for a ready-to-use solution with commercial 10 | # garantees and support are strongly adviced to contract a Free Software 11 | # Service Company 12 | # 13 | # This program is Free Software; you can redistribute it and/or 14 | # modify it under the terms of the GNU General Public License 15 | # as published by the Free Software Foundation; either version 3 16 | # of the License, or (at your option) any later version. 17 | # 18 | # This module is GPLv3 or newer and incompatible 19 | # with OpenERP SA "AGPL + Private Use License"! 20 | # 21 | # This program is distributed in the hope that it will be useful, 22 | # but WITHOUT ANY WARRANTY; without even the implied warranty of 23 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 24 | # GNU General Public License for more details. 25 | # 26 | # You should have received a copy of the GNU General Public License 27 | # along with this program; if not, write to the Free Software 28 | # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 29 | # 30 | ############################################################################## 31 | 32 | import parser 33 | 34 | -------------------------------------------------------------------------------- /report_aeroo_sample/__init__.py: -------------------------------------------------------------------------------- 1 | ############################################################################## 2 | # 3 | # Copyright (c) 2008-2011 Alistek Ltd (http://www.alistek.com) All Rights Reserved. 4 | # General contacts 5 | # 6 | # WARNING: This program as such is intended to be used by professional 7 | # programmers who take the whole responsability of assessing all potential 8 | # consequences resulting from its eventual inadequacies and bugs 9 | # End users who are looking for a ready-to-use solution with commercial 10 | # garantees and support are strongly adviced to contract a Free Software 11 | # Service Company 12 | # 13 | # This program is Free Software; you can redistribute it and/or 14 | # modify it under the terms of the GNU General Public License 15 | # as published by the Free Software Foundation; either version 3 16 | # of the License, or (at your option) any later version. 17 | # 18 | # This module is GPLv3 or newer and incompatible 19 | # with OpenERP SA "AGPL + Private Use License"! 20 | # 21 | # This program is distributed in the hope that it will be useful, 22 | # but WITHOUT ANY WARRANTY; without even the implied warranty of 23 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 24 | # GNU General Public License for more details. 25 | # 26 | # You should have received a copy of the GNU General Public License 27 | # along with this program; if not, write to the Free Software 28 | # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 29 | # 30 | ############################################################################## 31 | 32 | from report import parser 33 | import wizard -------------------------------------------------------------------------------- /report_aeroo_sample/wizard/sample_report_view.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Sample Report 7 | sample.report 8 | 9 |
10 | 11 | 12 | 13 | 14 |
15 |
20 |
21 |
22 |
23 | 24 | 25 | Sample Report 26 | sample.report 27 | ir.actions.act_window 28 | form 29 | form 30 | 31 | new 32 | 33 | 35 |
36 |
37 | -------------------------------------------------------------------------------- /report_aeroo/wizard/__init__.py: -------------------------------------------------------------------------------- 1 | ############################################################################## 2 | # 3 | # Copyright (c) 2008-2012 Alistek Ltd (http://www.alistek.com) All Rights Reserved. 4 | # General contacts 5 | # 6 | # WARNING: This program as such is intended to be used by professional 7 | # programmers who take the whole responsability of assessing all potential 8 | # consequences resulting from its eventual inadequacies and bugs 9 | # End users who are looking for a ready-to-use solution with commercial 10 | # garantees and support are strongly adviced to contract a Free Software 11 | # Service Company 12 | # 13 | # This program is Free Software; you can redistribute it and/or 14 | # modify it under the terms of the GNU General Public License 15 | # as published by the Free Software Foundation; either version 3 16 | # of the License, or (at your option) any later version. 17 | # 18 | # This module is GPLv3 or newer and incompatible 19 | # with OpenERP SA "AGPL + Private Use License"! 20 | # 21 | # This program is distributed in the hope that it will be useful, 22 | # but WITHOUT ANY WARRANTY; without even the implied warranty of 23 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 24 | # GNU General Public License for more details. 25 | # 26 | # You should have received a copy of the GNU General Public License 27 | # along with this program; if not, write to the Free Software 28 | # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 29 | # 30 | ############################################################################## 31 | 32 | import add_print_button 33 | import remove_print_button 34 | import report_print_actions 35 | import report_print_by_action 36 | import report_import_wizard 37 | -------------------------------------------------------------------------------- /report_aeroo_sample/wizard/sample_report.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | ############################################################################## 3 | # 4 | # OpenERP, Open Source Management Solution 5 | # Copyright (C) 2004-2010 Tiny SPRL (). 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 . 19 | # 20 | ############################################################################## 21 | 22 | from openerp.osv import fields, osv 23 | 24 | class sample_report(osv.osv_memory): 25 | _name = "sample.report" 26 | _description = "Sample Report" 27 | 28 | _columns = { 29 | 'partner_id' : fields.many2one('res.partner', 'Partner'), 30 | 'title': fields.char('Report Title'), 31 | } 32 | 33 | _defaults = { 34 | 'title': 'Test Titel', 35 | } 36 | 37 | def print_report(self, cr, uid, ids, context=None): 38 | if context is None: 39 | context = {} 40 | data = {} 41 | data['form'] = self.read(cr, uid, ids, ['title', 'partner_id'])[0] 42 | return self.pool['report'].get_action(cr, uid, [], 'sample_report', data=data, context=context) 43 | 44 | # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: -------------------------------------------------------------------------------- /report_aeroo/wizard/remove_print_button_view.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Remove Print Button 6 | aeroo.remove_print_button 7 | form 8 | 9 |
10 | 11 | 13 | 14 | 16 | 17 | 19 | 20 |