Merge lp:~vauxoo/addons-vauxoo/7.0-merge-account-voucher-generic-dev-1824-kty into lp:~vauxoo/addons-vauxoo/addons-vauxoo-cicsa

Proposed by Katherine Zaoral (Vauxoo)
Status: Merged
Merged at revision: 1068
Proposed branch: lp:~vauxoo/addons-vauxoo/7.0-merge-account-voucher-generic-dev-1824-kty
Merge into: lp:~vauxoo/addons-vauxoo/addons-vauxoo-cicsa
Diff against target: 576 lines (+460/-0)
14 files modified
account_voucher_department/__init__.py (+27/-0)
account_voucher_department/__openerp__.py (+54/-0)
account_voucher_department/i18n/account_voucher_department.pot (+37/-0)
account_voucher_department/model/__init__.py (+26/-0)
account_voucher_department/model/account_voucher.py (+53/-0)
account_voucher_department/view/account_voucher_view.xml (+20/-0)
account_voucher_department/wizard/__init__.py (+25/-0)
account_voucher_requester/__init__.py (+27/-0)
account_voucher_requester/__openerp__.py (+52/-0)
account_voucher_requester/i18n/account_voucher_requester.pot (+32/-0)
account_voucher_requester/model/__init__.py (+26/-0)
account_voucher_requester/model/account_voucher.py (+39/-0)
account_voucher_requester/view/account_voucher_view.xml (+17/-0)
account_voucher_requester/wizard/__init__.py (+25/-0)
To merge this branch: bzr merge lp:~vauxoo/addons-vauxoo/7.0-merge-account-voucher-generic-dev-1824-kty
Reviewer Review Type Date Requested Status
Katherine Zaoral (Vauxoo) Approve
Review via email: mp+226028@code.launchpad.net

Description of the change

[MERGE] add new generic modules account_voucher_requester and account_voucher_department

To post a comment you must log in.
Revision history for this message
Katherine Zaoral (Vauxoo) (kathy-zaoral) wrote :

waiting for runbot
Also need a complete functional test.

Revision history for this message
Katherine Zaoral (Vauxoo) (kathy-zaoral) wrote :

runbot is green.
the functional test work propertly
I will proceed with the merge.

review: Approve
1070. By Katherine Zaoral (Vauxoo)

[ADD] add translation templates for the two new modules.

Revision history for this message
Katherine Zaoral (Vauxoo) (kathy-zaoral) wrote :

