Merge lp:~vauxoo/openerp-mexico-localization/7.0-l10n_mx_facturae_group_show_default_wizards-dev_ernesto into lp:openerp-mexico-localization/7.0

Status: Merged
Merged at revision: 238
Proposed branch: lp:~vauxoo/openerp-mexico-localization/7.0-l10n_mx_facturae_group_show_default_wizards-dev_ernesto
Merge into: lp:openerp-mexico-localization/7.0
Diff against target: 166 lines (+91/-4)
8 files modified
l10n_mx_facturae/__openerp__.py (+1/-0)
l10n_mx_facturae/wizard/wizard_invoice_facturae_xml_v6_view.xml (+1/-1)
l10n_mx_facturae_group_show_wizards/__init__.py (+25/-0)
l10n_mx_facturae_group_show_wizards/__openerp__.py (+51/-0)
l10n_mx_facturae_group_show_wizards/security/res_groups.xml (+8/-0)
l10n_mx_facturae_pac_sf/__openerp__.py (+2/-1)
l10n_mx_facturae_pac_sf/wizard/wizard_cancel_invoice_pac_sf_view.xml (+1/-1)
l10n_mx_facturae_pac_sf/wizard/wizard_export_invoice_pac_sf_view_v6.xml (+2/-1)
To merge this branch: bzr merge lp:~vauxoo/openerp-mexico-localization/7.0-l10n_mx_facturae_group_show_default_wizards-dev_ernesto
Reviewer Review Type Date Requested Status
Luis Ernesto García Medina - http://www.vauxoo.com (community) Needs Resubmitting
Isaac López Zúñiga Pending
Review via email: mp+175883@code.launchpad.net

Description of the change

Se agrego el grupo Show Default Wizards FacturaE para ocultar los wizards:
- Factura Electronica XML
- Cancelar FActura PAC SF
- Subir Factura al PAC V6

To post a comment you must log in.
238. By Luis Ernesto García Medina - http://www.vauxoo.com

[REf][l10n_mx_facturae_group_show_wizards] changed references and name of module

Revision history for this message
Luis Ernesto García Medina - http://www.vauxoo.com (ernesto-gm) wrote :

Se cambiaron las dependencias de los módulos l10n_mx_facturae y l10n_mx_facturae_pac_sf por cambio de nombre del modulo del grupo

review: Needs Resubmitting
239. By Luis Ernesto García Medina - http://www.vauxoo.com

[REF][l10n_mx_facturae_group_show_wizards] changed description of module

Revision history for this message
Luis Ernesto García Medina - http://www.vauxoo.com (ernesto-gm) wrote :

Isaac, se agrego la descripción que me diste

review: Needs Resubmitting
240. By Luis Ernesto García Medina - http://www.vauxoo.com

[REF][l10n_mx_facturae_group_show_wizards] changed description of module

Revision history for this message
Luis Ernesto García Medina - http://www.vauxoo.com (ernesto-gm) wrote :

Listo Isaac, ya quedo con la descripción que me enviaste y deje los wizards que se ocultan

review: Needs Resubmitting
241. By Isaac López Zúñiga

[REF][l10n_mx_facturae_group_show_wizards] indentation added to wizard to show

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'l10n_mx_facturae/__openerp__.py'
2--- l10n_mx_facturae/__openerp__.py 2013-07-11 23:03:57 +0000
3+++ l10n_mx_facturae/__openerp__.py 2013-07-23 00:21:24 +0000
4@@ -62,6 +62,7 @@
5 "l10n_mx_invoice_currency_chgdft",
6 "l10n_mx_base_vat_split",
7 "l10n_mx_facturae_report",
8+ "l10n_mx_facturae_group_show_wizards",
9 ],
10 "demo" : ["demo/l10n_mx_facturae_seq_demo.xml",],
11 "data" : [
12
13=== modified file 'l10n_mx_facturae/wizard/wizard_invoice_facturae_xml_v6_view.xml'
14--- l10n_mx_facturae/wizard/wizard_invoice_facturae_xml_v6_view.xml 2013-06-28 22:52:28 +0000
15+++ l10n_mx_facturae/wizard/wizard_invoice_facturae_xml_v6_view.xml 2013-07-23 00:21:24 +0000
16@@ -25,7 +25,7 @@
17 target="new"
18 key2="client_action_multi"
19 id="action_wizard_facturae_xml_v6_form"
20- groups="l10n_mx_facturae_groups.group_l10n_mx_facturae_user"
21+ groups="l10n_mx_facturae_group_show_wizards.res_group_facturae_show_default_wizards"
22
23 />
24
25
26=== added directory 'l10n_mx_facturae_group_show_wizards'
27=== added file 'l10n_mx_facturae_group_show_wizards/__init__.py'
28--- l10n_mx_facturae_group_show_wizards/__init__.py 1970-01-01 00:00:00 +0000
29+++ l10n_mx_facturae_group_show_wizards/__init__.py 2013-07-23 00:21:24 +0000
30@@ -0,0 +1,25 @@
31+# -*- encoding: utf-8 -*-
32+###########################################################################
33+# Module Writen to OpenERP, Open Source Management Solution
34+#
35+# Copyright (c) 2011 Vauxoo - http://www.vauxoo.com
36+# All Rights Reserved.
37+# info Vauxoo (info@vauxoo.com)
38+############################################################################
39+# Coded by: Luis Ernesto García (ernesto_gm@vauxoo.com)
40+############################################################################
41+#
42+# This program is free software: you can redistribute it and/or modify
43+# it under the terms of the GNU Affero General Public License as
44+# published by the Free Software Foundation, either version 3 of the
45+# License, or (at your option) any later version.
46+#
47+# This program is distributed in the hope that it will be useful,
48+# but WITHOUT ANY WARRANTY; without even the implied warranty of
49+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
50+# GNU Affero General Public License for more details.
51+#
52+# You should have received a copy of the GNU Affero General Public License
53+# along with this program. If not, see <http://www.gnu.org/licenses/>.
54+#
55+##############################################################################
56
57=== added file 'l10n_mx_facturae_group_show_wizards/__openerp__.py'
58--- l10n_mx_facturae_group_show_wizards/__openerp__.py 1970-01-01 00:00:00 +0000
59+++ l10n_mx_facturae_group_show_wizards/__openerp__.py 2013-07-23 00:21:24 +0000
60@@ -0,0 +1,51 @@
61+#!/usr/bin/python
62+# -*- encoding: utf-8 -*-
63+###########################################################################
64+# Module Writen to OpenERP, Open Source Management Solution
65+# Copyright (C) Vauxoo (<http://vauxoo.com>).
66+# All Rights Reserved
67+###############Credits######################################################
68+# Coded by: Luis Ernesto García (ernesto_gm@vauxoo.com)
69+#############################################################################
70+# This program is free software: you can redistribute it and/or modify
71+# it under the terms of the GNU Affero General Public License as published by
72+# the Free Software Foundation, either version 3 of the License, or
73+# (at your option) any later version.
74+#
75+# This program is distributed in the hope that it will be useful,
76+# but WITHOUT ANY WARRANTY; without even the implied warranty of
77+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
78+# GNU Affero General Public License for more details.
79+#
80+# You should have received a copy of the GNU Affero General Public License
81+# along with this program. If not, see <http://www.gnu.org/licenses/>.
82+################################################################################
83+
84+{
85+ "name" : "Group For Wizards Of Facturae",
86+ "version" : "1.0",
87+ "author" : "Vauxoo",
88+ "category" : "Localization/Mexico",
89+ "description" : """
90+Group for show wizards of FacturaE
91+==================================
92+
93+This module creates the group Show Default Wizards FacturaE, if a user has this group,\n
94+can see the facturae wizards, however is advisable that nobody has this group assigned. \n
95+Wizards to show:\n
96+
97+- Factura Electronica XML \n
98+- Cancelar FActura PAC SF \n
99+- Subir Factura al PAC V6 \n
100+ """,
101+ "website" : "http://www.vauxoo.com/",
102+ "license" : "AGPL-3",
103+ "depends" : ["base",
104+ ],
105+ "demo" : [],
106+ "data" : [
107+ "security/res_groups.xml",
108+ ],
109+ "installable" : True,
110+ "active" : False,
111+}
112
113=== added directory 'l10n_mx_facturae_group_show_wizards/security'
114=== added file 'l10n_mx_facturae_group_show_wizards/security/res_groups.xml'
115--- l10n_mx_facturae_group_show_wizards/security/res_groups.xml 1970-01-01 00:00:00 +0000
116+++ l10n_mx_facturae_group_show_wizards/security/res_groups.xml 2013-07-23 00:21:24 +0000
117@@ -0,0 +1,8 @@
118+<?xml version="1.0" encoding="utf-8"?>
119+<openerp>
120+ <data noupdate="1">
121+ <record id="res_group_facturae_show_default_wizards" model="res.groups">
122+ <field name="name">Show Default Wizards FacturaE</field>
123+ </record>
124+ </data>
125+</openerp>
126
127=== modified file 'l10n_mx_facturae_pac_sf/__openerp__.py'
128--- l10n_mx_facturae_pac_sf/__openerp__.py 2013-07-11 23:03:57 +0000
129+++ l10n_mx_facturae_pac_sf/__openerp__.py 2013-07-23 00:21:24 +0000
130@@ -41,7 +41,8 @@
131 "l10n_mx_facturae_report",
132 "l10n_mx_facturae_seq",
133 "l10n_mx_ir_attachment_facturae",
134- "l10n_mx_facturae_pac"],
135+ "l10n_mx_facturae_pac",
136+ "l10n_mx_facturae_group_show_wizards",],
137 "demo" : [
138 "demo/l10n_mx_facturae_pac_sf_demo.xml",
139 "demo/l10n_mx_facturae_seq_demo.xml",
140
141=== modified file 'l10n_mx_facturae_pac_sf/wizard/wizard_cancel_invoice_pac_sf_view.xml'
142--- l10n_mx_facturae_pac_sf/wizard/wizard_cancel_invoice_pac_sf_view.xml 2013-06-28 22:52:28 +0000
143+++ l10n_mx_facturae_pac_sf/wizard/wizard_cancel_invoice_pac_sf_view.xml 2013-07-23 00:21:24 +0000
144@@ -27,7 +27,7 @@
145 target="new"
146 key2="client_action_multi"
147 id="action_wizard_cancel_pac_sf_form"
148- groups="l10n_mx_facturae_groups.group_l10n_mx_facturae_manager"/>
149+ groups="l10n_mx_facturae_group_show_wizards.res_group_facturae_show_default_wizards"/>
150
151 </data>
152 </openerp>
153
154=== modified file 'l10n_mx_facturae_pac_sf/wizard/wizard_export_invoice_pac_sf_view_v6.xml'
155--- l10n_mx_facturae_pac_sf/wizard/wizard_export_invoice_pac_sf_view_v6.xml 2013-01-10 15:52:56 +0000
156+++ l10n_mx_facturae_pac_sf/wizard/wizard_export_invoice_pac_sf_view_v6.xml 2013-07-23 00:21:24 +0000
157@@ -29,7 +29,8 @@
158 view_mode="form"
159 target="new"
160 key2="client_action_multi"
161- id="action_wizard_export_pac_sf_form"/>
162+ id="action_wizard_export_pac_sf_form"
163+ groups="l10n_mx_facturae_group_show_wizards.res_group_facturae_show_default_wizards"/>
164
165 </data>
166 </openerp>