Merge lp:~vauxoo/addons-vauxoo/7.0-res_bank_menu_payroll-dev-jc into lp:addons-vauxoo/7.0

Proposed by Juan Carlos Hernandez
Status: Merged
Merged at revision: 1015
Proposed branch: lp:~vauxoo/addons-vauxoo/7.0-res_bank_menu_payroll-dev-jc
Merge into: lp:addons-vauxoo/7.0
Diff against target: 91 lines (+75/-0)
3 files modified
res_bank_menu_payroll/__init__.py (+22/-0)
res_bank_menu_payroll/__openerp__.py (+45/-0)
res_bank_menu_payroll/view/res_bank_view.xml (+8/-0)
To merge this branch: bzr merge lp:~vauxoo/addons-vauxoo/7.0-res_bank_menu_payroll-dev-jc
Reviewer Review Type Date Requested Status
Jorge Angel Naranjo Rogel - http://www.vauxoo.com Pending
Juan Carlos Hernandez Pending
Review via email: mp+210516@code.launchpad.net

Description of the change

se agregó módulo res_bank_menu_payroll que hereda un menú en recursos humanos en el apartado Configuración/nomina con dependencia del módulo hr_payroll

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=== added directory 'res_bank_menu_payroll'
2=== added file 'res_bank_menu_payroll/__init__.py'
3--- res_bank_menu_payroll/__init__.py 1970-01-01 00:00:00 +0000
4+++ res_bank_menu_payroll/__init__.py 2014-03-11 23:21:13 +0000
5@@ -0,0 +1,22 @@
6+#!/usr/bin/python
7+# -*- encoding: utf-8 -*-
8+###########################################################################
9+# Module Writen to OpenERP, Open Source Management Solution
10+# Copyright (C) 2013 Vauxoo (<http://vauxoo.com>).
11+# All Rights Reserved
12+###############Credits######################################################
13+# Coded by: vauxoo consultores (info@vauxoo.com)
14+#############################################################################
15+# This program is free software: you can redistribute it and/or modify
16+# it under the terms of the GNU Affero General Public License as published by
17+# the Free Software Foundation, either version 3 of the License, or
18+# (at your option) any later version.
19+#
20+# This program is distributed in the hope that it will be useful,
21+# but WITHOUT ANY WARRANTY; without even the implied warranty of
22+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23+# GNU Affero General Public License for more details.
24+#
25+# You should have received a copy of the GNU Affero General Public License
26+# along with this program. If not, see <http://www.gnu.org/licenses/>.
27+################################################################################
28
29=== added file 'res_bank_menu_payroll/__openerp__.py'
30--- res_bank_menu_payroll/__openerp__.py 1970-01-01 00:00:00 +0000
31+++ res_bank_menu_payroll/__openerp__.py 2014-03-11 23:21:13 +0000
32@@ -0,0 +1,45 @@
33+#!/usr/bin/python
34+# -*- encoding: utf-8 -*-
35+###########################################################################
36+# Module Writen to OpenERP, Open Source Management Solution
37+# Copyright (C) 2013 Vauxoo (<http://vauxoo.com>).
38+# All Rights Reserved
39+###############Credits######################################################
40+# Coded by: vauxoo consultores (info@vauxoo.com)
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 published by
44+# the Free Software Foundation, either version 3 of the License, or
45+# (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+ "name": "Menu of Banks in Human Resources",
57+ "version": "1.0",
58+ "depends": [
59+ "hr_payroll",
60+ ],
61+ "author": "Vauxoo",
62+ "description": """
63+This module adds the menu banks in human resources
64+===============
65+ """,
66+ "website": "http://vauxoo.com",
67+ "category": "Addons Vauxoo",
68+ "data": [
69+ "view/res_bank_view.xml",
70+ ],
71+ "demo" : [
72+ ],
73+ "test": [
74+ ],
75+ "active": False,
76+ "installable": True,
77+}
78
79=== added directory 'res_bank_menu_payroll/view'
80=== added file 'res_bank_menu_payroll/view/res_bank_view.xml'
81--- res_bank_menu_payroll/view/res_bank_view.xml 1970-01-01 00:00:00 +0000
82+++ res_bank_menu_payroll/view/res_bank_view.xml 2014-03-11 23:21:13 +0000
83@@ -0,0 +1,8 @@
84+<?xml version="1.0" encoding="utf-8"?>
85+<openerp>
86+ <data>
87+
88+ <menuitem id="hr_payroll_bank_menu" parent="hr_payroll.payroll_configure" name="Banks" action="base.action_res_bank_form"/>
89+
90+ </data>
91+</openerp>