add missing translation templates files for both modules.

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== added directory 'account_voucher_department'
=== added file 'account_voucher_department/__init__.py'
--- account_voucher_department/__init__.py 1970-01-01 00:00:00 +0000
+++ account_voucher_department/__init__.py 2014-07-08 20:09:41 +0000
@@ -0,0 +1,27 @@
1#!/usr/bin/python
2# -*- encoding: utf-8 -*-
3###############################################################################
4# Module Writen to OpenERP, Open Source Management Solution
5# Copyright (C) OpenERP Venezuela (<http://www.vauxoo.com>).
6# All Rights Reserved
7############# Credits #########################################################
8# Coded by: Katherine Zaoral <kathy@vauxoo.com>
9# Planified by: Humberto Arocha <hbto@vauxoo.com>
10# Audited by: Humberto Arocha <hbto@vauxoo.com>
11###############################################################################
12# This program is free software: you can redistribute it and/or modify
13# it under the terms of the GNU Affero General Public License as published
14# by the Free Software Foundation, either version 3 of the License, or
15# (at your option) any later version.
16#
17# This program is distributed in the hope that it will be useful,
18# but WITHOUT ANY WARRANTY; without even the implied warranty of
19# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20# GNU Affero General Public License for more details.
21#
22# You should have received a copy of the GNU Affero General Public License
23# along with this program. If not, see <http://www.gnu.org/licenses/>.
24###############################################################################
25
26import model
27import wizard
028
=== added file 'account_voucher_department/__openerp__.py'
--- account_voucher_department/__openerp__.py 1970-01-01 00:00:00 +0000
+++ account_voucher_department/__openerp__.py 2014-07-08 20:09:41 +0000
@@ -0,0 +1,54 @@
1#!/usr/bin/python
2# -*- encoding: utf-8 -*-
3###############################################################################
4# Module Writen to OpenERP, Open Source Management Solution
5# Copyright (C) OpenERP Venezuela (<http://www.vauxoo.com>).
6# All Rights Reserved
7############# Credits #########################################################
8# Coded by: Katherine Zaoral <kathy@vauxoo.com>
9# Planified by: Humberto Arocha <hbto@vauxoo.com>
10# Audited by: Humberto Arocha <hbto@vauxoo.com>
11###############################################################################
12# This program is free software: you can redistribute it and/or modify
13# it under the terms of the GNU Affero General Public License as published
14# by the Free Software Foundation, either version 3 of the License, or
15# (at your option) any later version.
16#
17# This program is distributed in the hope that it will be useful,
18# but WITHOUT ANY WARRANTY; without even the implied warranty of
19# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20# GNU Affero General Public License for more details.
21#
22# You should have received a copy of the GNU Affero General Public License
23# along with this program. If not, see <http://www.gnu.org/licenses/>.
24###############################################################################
25
26{
27 'name': 'Account Voucher Department',
28 'version': '1.0',
29 'author': 'Vauxoo',
30 'website': 'http://www.vauxoo.com/',
31 'category': '',
32 'description': '''
33Account Voucher Department
34==========================
35
36This module add a department field to the account voucher model that it is
37automactly fill by the account voucher requester.
38''',
39 'depends': [
40 'account_voucher',
41 'account_voucher_requester',
42 'hr',
43 ],
44 'data': [
45 'view/account_voucher_view.xml',
46 ],
47 'demo': [],
48 'test': [],
49 'qweb': [],
50 'js': [],
51 'css': [],
52 'active': False,
53 'installable': True,
54}
055
=== added directory 'account_voucher_department/data'
=== added directory 'account_voucher_department/demo'
=== added directory 'account_voucher_department/doc'
=== added directory 'account_voucher_department/doc/images'
=== added directory 'account_voucher_department/i18n'
=== added file 'account_voucher_department/i18n/account_voucher_department.pot'
--- account_voucher_department/i18n/account_voucher_department.pot 1970-01-01 00:00:00 +0000
+++ account_voucher_department/i18n/account_voucher_department.pot 2014-07-08 20:09:41 +0000
@@ -0,0 +1,37 @@
1# Translation of OpenERP Server.
2# This file contains the translation of the following modules:
3# * account_voucher_department
4#
5msgid ""
6msgstr ""
7"Project-Id-Version: OpenERP Server 7.0\n"
8"Report-Msgid-Bugs-To: \n"
9"POT-Creation-Date: 2014-07-08 20:05+0000\n"
10"PO-Revision-Date: 2014-07-08 20:05+0000\n"
11"Last-Translator: <>\n"
12"Language-Team: \n"
13"MIME-Version: 1.0\n"
14"Content-Type: text/plain; charset=UTF-8\n"
15"Content-Transfer-Encoding: \n"
16"Plural-Forms: \n"
17
18#. module: account_voucher_department
19#: field:account.voucher,department_id:0
20msgid "Department"
21msgstr ""
22
23#. module: account_voucher_department
24#: help:account.voucher,department_id:0
25msgid "Department were the requester belongs."
26msgstr ""
27
28#. module: account_voucher_department
29#: model:ir.model,name:account_voucher_department.model_account_voucher
30msgid "Accounting Voucher"
31msgstr ""
32
33#. module: account_voucher_department
34#: view:account.voucher:0
35msgid "onchange_employee_id(employee_id)"
36msgstr ""
37
038
=== added directory 'account_voucher_department/model'
=== added file 'account_voucher_department/model/__init__.py'
--- account_voucher_department/model/__init__.py 1970-01-01 00:00:00 +0000
+++ account_voucher_department/model/__init__.py 2014-07-08 20:09:41 +0000
@@ -0,0 +1,26 @@
1#!/usr/bin/python
2# -*- encoding: utf-8 -*-
3###############################################################################
4# Module Writen to OpenERP, Open Source Management Solution
5# Copyright (C) OpenERP Venezuela (<http://www.vauxoo.com>).
6# All Rights Reserved
7############# Credits #########################################################
8# Coded by: Katherine Zaoral <kathy@vauxoo.com>
9# Planified by: Humberto Arocha <hbto@vauxoo.com>
10# Audited by: Humberto Arocha <hbto@vauxoo.com>
11###############################################################################
12# This program is free software: you can redistribute it and/or modify
13# it under the terms of the GNU Affero General Public License as published
14# by the Free Software Foundation, either version 3 of the License, or
15# (at your option) any later version.
16#
17# This program is distributed in the hope that it will be useful,
18# but WITHOUT ANY WARRANTY; without even the implied warranty of
19# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20# GNU Affero General Public License for more details.
21#
22# You should have received a copy of the GNU Affero General Public License
23# along with this program. If not, see <http://www.gnu.org/licenses/>.
24###############################################################################
25
26import account_voucher
027
=== added file 'account_voucher_department/model/account_voucher.py'
--- account_voucher_department/model/account_voucher.py 1970-01-01 00:00:00 +0000
+++ account_voucher_department/model/account_voucher.py 2014-07-08 20:09:41 +0000
@@ -0,0 +1,53 @@
1#!/usr/bin/python
2# -*- encoding: utf-8 -*-
3###############################################################################
4# Module Writen to OpenERP, Open Source Management Solution
5# Copyright (C) OpenERP Venezuela (<http://www.vauxoo.com>).
6# All Rights Reserved
7############# Credits #########################################################
8# Coded by: Katherine Zaoral <kathy@vauxoo.com>
9# Planified by: Humberto Arocha <hbto@vauxoo.com>
10# Audited by: Humberto Arocha <hbto@vauxoo.com>
11###############################################################################
12# This program is free software: you can redistribute it and/or modify
13# it under the terms of the GNU Affero General Public License as published
14# by the Free Software Foundation, either version 3 of the License, or
15# (at your option) any later version.
16#
17# This program is distributed in the hope that it will be useful,
18# but WITHOUT ANY WARRANTY; without even the implied warranty of
19# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20# GNU Affero General Public License for more details.
21#
22# You should have received a copy of the GNU Affero General Public License
23# along with this program. If not, see <http://www.gnu.org/licenses/>.
24###############################################################################
25
26from openerp.osv import fields, osv, orm
27from openerp.tools.translate import _
28from openerp import tools
29
30
31class account_voucher(osv.Model):
32
33 _inherit = 'account.voucher'
34 _columns = {
35 'department_id': fields.many2one(
36 'hr.department',
37 string='Department',
38 help='Department were the requester belongs.'),
39 }
40
41 def onchange_employee_id(self, cr, uid, ids, employee_id, context=None):
42 """ Return the department depending of the employee.
43 @param employee_id: employee id
44 """
45 context = context or {}
46 res = {}
47 he_obj = self.pool.get('hr.employee')
48 if employee_id:
49 he_brw = he_obj.browse(cr, uid, employee_id, context=context)
50 department_id = (he_brw.department_id and he_brw.department_id.id
51 or False)
52 res.update({'value': {'department_id': department_id}})
53 return res
054
=== added directory 'account_voucher_department/report'
=== added directory 'account_voucher_department/security'
=== added directory 'account_voucher_department/static'
=== added directory 'account_voucher_department/static/description'
=== added file 'account_voucher_department/static/description/index.html'
=== added directory 'account_voucher_department/static/src'
=== added directory 'account_voucher_department/static/src/css'
=== added directory 'account_voucher_department/static/src/img'
=== added file 'account_voucher_department/static/src/img/icon.png'
1Binary files account_voucher_department/static/src/img/icon.png 1970-01-01 00:00:00 +0000 and account_voucher_department/static/src/img/icon.png 2014-07-08 20:09:41 +0000 differ55Binary files account_voucher_department/static/src/img/icon.png 1970-01-01 00:00:00 +0000 and account_voucher_department/static/src/img/icon.png 2014-07-08 20:09:41 +0000 differ
=== added directory 'account_voucher_department/static/src/js'
=== added directory 'account_voucher_department/static/src/xml'
=== added directory 'account_voucher_department/test'
=== added directory 'account_voucher_department/view'
=== added file 'account_voucher_department/view/account_voucher_view.xml'
--- account_voucher_department/view/account_voucher_view.xml 1970-01-01 00:00:00 +0000
+++ account_voucher_department/view/account_voucher_view.xml 2014-07-08 20:09:41 +0000
@@ -0,0 +1,20 @@
1<?xml version="1.0" encoding="utf-8"?>
2<openerp>
3 <data>
4
5 <record model="ir.ui.view" id="account_voucher_department_form">
6 <field name="name">account.voucher.department.form</field>
7 <field name="model">account.voucher</field>
8 <field name="inherit_id" ref="account_voucher_requester.account_voucher_requester_form"/>
9 <field name="arch" type="xml">
10 <xpath expr="//field[@name='employee_id']" position="attributes">
11 <attribute name="on_change">onchange_employee_id(employee_id)</attribute>
12 </xpath>
13 <xpath expr="//field[@name='employee_id']" position="after">
14 <field name="department_id"/>
15 </xpath>
16 </field>
17 </record>
18
19 </data>
20</openerp>
021
=== added directory 'account_voucher_department/wizard'
=== added file 'account_voucher_department/wizard/__init__.py'
--- account_voucher_department/wizard/__init__.py 1970-01-01 00:00:00 +0000
+++ account_voucher_department/wizard/__init__.py 2014-07-08 20:09:41 +0000
@@ -0,0 +1,25 @@
1#!/usr/bin/python
2# -*- encoding: utf-8 -*-
3###############################################################################
4# Module Writen to OpenERP, Open Source Management Solution
5# Copyright (C) OpenERP Venezuela (<http://www.vauxoo.com>).
6# All Rights Reserved
7############# Credits #########################################################
8# Coded by: Katherine Zaoral <kathy@vauxoo.com>
9# Planified by: Humberto Arocha <hbto@vauxoo.com>
10# Audited by: Humberto Arocha <hbto@vauxoo.com>
11###############################################################################
12# This program is free software: you can redistribute it and/or modify
13# it under the terms of the GNU Affero General Public License as published
14# by the Free Software Foundation, either version 3 of the License, or
15# (at your option) any later version.
16#
17# This program is distributed in the hope that it will be useful,
18# but WITHOUT ANY WARRANTY; without even the implied warranty of
19# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20# GNU Affero General Public License for more details.
21#
22# You should have received a copy of the GNU Affero General Public License
23# along with this program. If not, see <http://www.gnu.org/licenses/>.
24###############################################################################
25
026
=== added directory 'account_voucher_department/workflow'
=== added directory 'account_voucher_requester'
=== added file 'account_voucher_requester/__init__.py'
--- account_voucher_requester/__init__.py 1970-01-01 00:00:00 +0000
+++ account_voucher_requester/__init__.py 2014-07-08 20:09:41 +0000
@@ -0,0 +1,27 @@
1#!/usr/bin/python
2# -*- encoding: utf-8 -*-
3###############################################################################
4# Module Writen to OpenERP, Open Source Management Solution
5# Copyright (C) OpenERP Venezuela (<http://www.vauxoo.com>).
6# All Rights Reserved
7############# Credits #########################################################
8# Coded by: Katherine Zaoral <kathy@vauxoo.com>
9# Planified by: Humberto Arocha <hbto@vauxoo.com>
10# Audited by: Humberto Arocha <hbto@vauxoo.com>
11###############################################################################
12# This program is free software: you can redistribute it and/or modify
13# it under the terms of the GNU Affero General Public License as published
14# by the Free Software Foundation, either version 3 of the License, or
15# (at your option) any later version.
16#
17# This program is distributed in the hope that it will be useful,
18# but WITHOUT ANY WARRANTY; without even the implied warranty of
19# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20# GNU Affero General Public License for more details.
21#
22# You should have received a copy of the GNU Affero General Public License
23# along with this program. If not, see <http://www.gnu.org/licenses/>.
24###############################################################################
25
26import model
27import wizard
028
=== added file 'account_voucher_requester/__openerp__.py'
--- account_voucher_requester/__openerp__.py 1970-01-01 00:00:00 +0000
+++ account_voucher_requester/__openerp__.py 2014-07-08 20:09:41 +0000
@@ -0,0 +1,52 @@
1#!/usr/bin/python
2# -*- encoding: utf-8 -*-
3###############################################################################
4# Module Writen to OpenERP, Open Source Management Solution
5# Copyright (C) OpenERP Venezuela (<http://www.vauxoo.com>).
6# All Rights Reserved
7############# Credits #########################################################
8# Coded by: Katherine Zaoral <kathy@vauxoo.com>
9# Planified by: Humberto Arocha <hbto@vauxoo.com>
10# Audited by: Humberto Arocha <hbto@vauxoo.com>
11###############################################################################
12# This program is free software: you can redistribute it and/or modify
13# it under the terms of the GNU Affero General Public License as published
14# by the Free Software Foundation, either version 3 of the License, or
15# (at your option) any later version.
16#
17# This program is distributed in the hope that it will be useful,
18# but WITHOUT ANY WARRANTY; without even the implied warranty of
19# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20# GNU Affero General Public License for more details.
21#
22# You should have received a copy of the GNU Affero General Public License
23# along with this program. If not, see <http://www.gnu.org/licenses/>.
24###############################################################################
25
26{
27 'name': 'Account Voucher Requester',
28 'version': '1.0',
29 'author': 'Vauxoo',
30 'website': 'http://www.vauxoo.com/',
31 'category': '',
32 'description': '''
33Account Voucher Requester
34=========================
35
36This module add an employee field to the account voucher model.
37''',
38 'depends': [
39 'account_voucher',
40 'hr',
41 ],
42 'data': [
43 'view/account_voucher_view.xml',
44 ],
45 'demo': [],
46 'test': [],
47 'qweb': [],
48 'js': [],
49 'css': [],
50 'active': False,
51 'installable': True,
52}
053
=== added directory 'account_voucher_requester/data'
=== added directory 'account_voucher_requester/demo'
=== added directory 'account_voucher_requester/doc'
=== added directory 'account_voucher_requester/doc/images'
=== added directory 'account_voucher_requester/i18n'
=== added file 'account_voucher_requester/i18n/account_voucher_requester.pot'
--- account_voucher_requester/i18n/account_voucher_requester.pot 1970-01-01 00:00:00 +0000
+++ account_voucher_requester/i18n/account_voucher_requester.pot 2014-07-08 20:09:41 +0000
@@ -0,0 +1,32 @@
1# Translation of OpenERP Server.
2# This file contains the translation of the following modules:
3# * account_voucher_requester
4#
5msgid ""
6msgstr ""
7"Project-Id-Version: OpenERP Server 7.0\n"
8"Report-Msgid-Bugs-To: \n"
9"POT-Creation-Date: 2014-07-08 20:05+0000\n"
10"PO-Revision-Date: 2014-07-08 20:05+0000\n"
11"Last-Translator: <>\n"
12"Language-Team: \n"
13"MIME-Version: 1.0\n"
14"Content-Type: text/plain; charset=UTF-8\n"
15"Content-Transfer-Encoding: \n"
16"Plural-Forms: \n"
17
18#. module: account_voucher_requester
19#: model:ir.model,name:account_voucher_requester.model_account_voucher
20msgid "Accounting Voucher"
21msgstr ""
22
23#. module: account_voucher_requester
24#: help:account.voucher,employee_id:0
25msgid "Requester Employee"
26msgstr ""
27
28#. module: account_voucher_requester
29#: field:account.voucher,employee_id:0
30msgid "Requester"
31msgstr ""
32
033
=== added directory 'account_voucher_requester/model'
=== added file 'account_voucher_requester/model/__init__.py'
--- account_voucher_requester/model/__init__.py 1970-01-01 00:00:00 +0000
+++ account_voucher_requester/model/__init__.py 2014-07-08 20:09:41 +0000
@@ -0,0 +1,26 @@
1#!/usr/bin/python
2# -*- encoding: utf-8 -*-
3###############################################################################
4# Module Writen to OpenERP, Open Source Management Solution
5# Copyright (C) OpenERP Venezuela (<http://www.vauxoo.com>).
6# All Rights Reserved
7############# Credits #########################################################
8# Coded by: Katherine Zaoral <kathy@vauxoo.com>
9# Planified by: Humberto Arocha <hbto@vauxoo.com>
10# Audited by: Humberto Arocha <hbto@vauxoo.com>
11###############################################################################
12# This program is free software: you can redistribute it and/or modify
13# it under the terms of the GNU Affero General Public License as published
14# by the Free Software Foundation, either version 3 of the License, or
15# (at your option) any later version.
16#
17# This program is distributed in the hope that it will be useful,
18# but WITHOUT ANY WARRANTY; without even the implied warranty of
19# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20# GNU Affero General Public License for more details.
21#
22# You should have received a copy of the GNU Affero General Public License
23# along with this program. If not, see <http://www.gnu.org/licenses/>.
24###############################################################################
25
26import account_voucher
027
=== added file 'account_voucher_requester/model/account_voucher.py'
--- account_voucher_requester/model/account_voucher.py 1970-01-01 00:00:00 +0000
+++ account_voucher_requester/model/account_voucher.py 2014-07-08 20:09:41 +0000
@@ -0,0 +1,39 @@
1#!/usr/bin/python
2# -*- encoding: utf-8 -*-
3###############################################################################
4# Module Writen to OpenERP, Open Source Management Solution
5# Copyright (C) OpenERP Venezuela (<http://www.vauxoo.com>).
6# All Rights Reserved
7############# Credits #########################################################
8# Coded by: Katherine Zaoral <kathy@vauxoo.com>
9# Planified by: Humberto Arocha <hbto@vauxoo.com>
10# Audited by: Humberto Arocha <hbto@vauxoo.com>
11###############################################################################
12# This program is free software: you can redistribute it and/or modify
13# it under the terms of the GNU Affero General Public License as published
14# by the Free Software Foundation, either version 3 of the License, or
15# (at your option) any later version.
16#
17# This program is distributed in the hope that it will be useful,
18# but WITHOUT ANY WARRANTY; without even the implied warranty of
19# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20# GNU Affero General Public License for more details.
21#
22# You should have received a copy of the GNU Affero General Public License
23# along with this program. If not, see <http://www.gnu.org/licenses/>.
24###############################################################################
25
26from openerp.osv import fields, osv, orm
27from openerp.tools.translate import _
28from openerp import tools
29
30
31class account_voucher(osv.Model):
32
33 _inherit = 'account.voucher'
34 _columns = {
35 'employee_id': fields.many2one(
36 'hr.employee',
37 string='Requester',
38 help='Requester Employee'),
39 }
040
=== added directory 'account_voucher_requester/report'
=== added directory 'account_voucher_requester/security'
=== added directory 'account_voucher_requester/static'
=== added directory 'account_voucher_requester/static/description'
=== added file 'account_voucher_requester/static/description/index.html'
=== added directory 'account_voucher_requester/static/src'
=== added directory 'account_voucher_requester/static/src/css'
=== added directory 'account_voucher_requester/static/src/img'
=== added file 'account_voucher_requester/static/src/img/icon.png'
1Binary files account_voucher_requester/static/src/img/icon.png 1970-01-01 00:00:00 +0000 and account_voucher_requester/static/src/img/icon.png 2014-07-08 20:09:41 +0000 differ41Binary files account_voucher_requester/static/src/img/icon.png 1970-01-01 00:00:00 +0000 and account_voucher_requester/static/src/img/icon.png 2014-07-08 20:09:41 +0000 differ
=== added directory 'account_voucher_requester/static/src/js'
=== added directory 'account_voucher_requester/static/src/xml'
=== added directory 'account_voucher_requester/test'
=== added directory 'account_voucher_requester/view'
=== added file 'account_voucher_requester/view/account_voucher_view.xml'
--- account_voucher_requester/view/account_voucher_view.xml 1970-01-01 00:00:00 +0000
+++ account_voucher_requester/view/account_voucher_view.xml 2014-07-08 20:09:41 +0000
@@ -0,0 +1,17 @@
1<?xml version="1.0" encoding="utf-8"?>
2<openerp>
3 <data>
4
5 <record model="ir.ui.view" id="account_voucher_requester_form">
6 <field name="name">account.voucher.requester.form</field>
7 <field name="model">account.voucher</field>
8 <field name="inherit_id" ref="account_voucher.view_vendor_payment_form"/>
9 <field name="arch" type="xml">
10 <xpath expr="//field[@name='journal_id']" position="after">
11 <field name="employee_id"/>
12 </xpath>
13 </field>
14 </record>
15
16 </data>
17</openerp>
018
=== added directory 'account_voucher_requester/wizard'
=== added file 'account_voucher_requester/wizard/__init__.py'
--- account_voucher_requester/wizard/__init__.py 1970-01-01 00:00:00 +0000
+++ account_voucher_requester/wizard/__init__.py 2014-07-08 20:09:41 +0000
@@ -0,0 +1,25 @@
1#!/usr/bin/python
2# -*- encoding: utf-8 -*-
3###############################################################################
4# Module Writen to OpenERP, Open Source Management Solution
5# Copyright (C) OpenERP Venezuela (<http://www.vauxoo.com>).
6# All Rights Reserved
7############# Credits #########################################################
8# Coded by: Katherine Zaoral <kathy@vauxoo.com>
9# Planified by: Humberto Arocha <hbto@vauxoo.com>
10# Audited by: Humberto Arocha <hbto@vauxoo.com>
11###############################################################################
12# This program is free software: you can redistribute it and/or modify
13# it under the terms of the GNU Affero General Public License as published
14# by the Free Software Foundation, either version 3 of the License, or
15# (at your option) any later version.
16#
17# This program is distributed in the hope that it will be useful,
18# but WITHOUT ANY WARRANTY; without even the implied warranty of
19# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20# GNU Affero General Public License for more details.
21#
22# You should have received a copy of the GNU Affero General Public License
23# along with this program. If not, see <http://www.gnu.org/licenses/>.
24###############################################################################
25
026
=== added directory 'account_voucher_requester/workflow'

Subscribers

People subscribed via source and target branches

to all changes: