Merge lp:~peter-langenberg/aeroo/aeroo-absolute-import into lp:aeroo

Proposed by Peter Langenberg
Status: Needs review
Proposed branch: lp:~peter-langenberg/aeroo/aeroo-absolute-import
Merge into: lp:aeroo
Diff against target: 1016 lines (+122/-122)
66 files modified
report_aeroo/ExtraFunctions.py (+7/-7)
report_aeroo/barcode/EANBarCode.py (+1/-1)
report_aeroo/barcode/code39.py (+1/-1)
report_aeroo/check_deps.py (+2/-2)
report_aeroo/ctt_languages/en_US/__init__.py (+1/-1)
report_aeroo/ctt_languages/en_US/currencies/eur.py (+1/-1)
report_aeroo/ctt_languages/en_US/currencies/ltl.py (+1/-1)
report_aeroo/ctt_languages/en_US/currencies/lvl.py (+1/-1)
report_aeroo/ctt_languages/en_US/currencies/mxn.py (+1/-1)
report_aeroo/ctt_languages/en_US/currencies/trl.py (+1/-1)
report_aeroo/ctt_languages/en_US/currencies/usd.py (+1/-1)
report_aeroo/ctt_languages/es_ES/__init__.py (+1/-1)
report_aeroo/ctt_languages/es_ES/currencies/eur.py (+1/-1)
report_aeroo/ctt_languages/es_ES/currencies/mxn.py (+1/-1)
report_aeroo/ctt_languages/es_ES/currencies/usd.py (+1/-1)
report_aeroo/ctt_languages/lt_LT/__init__.py (+1/-1)
report_aeroo/ctt_languages/lt_LT/currencies/eur.py (+1/-1)
report_aeroo/ctt_languages/lt_LT/currencies/ltl.py (+1/-1)
report_aeroo/ctt_languages/lt_LT/currencies/lvl.py (+1/-1)
report_aeroo/ctt_languages/lt_LT/currencies/uah.py (+1/-1)
report_aeroo/ctt_languages/lt_LT/currencies/usd.py (+1/-1)
report_aeroo/ctt_languages/lv_LV/__init__.py (+1/-1)
report_aeroo/ctt_languages/lv_LV/currencies/eur.py (+1/-1)
report_aeroo/ctt_languages/lv_LV/currencies/ltl.py (+1/-1)
report_aeroo/ctt_languages/lv_LV/currencies/lvl.py (+1/-1)
report_aeroo/ctt_languages/lv_LV/currencies/mxn.py (+1/-1)
report_aeroo/ctt_languages/lv_LV/currencies/rub.py (+1/-1)
report_aeroo/ctt_languages/lv_LV/currencies/trl.py (+1/-1)
report_aeroo/ctt_languages/lv_LV/currencies/uah.py (+1/-1)
report_aeroo/ctt_languages/lv_LV/currencies/usd.py (+1/-1)
report_aeroo/ctt_languages/ru_RU/__init__.py (+1/-1)
report_aeroo/ctt_languages/ru_RU/currencies/eur.py (+1/-1)
report_aeroo/ctt_languages/ru_RU/currencies/ltl.py (+1/-1)
report_aeroo/ctt_languages/ru_RU/currencies/lvl.py (+1/-1)
report_aeroo/ctt_languages/ru_RU/currencies/rub.py (+1/-1)
report_aeroo/ctt_languages/ru_RU/currencies/uah.py (+1/-1)
report_aeroo/ctt_languages/ru_RU/currencies/usd.py (+1/-1)
report_aeroo/ctt_languages/tr_TR/__init__.py (+1/-1)
report_aeroo/ctt_languages/tr_TR/currencies/eur.py (+1/-1)
report_aeroo/ctt_languages/tr_TR/currencies/lvl.py (+1/-1)
report_aeroo/ctt_languages/tr_TR/currencies/trl.py (+1/-1)
report_aeroo/ctt_languages/tr_TR/currencies/usd.py (+1/-1)
report_aeroo/ctt_languages/uk_UA/__init__.py (+1/-1)
report_aeroo/ctt_languages/uk_UA/currencies/eur.py (+1/-1)
report_aeroo/ctt_languages/uk_UA/currencies/ltl.py (+1/-1)
report_aeroo/ctt_languages/uk_UA/currencies/lvl.py (+1/-1)
report_aeroo/ctt_languages/uk_UA/currencies/rub.py (+1/-1)
report_aeroo/ctt_languages/uk_UA/currencies/uah.py (+1/-1)
report_aeroo/ctt_languages/uk_UA/currencies/usd.py (+1/-1)
report_aeroo/installer.py (+4/-4)
report_aeroo/report_aeroo.py (+9/-9)
report_aeroo/report_xml.py (+8/-8)
report_aeroo/translate.py (+7/-7)
report_aeroo/wizard/add_print_button.py (+4/-4)
report_aeroo/wizard/remove_print_button.py (+4/-4)
report_aeroo/wizard/report_actions.py (+1/-1)
report_aeroo/wizard/report_import_wizard.py (+4/-4)
report_aeroo/wizard/report_print_actions.py (+4/-4)
report_aeroo/wizard/report_print_by_action.py (+2/-2)
report_aeroo_direct_print/check_deps.py (+2/-2)
report_aeroo_direct_print/installer.py (+3/-3)
report_aeroo_direct_print/report_aeroo_direct_print.py (+4/-4)
report_aeroo_ooo/DocumentConverter.py (+1/-1)
report_aeroo_ooo/check_deps.py (+2/-2)
report_aeroo_ooo/installer.py (+5/-5)
report_aeroo_ooo/report.py (+2/-2)
To merge this branch: bzr merge lp:~peter-langenberg/aeroo/aeroo-absolute-import
Reviewer Review Type Date Requested Status
Alistek developers - http://www.alistek.com Pending
Review via email: mp+192880@code.launchpad.net
To post a comment you must log in.

Unmerged revisions

6. By Peter Langenberg

[IMP]change relative import to absolute import (for use with saas version or future versions)

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'report_aeroo/ExtraFunctions.py'
--- report_aeroo/ExtraFunctions.py 2013-05-16 15:53:25 +0000
+++ report_aeroo/ExtraFunctions.py 2013-10-28 14:46:04 +0000
@@ -31,19 +31,19 @@
31##############################################################################31##############################################################################
3232
33from barcode import barcode33from barcode import barcode
34from tools import translate34from openerp.tools import translate
35#from currency_to_text import currency_to_text35#from currency_to_text import currency_to_text
36from ctt_objects import supported_language36from ctt_objects import supported_language
37import base6437import base64
38import StringIO38import StringIO
39from PIL import Image39from PIL import Image
40import pooler40import openerp.pooler
41import time41import time
42import osv42import openerp.osv
43from report import report_sxw43from openerp.report import report_sxw
44from tools.translate import _44from openerp.tools.translate import _
45import netsvc45import openerp.netsvc
46from tools.safe_eval import safe_eval as eval46from openerp.tools.safe_eval import safe_eval as eval
47from aeroolib.plugins.opendocument import _filter47from aeroolib.plugins.opendocument import _filter
4848
49try:49try:
5050
=== modified file 'report_aeroo/barcode/EANBarCode.py'
--- report_aeroo/barcode/EANBarCode.py 2013-02-01 16:11:17 +0000
+++ report_aeroo/barcode/EANBarCode.py 2013-10-28 14:46:04 +0000
@@ -1,7 +1,7 @@
1# Copyright (c) 2009-2011 Alistek Ltd (http://www.alistek.com) All Rights Reserved.1# Copyright (c) 2009-2011 Alistek Ltd (http://www.alistek.com) All Rights Reserved.
2# General contacts <info@alistek.com>2# General contacts <info@alistek.com>
33
4from tools import config, ustr4from openerp.tools import config, ustr
5fontsize = 155fontsize = 15
66
7"""7"""
88
=== modified file 'report_aeroo/barcode/code39.py'
--- report_aeroo/barcode/code39.py 2013-02-01 16:11:17 +0000
+++ report_aeroo/barcode/code39.py 2013-10-28 14:46:04 +0000
@@ -14,7 +14,7 @@
14# a min line width of 2px with "Hello World" encoded as "*HELLO WORLD*" in Code 3914# a min line width of 2px with "Hello World" encoded as "*HELLO WORLD*" in Code 39
1515
16from PIL import Image, ImageDraw, ImageFont16from PIL import Image, ImageDraw, ImageFont
17from tools import config, ustr17from openerp.tools import config, ustr
18import os, sys18import os, sys
1919
20marginx = 1020marginx = 10
2121
=== modified file 'report_aeroo/check_deps.py'
--- report_aeroo/check_deps.py 2013-02-01 16:11:17 +0000
+++ report_aeroo/check_deps.py 2013-10-28 14:46:04 +0000
@@ -30,8 +30,8 @@
30#30#
31##############################################################################31##############################################################################
3232
33from osv import osv33from openerp.osv import osv
34from tools.translate import _34from openerp.tools.translate import _
3535
36__all__ = [36__all__ = [
37 'check_deps',37 'check_deps',
3838
=== modified file 'report_aeroo/ctt_languages/en_US/__init__.py'
--- report_aeroo/ctt_languages/en_US/__init__.py 2013-05-16 15:53:25 +0000
+++ report_aeroo/ctt_languages/en_US/__init__.py 2013-10-28 14:46:04 +0000
@@ -2,7 +2,7 @@
2# -*- coding: utf8 -*-2# -*- coding: utf8 -*-
3# en_US3# en_US
44
5from report_aeroo.ctt_objects import ctt_language5from openerp.addons.report_aeroo.ctt_objects import ctt_language
66
7class en_US(ctt_language):7class en_US(ctt_language):
8 def _init_lang(self):8 def _init_lang(self):
99
=== modified file 'report_aeroo/ctt_languages/en_US/currencies/eur.py'
--- report_aeroo/ctt_languages/en_US/currencies/eur.py 2013-05-16 15:53:25 +0000
+++ report_aeroo/ctt_languages/en_US/currencies/eur.py 2013-10-28 14:46:04 +0000
@@ -1,7 +1,7 @@
1#!/usr/bin/python1#!/usr/bin/python
2# -*- coding: utf8 -*-2# -*- coding: utf8 -*-
33
4from report_aeroo.ctt_objects import ctt_currency4from openerp.addons.report_aeroo.ctt_objects import ctt_currency
55
6class eur(ctt_currency):6class eur(ctt_currency):
7 def _init_currency(self):7 def _init_currency(self):
88
=== modified file 'report_aeroo/ctt_languages/en_US/currencies/ltl.py'
--- report_aeroo/ctt_languages/en_US/currencies/ltl.py 2013-05-16 15:53:25 +0000
+++ report_aeroo/ctt_languages/en_US/currencies/ltl.py 2013-10-28 14:46:04 +0000
@@ -1,7 +1,7 @@
1#!/usr/bin/python1#!/usr/bin/python
2# -*- coding: utf8 -*-2# -*- coding: utf8 -*-
33
4from report_aeroo.ctt_objects import ctt_currency4from openerp.addons.report_aeroo.ctt_objects import ctt_currency
55
6class ltl(ctt_currency):6class ltl(ctt_currency):
7 def _init_currency(self):7 def _init_currency(self):
88
=== modified file 'report_aeroo/ctt_languages/en_US/currencies/lvl.py'
--- report_aeroo/ctt_languages/en_US/currencies/lvl.py 2013-05-16 15:53:25 +0000
+++ report_aeroo/ctt_languages/en_US/currencies/lvl.py 2013-10-28 14:46:04 +0000
@@ -1,7 +1,7 @@
1#!/usr/bin/python1#!/usr/bin/python
2# -*- coding: utf8 -*-2# -*- coding: utf8 -*-
33
4from report_aeroo.ctt_objects import ctt_currency4from openerp.addons.report_aeroo.ctt_objects import ctt_currency
55
6class lvl(ctt_currency):6class lvl(ctt_currency):
7 def _init_currency(self):7 def _init_currency(self):
88
=== modified file 'report_aeroo/ctt_languages/en_US/currencies/mxn.py'
--- report_aeroo/ctt_languages/en_US/currencies/mxn.py 2013-05-16 15:53:25 +0000
+++ report_aeroo/ctt_languages/en_US/currencies/mxn.py 2013-10-28 14:46:04 +0000
@@ -1,7 +1,7 @@
1#!/usr/bin/python1#!/usr/bin/python
2# -*- coding: utf8 -*-2# -*- coding: utf8 -*-
33
4from report_aeroo.ctt_objects import ctt_currency4from openerp.addons.report_aeroo.ctt_objects import ctt_currency
55
6class mxn(ctt_currency):6class mxn(ctt_currency):
7 def _init_currency(self):7 def _init_currency(self):
88
=== modified file 'report_aeroo/ctt_languages/en_US/currencies/trl.py'
--- report_aeroo/ctt_languages/en_US/currencies/trl.py 2013-05-16 15:53:25 +0000
+++ report_aeroo/ctt_languages/en_US/currencies/trl.py 2013-10-28 14:46:04 +0000
@@ -1,7 +1,7 @@
1#!/usr/bin/python1#!/usr/bin/python
2# -*- coding: utf8 -*-2# -*- coding: utf8 -*-
33
4from report_aeroo.ctt_objects import ctt_currency4from openerp.addons.report_aeroo.ctt_objects import ctt_currency
55
6class trl(ctt_currency):6class trl(ctt_currency):
7 def _init_currency(self):7 def _init_currency(self):
88
=== modified file 'report_aeroo/ctt_languages/en_US/currencies/usd.py'
--- report_aeroo/ctt_languages/en_US/currencies/usd.py 2013-05-16 15:53:25 +0000
+++ report_aeroo/ctt_languages/en_US/currencies/usd.py 2013-10-28 14:46:04 +0000
@@ -1,7 +1,7 @@
1#!/usr/bin/python1#!/usr/bin/python
2# -*- coding: utf8 -*-2# -*- coding: utf8 -*-
33
4from report_aeroo.ctt_objects import ctt_currency4from openerp.addons.report_aeroo.ctt_objects import ctt_currency
55
6class usd(ctt_currency):6class usd(ctt_currency):
7 def _init_currency(self):7 def _init_currency(self):
88
=== modified file 'report_aeroo/ctt_languages/es_ES/__init__.py'
--- report_aeroo/ctt_languages/es_ES/__init__.py 2013-05-16 15:53:25 +0000
+++ report_aeroo/ctt_languages/es_ES/__init__.py 2013-10-28 14:46:04 +0000
@@ -7,7 +7,7 @@
7# * Christopher Ormaza - Ecuadorenlinea.net <chris.ormaza@gmail.com>, 20117# * Christopher Ormaza - Ecuadorenlinea.net <chris.ormaza@gmail.com>, 2011
8################################################################################8################################################################################
99
10from report_aeroo.ctt_objects import ctt_language10from openerp.addons.report_aeroo.ctt_objects import ctt_language
1111
12class es_ES(ctt_language):12class es_ES(ctt_language):
13 def _init_lang(self):13 def _init_lang(self):
1414
=== modified file 'report_aeroo/ctt_languages/es_ES/currencies/eur.py'
--- report_aeroo/ctt_languages/es_ES/currencies/eur.py 2013-05-16 15:53:25 +0000
+++ report_aeroo/ctt_languages/es_ES/currencies/eur.py 2013-10-28 14:46:04 +0000
@@ -1,7 +1,7 @@
1#!/usr/bin/python1#!/usr/bin/python
2# -*- coding: utf8 -*-2# -*- coding: utf8 -*-
33
4from report_aeroo.ctt_objects import ctt_currency4from openerp.addons.report_aeroo.ctt_objects import ctt_currency
55
6class eur(ctt_currency):6class eur(ctt_currency):
7 def _init_currency(self):7 def _init_currency(self):
88
=== modified file 'report_aeroo/ctt_languages/es_ES/currencies/mxn.py'
--- report_aeroo/ctt_languages/es_ES/currencies/mxn.py 2013-05-16 15:53:25 +0000
+++ report_aeroo/ctt_languages/es_ES/currencies/mxn.py 2013-10-28 14:46:04 +0000
@@ -1,7 +1,7 @@
1#!/usr/bin/python1#!/usr/bin/python
2# -*- coding: utf8 -*-2# -*- coding: utf8 -*-
33
4from report_aeroo.ctt_objects import ctt_currency4from openerp.addons.report_aeroo.ctt_objects import ctt_currency
55
6class mxn(ctt_currency):6class mxn(ctt_currency):
7 def _init_currency(self):7 def _init_currency(self):
88
=== modified file 'report_aeroo/ctt_languages/es_ES/currencies/usd.py'
--- report_aeroo/ctt_languages/es_ES/currencies/usd.py 2013-05-16 15:53:25 +0000
+++ report_aeroo/ctt_languages/es_ES/currencies/usd.py 2013-10-28 14:46:04 +0000
@@ -1,7 +1,7 @@
1#!/usr/bin/python1#!/usr/bin/python
2# -*- coding: utf8 -*-2# -*- coding: utf8 -*-
33
4from report_aeroo.ctt_objects import ctt_currency4from openerp.addons.report_aeroo.ctt_objects import ctt_currency
55
6class usd(ctt_currency):6class usd(ctt_currency):
7 def _init_currency(self):7 def _init_currency(self):
88
=== modified file 'report_aeroo/ctt_languages/lt_LT/__init__.py'
--- report_aeroo/ctt_languages/lt_LT/__init__.py 2013-05-16 15:53:25 +0000
+++ report_aeroo/ctt_languages/lt_LT/__init__.py 2013-10-28 14:46:04 +0000
@@ -8,7 +8,7 @@
8#8#
9################################################################################9################################################################################
1010
11from report_aeroo.ctt_objects import ctt_language11from openerp.addons.report_aeroo.ctt_objects import ctt_language
1212
13class lt_LT(ctt_language):13class lt_LT(ctt_language):
14 def _init_lang(self):14 def _init_lang(self):
1515
=== modified file 'report_aeroo/ctt_languages/lt_LT/currencies/eur.py'
--- report_aeroo/ctt_languages/lt_LT/currencies/eur.py 2013-05-16 15:53:25 +0000
+++ report_aeroo/ctt_languages/lt_LT/currencies/eur.py 2013-10-28 14:46:04 +0000
@@ -1,7 +1,7 @@
1#!/usr/bin/python1#!/usr/bin/python
2# -*- coding: utf8 -*-2# -*- coding: utf8 -*-
33
4from report_aeroo.ctt_objects import ctt_currency4from openerp.addons.report_aeroo.ctt_objects import ctt_currency
55
6class eur(ctt_currency):6class eur(ctt_currency):
7 def _init_currency(self):7 def _init_currency(self):
88
=== modified file 'report_aeroo/ctt_languages/lt_LT/currencies/ltl.py'
--- report_aeroo/ctt_languages/lt_LT/currencies/ltl.py 2013-05-16 15:53:25 +0000
+++ report_aeroo/ctt_languages/lt_LT/currencies/ltl.py 2013-10-28 14:46:04 +0000
@@ -1,7 +1,7 @@
1#!/usr/bin/python1#!/usr/bin/python
2# -*- coding: utf8 -*-2# -*- coding: utf8 -*-
33
4from report_aeroo.ctt_objects import ctt_currency4from openerp.addons.report_aeroo.ctt_objects import ctt_currency
55
6class ltl(ctt_currency):6class ltl(ctt_currency):
7 def _init_currency(self):7 def _init_currency(self):
88
=== modified file 'report_aeroo/ctt_languages/lt_LT/currencies/lvl.py'
--- report_aeroo/ctt_languages/lt_LT/currencies/lvl.py 2013-05-16 15:53:25 +0000
+++ report_aeroo/ctt_languages/lt_LT/currencies/lvl.py 2013-10-28 14:46:04 +0000
@@ -1,7 +1,7 @@
1#!/usr/bin/python1#!/usr/bin/python
2# -*- coding: utf8 -*-2# -*- coding: utf8 -*-
33
4from report_aeroo.ctt_objects import ctt_currency4from openerp.addons.report_aeroo.ctt_objects import ctt_currency
55
6class lvl(ctt_currency):6class lvl(ctt_currency):
7 def _init_currency(self):7 def _init_currency(self):
88
=== modified file 'report_aeroo/ctt_languages/lt_LT/currencies/uah.py'
--- report_aeroo/ctt_languages/lt_LT/currencies/uah.py 2013-05-16 15:53:25 +0000
+++ report_aeroo/ctt_languages/lt_LT/currencies/uah.py 2013-10-28 14:46:04 +0000
@@ -1,7 +1,7 @@
1#!/usr/bin/python1#!/usr/bin/python
2# -*- coding: utf8 -*-2# -*- coding: utf8 -*-
33
4from report_aeroo.ctt_objects import ctt_currency4from openerp.addons.report_aeroo.ctt_objects import ctt_currency
55
6class uah(ctt_currency):6class uah(ctt_currency):
7 def _init_currency(self):7 def _init_currency(self):
88
=== modified file 'report_aeroo/ctt_languages/lt_LT/currencies/usd.py'
--- report_aeroo/ctt_languages/lt_LT/currencies/usd.py 2013-05-16 15:53:25 +0000
+++ report_aeroo/ctt_languages/lt_LT/currencies/usd.py 2013-10-28 14:46:04 +0000
@@ -1,7 +1,7 @@
1#!/usr/bin/python1#!/usr/bin/python
2# -*- coding: utf8 -*-2# -*- coding: utf8 -*-
33
4from report_aeroo.ctt_objects import ctt_currency4from openerp.addons.report_aeroo.ctt_objects import ctt_currency
55
6class usd(ctt_currency):6class usd(ctt_currency):
7 def _init_currency(self):7 def _init_currency(self):
88
=== modified file 'report_aeroo/ctt_languages/lv_LV/__init__.py'
--- report_aeroo/ctt_languages/lv_LV/__init__.py 2013-05-16 15:53:25 +0000
+++ report_aeroo/ctt_languages/lv_LV/__init__.py 2013-10-28 14:46:04 +0000
@@ -2,7 +2,7 @@
2# -*- coding: utf8 -*-2# -*- coding: utf8 -*-
3# lv_LV3# lv_LV
44
5from report_aeroo.ctt_objects import ctt_language5from openerp.addons.report_aeroo.ctt_objects import ctt_language
66
7class lv_LV(ctt_language):7class lv_LV(ctt_language):
8 def _init_lang(self):8 def _init_lang(self):
99
=== modified file 'report_aeroo/ctt_languages/lv_LV/currencies/eur.py'
--- report_aeroo/ctt_languages/lv_LV/currencies/eur.py 2013-05-16 15:53:25 +0000
+++ report_aeroo/ctt_languages/lv_LV/currencies/eur.py 2013-10-28 14:46:04 +0000
@@ -1,7 +1,7 @@
1#!/usr/bin/python1#!/usr/bin/python
2# -*- coding: utf8 -*-2# -*- coding: utf8 -*-
33
4from report_aeroo.ctt_objects import ctt_currency4from openerp.addons.report_aeroo.ctt_objects import ctt_currency
55
6class eur(ctt_currency):6class eur(ctt_currency):
7 def _init_currency(self):7 def _init_currency(self):
88
=== modified file 'report_aeroo/ctt_languages/lv_LV/currencies/ltl.py'
--- report_aeroo/ctt_languages/lv_LV/currencies/ltl.py 2013-05-16 15:53:25 +0000
+++ report_aeroo/ctt_languages/lv_LV/currencies/ltl.py 2013-10-28 14:46:04 +0000
@@ -1,7 +1,7 @@
1#!/usr/bin/python1#!/usr/bin/python
2# -*- coding: utf8 -*-2# -*- coding: utf8 -*-
33
4from report_aeroo.ctt_objects import ctt_currency4from openerp.addons.report_aeroo.ctt_objects import ctt_currency
55
6class ltl(ctt_currency):6class ltl(ctt_currency):
7 def _init_currency(self):7 def _init_currency(self):
88
=== modified file 'report_aeroo/ctt_languages/lv_LV/currencies/lvl.py'
--- report_aeroo/ctt_languages/lv_LV/currencies/lvl.py 2013-05-16 15:53:25 +0000
+++ report_aeroo/ctt_languages/lv_LV/currencies/lvl.py 2013-10-28 14:46:04 +0000
@@ -1,7 +1,7 @@
1#!/usr/bin/python1#!/usr/bin/python
2# -*- coding: utf8 -*-2# -*- coding: utf8 -*-
33
4from report_aeroo.ctt_objects import ctt_currency4from openerp.addons.report_aeroo.ctt_objects import ctt_currency
55
6class lvl(ctt_currency):6class lvl(ctt_currency):
7 def _init_currency(self):7 def _init_currency(self):
88
=== modified file 'report_aeroo/ctt_languages/lv_LV/currencies/mxn.py'
--- report_aeroo/ctt_languages/lv_LV/currencies/mxn.py 2013-05-16 15:53:25 +0000
+++ report_aeroo/ctt_languages/lv_LV/currencies/mxn.py 2013-10-28 14:46:04 +0000
@@ -1,7 +1,7 @@
1#!/usr/bin/python1#!/usr/bin/python
2# -*- coding: utf8 -*-2# -*- coding: utf8 -*-
33
4from report_aeroo.ctt_objects import ctt_currency4from openerp.addons.report_aeroo.ctt_objects import ctt_currency
55
6class mxn(ctt_currency):6class mxn(ctt_currency):
7 def _init_currency(self):7 def _init_currency(self):
88
=== modified file 'report_aeroo/ctt_languages/lv_LV/currencies/rub.py'
--- report_aeroo/ctt_languages/lv_LV/currencies/rub.py 2013-05-16 15:53:25 +0000
+++ report_aeroo/ctt_languages/lv_LV/currencies/rub.py 2013-10-28 14:46:04 +0000
@@ -1,7 +1,7 @@
1#!/usr/bin/python1#!/usr/bin/python
2# -*- coding: utf8 -*-2# -*- coding: utf8 -*-
33
4from report_aeroo.ctt_objects import ctt_currency4from openerp.addons.report_aeroo.ctt_objects import ctt_currency
55
6class rub(ctt_currency):6class rub(ctt_currency):
7 def _init_currency(self):7 def _init_currency(self):
88
=== modified file 'report_aeroo/ctt_languages/lv_LV/currencies/trl.py'
--- report_aeroo/ctt_languages/lv_LV/currencies/trl.py 2013-05-16 15:53:25 +0000
+++ report_aeroo/ctt_languages/lv_LV/currencies/trl.py 2013-10-28 14:46:04 +0000
@@ -1,7 +1,7 @@
1#!/usr/bin/python1#!/usr/bin/python
2# -*- coding: utf8 -*-2# -*- coding: utf8 -*-
33
4from report_aeroo.ctt_objects import ctt_currency4from openerp.addons.report_aeroo.ctt_objects import ctt_currency
55
6class trl(ctt_currency):6class trl(ctt_currency):
7 def _init_currency(self):7 def _init_currency(self):
88
=== modified file 'report_aeroo/ctt_languages/lv_LV/currencies/uah.py'
--- report_aeroo/ctt_languages/lv_LV/currencies/uah.py 2013-05-16 15:53:25 +0000
+++ report_aeroo/ctt_languages/lv_LV/currencies/uah.py 2013-10-28 14:46:04 +0000
@@ -1,7 +1,7 @@
1#!/usr/bin/python1#!/usr/bin/python
2# -*- coding: utf8 -*-2# -*- coding: utf8 -*-
33
4from report_aeroo.ctt_objects import ctt_currency4from openerp.addons.report_aeroo.ctt_objects import ctt_currency
55
6class uah(ctt_currency):6class uah(ctt_currency):
7 def _init_currency(self):7 def _init_currency(self):
88
=== modified file 'report_aeroo/ctt_languages/lv_LV/currencies/usd.py'
--- report_aeroo/ctt_languages/lv_LV/currencies/usd.py 2013-05-16 15:53:25 +0000
+++ report_aeroo/ctt_languages/lv_LV/currencies/usd.py 2013-10-28 14:46:04 +0000
@@ -1,7 +1,7 @@
1#!/usr/bin/python1#!/usr/bin/python
2# -*- coding: utf8 -*-2# -*- coding: utf8 -*-
33
4from report_aeroo.ctt_objects import ctt_currency4from openerp.addons.report_aeroo.ctt_objects import ctt_currency
55
6class usd(ctt_currency):6class usd(ctt_currency):
7 def _init_currency(self):7 def _init_currency(self):
88
=== modified file 'report_aeroo/ctt_languages/ru_RU/__init__.py'
--- report_aeroo/ctt_languages/ru_RU/__init__.py 2013-05-16 15:53:25 +0000
+++ report_aeroo/ctt_languages/ru_RU/__init__.py 2013-10-28 14:46:04 +0000
@@ -2,7 +2,7 @@
2# -*- coding: utf8 -*-2# -*- coding: utf8 -*-
3# ru_RU3# ru_RU
44
5from report_aeroo.ctt_objects import ctt_language5from openerp.addons.report_aeroo.ctt_objects import ctt_language
66
7class ru_RU(ctt_language):7class ru_RU(ctt_language):
8 def _init_lang(self):8 def _init_lang(self):
99
=== modified file 'report_aeroo/ctt_languages/ru_RU/currencies/eur.py'
--- report_aeroo/ctt_languages/ru_RU/currencies/eur.py 2013-05-16 15:53:25 +0000
+++ report_aeroo/ctt_languages/ru_RU/currencies/eur.py 2013-10-28 14:46:04 +0000
@@ -1,7 +1,7 @@
1#!/usr/bin/python1#!/usr/bin/python
2# -*- coding: utf8 -*-2# -*- coding: utf8 -*-
33
4from report_aeroo.ctt_objects import ctt_currency4from openerp.addons.report_aeroo.ctt_objects import ctt_currency
55
6class eur(ctt_currency):6class eur(ctt_currency):
7 def _init_currency(self):7 def _init_currency(self):
88
=== modified file 'report_aeroo/ctt_languages/ru_RU/currencies/ltl.py'
--- report_aeroo/ctt_languages/ru_RU/currencies/ltl.py 2013-05-16 15:53:25 +0000
+++ report_aeroo/ctt_languages/ru_RU/currencies/ltl.py 2013-10-28 14:46:04 +0000
@@ -1,7 +1,7 @@
1#!/usr/bin/python1#!/usr/bin/python
2# -*- coding: utf8 -*-2# -*- coding: utf8 -*-
33
4from report_aeroo.ctt_objects import ctt_currency4from openerp.addons.report_aeroo.ctt_objects import ctt_currency
55
6class ltl(ctt_currency):6class ltl(ctt_currency):
7 def _init_currency(self):7 def _init_currency(self):
88
=== modified file 'report_aeroo/ctt_languages/ru_RU/currencies/lvl.py'
--- report_aeroo/ctt_languages/ru_RU/currencies/lvl.py 2013-05-16 15:53:25 +0000
+++ report_aeroo/ctt_languages/ru_RU/currencies/lvl.py 2013-10-28 14:46:04 +0000
@@ -1,7 +1,7 @@
1#!/usr/bin/python1#!/usr/bin/python
2# -*- coding: utf8 -*-2# -*- coding: utf8 -*-
33
4from report_aeroo.ctt_objects import ctt_currency4from openerp.addons.report_aeroo.ctt_objects import ctt_currency
55
6class lvl(ctt_currency):6class lvl(ctt_currency):
7 def _init_currency(self):7 def _init_currency(self):
88
=== modified file 'report_aeroo/ctt_languages/ru_RU/currencies/rub.py'
--- report_aeroo/ctt_languages/ru_RU/currencies/rub.py 2013-05-16 15:53:25 +0000
+++ report_aeroo/ctt_languages/ru_RU/currencies/rub.py 2013-10-28 14:46:04 +0000
@@ -1,7 +1,7 @@
1#!/usr/bin/python1#!/usr/bin/python
2# -*- coding: utf8 -*-2# -*- coding: utf8 -*-
33
4from report_aeroo.ctt_objects import ctt_currency4from openerp.addons.report_aeroo.ctt_objects import ctt_currency
55
6class rub(ctt_currency):6class rub(ctt_currency):
7 def _init_currency(self):7 def _init_currency(self):
88
=== modified file 'report_aeroo/ctt_languages/ru_RU/currencies/uah.py'
--- report_aeroo/ctt_languages/ru_RU/currencies/uah.py 2013-05-16 15:53:25 +0000
+++ report_aeroo/ctt_languages/ru_RU/currencies/uah.py 2013-10-28 14:46:04 +0000
@@ -1,7 +1,7 @@
1#!/usr/bin/python1#!/usr/bin/python
2# -*- coding: utf8 -*-2# -*- coding: utf8 -*-
33
4from report_aeroo.ctt_objects import ctt_currency4from openerp.addons.report_aeroo.ctt_objects import ctt_currency
55
6class uah(ctt_currency):6class uah(ctt_currency):
7 def _init_currency(self):7 def _init_currency(self):
88
=== modified file 'report_aeroo/ctt_languages/ru_RU/currencies/usd.py'
--- report_aeroo/ctt_languages/ru_RU/currencies/usd.py 2013-05-16 15:53:25 +0000
+++ report_aeroo/ctt_languages/ru_RU/currencies/usd.py 2013-10-28 14:46:04 +0000
@@ -1,7 +1,7 @@
1#!/usr/bin/python1#!/usr/bin/python
2# -*- coding: utf8 -*-2# -*- coding: utf8 -*-
33
4from report_aeroo.ctt_objects import ctt_currency4from openerp.addons.report_aeroo.ctt_objects import ctt_currency
55
6class usd(ctt_currency):6class usd(ctt_currency):
7 def _init_currency(self):7 def _init_currency(self):
88
=== modified file 'report_aeroo/ctt_languages/tr_TR/__init__.py'
--- report_aeroo/ctt_languages/tr_TR/__init__.py 2013-05-16 15:53:25 +0000
+++ report_aeroo/ctt_languages/tr_TR/__init__.py 2013-10-28 14:46:04 +0000
@@ -7,7 +7,7 @@
7# Ahmet Altınışık7# Ahmet Altınışık
8#8#
9################################################################################9################################################################################
10from report_aeroo.ctt_objects import ctt_language10from openerp.addons.report_aeroo.ctt_objects import ctt_language
1111
12class tr_TR(ctt_language):12class tr_TR(ctt_language):
13 def _init_lang(self):13 def _init_lang(self):
1414
=== modified file 'report_aeroo/ctt_languages/tr_TR/currencies/eur.py'
--- report_aeroo/ctt_languages/tr_TR/currencies/eur.py 2013-05-16 15:53:25 +0000
+++ report_aeroo/ctt_languages/tr_TR/currencies/eur.py 2013-10-28 14:46:04 +0000
@@ -1,7 +1,7 @@
1#!/usr/bin/python1#!/usr/bin/python
2# -*- coding: utf8 -*-2# -*- coding: utf8 -*-
33
4from report_aeroo.ctt_objects import ctt_currency4from openerp.addons.report_aeroo.ctt_objects import ctt_currency
55
6class eur(ctt_currency):6class eur(ctt_currency):
7 def _init_currency(self):7 def _init_currency(self):
88
=== modified file 'report_aeroo/ctt_languages/tr_TR/currencies/lvl.py'
--- report_aeroo/ctt_languages/tr_TR/currencies/lvl.py 2013-05-16 15:53:25 +0000
+++ report_aeroo/ctt_languages/tr_TR/currencies/lvl.py 2013-10-28 14:46:04 +0000
@@ -1,7 +1,7 @@
1#!/usr/bin/python1#!/usr/bin/python
2# -*- coding: utf8 -*-2# -*- coding: utf8 -*-
33
4from report_aeroo.ctt_objects import ctt_currency4from openerp.addons.report_aeroo.ctt_objects import ctt_currency
55
6class lvl(ctt_currency):6class lvl(ctt_currency):
7 def _init_currency(self):7 def _init_currency(self):
88
=== modified file 'report_aeroo/ctt_languages/tr_TR/currencies/trl.py'
--- report_aeroo/ctt_languages/tr_TR/currencies/trl.py 2013-05-16 15:53:25 +0000
+++ report_aeroo/ctt_languages/tr_TR/currencies/trl.py 2013-10-28 14:46:04 +0000
@@ -1,7 +1,7 @@
1#!/usr/bin/python1#!/usr/bin/python
2# -*- coding: utf8 -*-2# -*- coding: utf8 -*-
33
4from report_aeroo.ctt_objects import ctt_currency4from openerp.addons.report_aeroo.ctt_objects import ctt_currency
55
6class trl(ctt_currency):6class trl(ctt_currency):
7 def _init_currency(self):7 def _init_currency(self):
88
=== modified file 'report_aeroo/ctt_languages/tr_TR/currencies/usd.py'
--- report_aeroo/ctt_languages/tr_TR/currencies/usd.py 2013-05-16 15:53:25 +0000
+++ report_aeroo/ctt_languages/tr_TR/currencies/usd.py 2013-10-28 14:46:04 +0000
@@ -1,7 +1,7 @@
1#!/usr/bin/python1#!/usr/bin/python
2# -*- coding: utf8 -*-2# -*- coding: utf8 -*-
33
4from report_aeroo.ctt_objects import ctt_currency4from openerp.addons.report_aeroo.ctt_objects import ctt_currency
55
6class usd(ctt_currency):6class usd(ctt_currency):
7 def _init_currency(self):7 def _init_currency(self):
88
=== modified file 'report_aeroo/ctt_languages/uk_UA/__init__.py'
--- report_aeroo/ctt_languages/uk_UA/__init__.py 2013-05-16 15:53:25 +0000
+++ report_aeroo/ctt_languages/uk_UA/__init__.py 2013-10-28 14:46:04 +0000
@@ -2,7 +2,7 @@
2# -*- coding: utf8 -*-2# -*- coding: utf8 -*-
3# uk_UA3# uk_UA
44
5from report_aeroo.ctt_objects import ctt_language5from openerp.addons.report_aeroo.ctt_objects import ctt_language
66
7class uk_UA(ctt_language):7class uk_UA(ctt_language):
8 def _init_lang(self):8 def _init_lang(self):
99
=== modified file 'report_aeroo/ctt_languages/uk_UA/currencies/eur.py'
--- report_aeroo/ctt_languages/uk_UA/currencies/eur.py 2013-05-16 15:53:25 +0000
+++ report_aeroo/ctt_languages/uk_UA/currencies/eur.py 2013-10-28 14:46:04 +0000
@@ -1,7 +1,7 @@
1#!/usr/bin/python1#!/usr/bin/python
2# -*- coding: utf8 -*-2# -*- coding: utf8 -*-
33
4from report_aeroo.ctt_objects import ctt_currency4from openerp.addons.report_aeroo.ctt_objects import ctt_currency
55
6class eur(ctt_currency):6class eur(ctt_currency):
7 def _init_currency(self):7 def _init_currency(self):
88
=== modified file 'report_aeroo/ctt_languages/uk_UA/currencies/ltl.py'
--- report_aeroo/ctt_languages/uk_UA/currencies/ltl.py 2013-05-16 15:53:25 +0000
+++ report_aeroo/ctt_languages/uk_UA/currencies/ltl.py 2013-10-28 14:46:04 +0000
@@ -1,7 +1,7 @@
1#!/usr/bin/python1#!/usr/bin/python
2# -*- coding: utf8 -*-2# -*- coding: utf8 -*-
33
4from report_aeroo.ctt_objects import ctt_currency4from openerp.addons.report_aeroo.ctt_objects import ctt_currency
55
6class ltl(ctt_currency):6class ltl(ctt_currency):
7 def _init_currency(self):7 def _init_currency(self):
88
=== modified file 'report_aeroo/ctt_languages/uk_UA/currencies/lvl.py'
--- report_aeroo/ctt_languages/uk_UA/currencies/lvl.py 2013-05-16 15:53:25 +0000
+++ report_aeroo/ctt_languages/uk_UA/currencies/lvl.py 2013-10-28 14:46:04 +0000
@@ -1,7 +1,7 @@
1#!/usr/bin/python1#!/usr/bin/python
2# -*- coding: utf8 -*-2# -*- coding: utf8 -*-
33
4from report_aeroo.ctt_objects import ctt_currency4from openerp.addons.report_aeroo.ctt_objects import ctt_currency
55
6class lvl(ctt_currency):6class lvl(ctt_currency):
7 def _init_currency(self):7 def _init_currency(self):
88
=== modified file 'report_aeroo/ctt_languages/uk_UA/currencies/rub.py'
--- report_aeroo/ctt_languages/uk_UA/currencies/rub.py 2013-05-16 15:53:25 +0000
+++ report_aeroo/ctt_languages/uk_UA/currencies/rub.py 2013-10-28 14:46:04 +0000
@@ -1,7 +1,7 @@
1#!/usr/bin/python1#!/usr/bin/python
2# -*- coding: utf8 -*-2# -*- coding: utf8 -*-
33
4from report_aeroo.ctt_objects import ctt_currency4from openerp.addons.report_aeroo.ctt_objects import ctt_currency
55
6class rub(ctt_currency):6class rub(ctt_currency):
7 def _init_currency(self):7 def _init_currency(self):
88
=== modified file 'report_aeroo/ctt_languages/uk_UA/currencies/uah.py'
--- report_aeroo/ctt_languages/uk_UA/currencies/uah.py 2013-05-16 15:53:25 +0000
+++ report_aeroo/ctt_languages/uk_UA/currencies/uah.py 2013-10-28 14:46:04 +0000
@@ -1,7 +1,7 @@
1#!/usr/bin/python1#!/usr/bin/python
2# -*- coding: utf8 -*-2# -*- coding: utf8 -*-
33
4from report_aeroo.ctt_objects import ctt_currency4from openerp.addons.report_aeroo.ctt_objects import ctt_currency
55
6class uah(ctt_currency):6class uah(ctt_currency):
7 def _init_currency(self):7 def _init_currency(self):
88
=== modified file 'report_aeroo/ctt_languages/uk_UA/currencies/usd.py'
--- report_aeroo/ctt_languages/uk_UA/currencies/usd.py 2013-05-16 15:53:25 +0000
+++ report_aeroo/ctt_languages/uk_UA/currencies/usd.py 2013-10-28 14:46:04 +0000
@@ -1,7 +1,7 @@
1#!/usr/bin/python1#!/usr/bin/python
2# -*- coding: utf8 -*-2# -*- coding: utf8 -*-
33
4from report_aeroo.ctt_objects import ctt_currency4from openerp.addons.report_aeroo.ctt_objects import ctt_currency
55
6class usd(ctt_currency):6class usd(ctt_currency):
7 def _init_currency(self):7 def _init_currency(self):
88
=== modified file 'report_aeroo/installer.py'
--- report_aeroo/installer.py 2013-05-16 15:53:25 +0000
+++ report_aeroo/installer.py 2013-10-28 14:46:04 +0000
@@ -30,10 +30,10 @@
30#30#
31##############################################################################31##############################################################################
3232
33from osv import fields33from openerp.osv import fields
34from osv import osv34from openerp.osv import osv
35import netsvc35import openerp.netsvc
36import tools36import openerp.tools
37import os, base6437import os, base64
38import urllib238import urllib2
3939
4040
=== modified file 'report_aeroo/report_aeroo.py'
--- report_aeroo/report_aeroo.py 2013-05-16 15:53:25 +0000
+++ report_aeroo/report_aeroo.py 2013-10-28 14:46:04 +0000
@@ -34,9 +34,9 @@
3434
35import os, sys, traceback35import os, sys, traceback
36from tempfile import NamedTemporaryFile36from tempfile import NamedTemporaryFile
37import report37from openerp import report
38from report.report_sxw import report_sxw, report_rml, browse_record_list38from openerp.report.report_sxw import report_sxw, report_rml, browse_record_list
39from report.pyPdf import PdfFileWriter, PdfFileReader39from openerp.report.pyPdf import PdfFileWriter, PdfFileReader
40#import zipfile40#import zipfile
41try:41try:
42 from cStringIO import StringIO42 from cStringIO import StringIO
@@ -44,9 +44,9 @@
44 from StringIO import StringIO44 from StringIO import StringIO
45from xml.dom import minidom45from xml.dom import minidom
46import base6446import base64
47from osv import osv47from openerp.osv import osv
48from tools.translate import _48from openerp.tools.translate import _
49import tools49from openerp import tools
50import time50import time
51import re51import re
52import copy52import copy
@@ -57,14 +57,14 @@
57 from addons import load_information_from_description_file # for OpenERP 6.0.x57 from addons import load_information_from_description_file # for OpenERP 6.0.x
58except ImportError:58except ImportError:
59 from openerp.modules import load_information_from_description_file # for OpenERP 6.159 from openerp.modules import load_information_from_description_file # for OpenERP 6.1
60import release60from openerp import release
6161
62import aeroolib62import aeroolib
63from aeroolib.plugins.opendocument import Template, OOSerializer63from aeroolib.plugins.opendocument import Template, OOSerializer
64from genshi.template import NewTextTemplate64from genshi.template import NewTextTemplate
65from genshi import __version__ as genshi_version65from genshi import __version__ as genshi_version
66import pooler66from openerp import pooler
67import netsvc67from openerp import netsvc
68from lxml import etree68from lxml import etree
69import logging69import logging
7070
7171
=== modified file 'report_aeroo/report_xml.py'
--- report_aeroo/report_xml.py 2013-05-16 15:53:25 +0000
+++ report_aeroo/report_xml.py 2013-10-28 14:46:04 +0000
@@ -29,19 +29,19 @@
29#29#
30##############################################################################30##############################################################################
3131
32from osv import osv,fields32from openerp.osv import osv,fields
33from osv.orm import transfer_modifiers_to_node33from openerp.osv.orm import transfer_modifiers_to_node
34import netsvc34import openerp.netsvc
35from report_aeroo import Aeroo_report, aeroo_ooo_test35from openerp.addons.report_aeroo.report_aeroo import Aeroo_report, aeroo_ooo_test
36from report.report_sxw import rml_parse36from openerp.report.report_sxw import rml_parse
37import base64, binascii37import base64, binascii
38import tools38from openerp import tools
39import encodings39import encodings
40from tools.translate import _40from openerp.tools.translate import _
4141
42import imp, sys, os42import imp, sys, os
43import zipimport43import zipimport
44from tools.config import config44from openerp.tools.config import config
45from lxml import etree45from lxml import etree
4646
47class report_stylesheets(osv.osv):47class report_stylesheets(osv.osv):
4848
=== modified file 'report_aeroo/translate.py'
--- report_aeroo/translate.py 2013-05-16 15:53:25 +0000
+++ report_aeroo/translate.py 2013-10-28 14:46:04 +0000
@@ -22,15 +22,15 @@
2222
23import os23import os
24import logging24import logging
25import pooler25from openerp import pooler
26import tools26from openerp import tools
27from tools.translate import trans_parse_rml, trans_parse_xsl, trans_parse_view27from openerp.tools.translate import trans_parse_rml, trans_parse_xsl, trans_parse_view
28import fnmatch28import fnmatch
29from os.path import join29from os.path import join
30from lxml import etree30from lxml import etree
31from tools import misc31from openerp.tools import misc
32from tools.misc import UpdateableStr32from openerp.tools.misc import UpdateableStr
33from tools import osutil33from openerp.tools import osutil
34from babel.messages import extract34from babel.messages import extract
3535
36_logger = logging.getLogger(__name__)36_logger = logging.getLogger(__name__)
@@ -346,5 +346,5 @@
346 return out346 return out
347347
348import sys348import sys
349sys.modules['tools.translate'].trans_generate = extend_trans_generate349sys.modules['openerp.tools.translate'].trans_generate = extend_trans_generate
350350
351351
=== modified file 'report_aeroo/wizard/add_print_button.py'
--- report_aeroo/wizard/add_print_button.py 2013-05-16 15:53:25 +0000
+++ report_aeroo/wizard/add_print_button.py 2013-10-28 14:46:04 +0000
@@ -29,10 +29,10 @@
29#29#
30##############################################################################30##############################################################################
3131
32import pooler32from openerp import pooler
33from tools.translate import _33from openerp.tools.translate import _
34from osv import osv34from openerp.osv import osv
35from osv import fields35from openerp.osv import fields
3636
37special_reports = [37special_reports = [
38 'printscreen.list'38 'printscreen.list'
3939
=== modified file 'report_aeroo/wizard/remove_print_button.py'
--- report_aeroo/wizard/remove_print_button.py 2013-05-16 15:53:25 +0000
+++ report_aeroo/wizard/remove_print_button.py 2013-10-28 14:46:04 +0000
@@ -29,10 +29,10 @@
29#29#
30##############################################################################30##############################################################################
3131
32import pooler32from openerp import pooler
33from tools.translate import _33from openerp.tools.translate import _
34from osv import osv34from openerp.osv import osv
35from osv import fields35from openerp.osv import fields
3636
37def ir_del(cr, uid, id):37def ir_del(cr, uid, id):
38 obj = pooler.get_pool(cr.dbname).get('ir.values')38 obj = pooler.get_pool(cr.dbname).get('ir.values')
3939
=== modified file 'report_aeroo/wizard/report_actions.py'
--- report_aeroo/wizard/report_actions.py 2013-02-01 16:11:17 +0000
+++ report_aeroo/wizard/report_actions.py 2013-10-28 14:46:04 +0000
@@ -31,7 +31,7 @@
3131
32import wizard32import wizard
33import pooler33import pooler
34from tools.translate import _34from openerp.tools.translate import _
3535
36def ir_set(cr, uid, key, key2, name, models, value, replace=True, isobject=False, meta=None):36def ir_set(cr, uid, key, key2, name, models, value, replace=True, isobject=False, meta=None):
37 obj = pooler.get_pool(cr.dbname).get('ir.values')37 obj = pooler.get_pool(cr.dbname).get('ir.values')
3838
=== modified file 'report_aeroo/wizard/report_import_wizard.py'
--- report_aeroo/wizard/report_import_wizard.py 2013-05-16 15:53:25 +0000
+++ report_aeroo/wizard/report_import_wizard.py 2013-10-28 14:46:04 +0000
@@ -29,10 +29,10 @@
29#29#
30##############################################################################30##############################################################################
3131
32from osv import osv32from openerp.osv import osv
33from osv import fields33from openerp.osv import fields
34from tools import convert_xml_import34from openerp.tools import convert_xml_import
35from tools.translate import _35from openerp.tools.translate import _
36import base6436import base64
37import lxml.etree37import lxml.etree
38import zipfile38import zipfile
3939
=== modified file 'report_aeroo/wizard/report_print_actions.py'
--- report_aeroo/wizard/report_print_actions.py 2013-05-16 15:53:25 +0000
+++ report_aeroo/wizard/report_print_actions.py 2013-10-28 14:46:04 +0000
@@ -29,11 +29,11 @@
29#29#
30##############################################################################30##############################################################################
3131
32from osv import osv32from openerp.osv import osv
33from osv import fields33from openerp.osv import fields
34import netsvc34from openerp import netsvc
3535
36from tools.translate import _36from openerp.tools.translate import _
3737
38class report_print_actions(osv.osv_memory):38class report_print_actions(osv.osv_memory):
39 _name = 'aeroo.print_actions'39 _name = 'aeroo.print_actions'
4040
=== modified file 'report_aeroo/wizard/report_print_by_action.py'
--- report_aeroo/wizard/report_print_by_action.py 2013-02-01 16:11:17 +0000
+++ report_aeroo/wizard/report_print_by_action.py 2013-10-28 14:46:04 +0000
@@ -30,8 +30,8 @@
30##############################################################################30##############################################################################
3131
3232
33from osv import osv33from openerp.osv import osv
34from osv import fields34from openerp.osv import fields
3535
36class report_print_by_action(osv.osv_memory):36class report_print_by_action(osv.osv_memory):
37 _name = 'aeroo.print_by_action'37 _name = 'aeroo.print_by_action'
3838
=== modified file 'report_aeroo_direct_print/check_deps.py'
--- report_aeroo_direct_print/check_deps.py 2013-05-16 15:53:25 +0000
+++ report_aeroo_direct_print/check_deps.py 2013-10-28 14:46:04 +0000
@@ -30,8 +30,8 @@
30#30#
31##############################################################################31##############################################################################
3232
33from osv import osv33from openerp.osv import osv
34from tools.translate import _34from openerp.tools.translate import _
3535
36__all__ = [36__all__ = [
37 'check_deps',37 'check_deps',
3838
=== modified file 'report_aeroo_direct_print/installer.py'
--- report_aeroo_direct_print/installer.py 2013-05-16 15:53:25 +0000
+++ report_aeroo_direct_print/installer.py 2013-10-28 14:46:04 +0000
@@ -30,9 +30,9 @@
30#30#
31##############################################################################31##############################################################################
3232
33from osv import fields33from openerp.osv import fields
34from osv import osv34from openerp.osv import osv
35import tools35from openerp import tools
36import os, base6436import os, base64
37import cups37import cups
38import urllib238import urllib2
3939
=== modified file 'report_aeroo_direct_print/report_aeroo_direct_print.py'
--- report_aeroo_direct_print/report_aeroo_direct_print.py 2013-05-16 15:53:25 +0000
+++ report_aeroo_direct_print/report_aeroo_direct_print.py 2013-10-28 14:46:04 +0000
@@ -29,11 +29,11 @@
29#29#
30##############################################################################30##############################################################################
3131
32from osv import osv32from openerp.osv import osv
33from osv import fields33from openerp.osv import fields
34from tools.translate import _34from openerp.tools.translate import _
3535
36import netsvc36from openerp import netsvc
37import cups37import cups
38from tempfile import NamedTemporaryFile38from tempfile import NamedTemporaryFile
39import md539import md5
4040
=== modified file 'report_aeroo_ooo/DocumentConverter.py'
--- report_aeroo_ooo/DocumentConverter.py 2013-05-16 15:53:25 +0000
+++ report_aeroo_ooo/DocumentConverter.py 2013-10-28 14:46:04 +0000
@@ -45,7 +45,7 @@
45from com.sun.star.lang import IllegalArgumentException45from com.sun.star.lang import IllegalArgumentException
46from com.sun.star.io import XOutputStream46from com.sun.star.io import XOutputStream
47from com.sun.star.io import IOException47from com.sun.star.io import IOException
48from tools.translate import _48from openerp.tools.translate import _
4949
50logger = logging.getLogger(__name__)50logger = logging.getLogger(__name__)
5151
5252
=== modified file 'report_aeroo_ooo/check_deps.py'
--- report_aeroo_ooo/check_deps.py 2013-02-01 16:11:17 +0000
+++ report_aeroo_ooo/check_deps.py 2013-10-28 14:46:04 +0000
@@ -30,8 +30,8 @@
30#30#
31##############################################################################31##############################################################################
3232
33from osv import osv33from openerp.osv import osv
34from tools.translate import _34from openerp.tools.translate import _
3535
36__all__ = [36__all__ = [
37 'check_deps',37 'check_deps',
3838
=== modified file 'report_aeroo_ooo/installer.py'
--- report_aeroo_ooo/installer.py 2013-05-16 15:53:25 +0000
+++ report_aeroo_ooo/installer.py 2013-10-28 14:46:04 +0000
@@ -30,10 +30,10 @@
30#30#
31##############################################################################31##############################################################################
3232
33from osv import fields33from openerp.osv import fields
34from osv import osv34from openerp.osv import osv
35import netsvc35from openerp import netsvc
36import tools36from openerp import tools
37from xml.dom import minidom37from xml.dom import minidom
38import os, base6438import os, base64
39import urllib239import urllib2
@@ -41,7 +41,7 @@
41 from cStringIO import StringIO41 from cStringIO import StringIO
42except ImportError:42except ImportError:
43 from StringIO import StringIO43 from StringIO import StringIO
44from tools.translate import _44from openerp.tools.translate import _
4545
46from report_aeroo_ooo.DocumentConverter import DocumentConversionException46from report_aeroo_ooo.DocumentConverter import DocumentConversionException
47from report_aeroo_ooo.report import OpenOffice_service47from report_aeroo_ooo.report import OpenOffice_service
4848
=== modified file 'report_aeroo_ooo/report.py'
--- report_aeroo_ooo/report.py 2013-05-16 15:53:25 +0000
+++ report_aeroo_ooo/report.py 2013-10-28 14:46:04 +0000
@@ -29,8 +29,8 @@
29#29#
30##############################################################################30##############################################################################
3131
32from osv import osv,fields32from openerp.osv import osv,fields
33import netsvc33from openerp import netsvc
34from DocumentConverter import DocumentConverter34from DocumentConverter import DocumentConverter
3535
36class OpenOffice_service (DocumentConverter, netsvc.Service):36class OpenOffice_service (DocumentConverter, netsvc.Service):

Subscribers

People subscribed via source and target branches