Merge lp:~vauxoo/openerp-venezuela-localization/jose-l10n_ve into lp:~openerp-venezuela/openerp-venezuela-localization/6.0-trunk

Status: Merged
Merged at revision: 544
Proposed branch: lp:~vauxoo/openerp-venezuela-localization/jose-l10n_ve
Merge into: lp:~openerp-venezuela/openerp-venezuela-localization/6.0-trunk
Diff against target: 48 lines (+7/-7)
3 files modified
l10n_ve/__init__.py (+0/-1)
l10n_ve/__openerp__.py (+7/-5)
l10n_ve/model/account.py (+0/-1)
To merge this branch: bzr merge lp:~vauxoo/openerp-venezuela-localization/jose-l10n_ve
Reviewer Review Type Date Requested Status
hbto [Vauxoo] http://www.vauxoo.com Pending
Review via email: mp+80359@code.launchpad.net

Description of the change

Add files xml of the folder data in the init_xml of __openerp__.py and delete the a print in account.py
print 'ENTRO AL EXECUTE DEL WIZARD DE CUENTAS'

To post a comment you must log in.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'l10n_ve/__init__.py'
2--- l10n_ve/__init__.py 2011-09-29 06:29:47 +0000
3+++ l10n_ve/__init__.py 2011-10-25 16:46:02 +0000
4@@ -22,4 +22,3 @@
5
6 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
7 import model
8-
9
10=== modified file 'l10n_ve/__openerp__.py'
11--- l10n_ve/__openerp__.py 2011-10-19 19:16:27 +0000
12+++ l10n_ve/__openerp__.py 2011-10-25 16:46:02 +0000
13@@ -32,16 +32,18 @@
14 This Module load a generic format for manage medium and big business.
15 You will need accounting knowledge to understad some concepts.
16 ''',
17+
18+ "init_xml": ['data/account_tax_code.xml',
19+ 'data/account_user_types.xml',
20+ 'data/account_chart.xml',
21+ 'data/account_account.xml',
22+ 'data/account_tax.xml',],
23+
24 "depends" : ["account",
25 "account_chart"],
26 "demo_xml" : [],
27 "update_xml" : [
28 'view/account_view.xml',
29- 'data/account_tax_code.xml',
30- 'data/account_user_types.xml',
31- 'data/account_chart.xml',
32- 'data/account_account.xml',
33- 'data/account_tax.xml',
34 'wizard/l10n_chart_ve_wizard.xml'],
35 "active": False,
36 "installable": True,
37
38=== modified file 'l10n_ve/model/account.py'
39--- l10n_ve/model/account.py 2011-09-29 06:29:47 +0000
40+++ l10n_ve/model/account.py 2011-10-25 16:46:02 +0000
41@@ -69,7 +69,6 @@
42 }
43
44 def execute(self, cr, uid, ids, context=None):
45- print 'ENTRO AL EXECUTE DEL WIZARD DE CUENTAS'
46 if context is None:
47 context = {}
48 super(wizard_multi_charts_accounts, self).execute(cr, uid, ids, context=context)