Merge lp:~vauxoo/addons-vauxoo/jose-reconcile-filter into lp:addons-vauxoo/7.0

Status: Merged
Merged at revision: 1077
Proposed branch: lp:~vauxoo/addons-vauxoo/jose-reconcile-filter
Merge into: lp:addons-vauxoo/7.0
Diff against target: 87 lines (+68/-0)
2 files modified
account_reconcile_grouping/__openerp__.py (+52/-0)
account_reconcile_grouping/view/account_move_view.xml (+16/-0)
To merge this branch: bzr merge lp:~vauxoo/addons-vauxoo/jose-reconcile-filter

Description of the change

Added new module to group journal items by reconcile

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 'account_reconcile_grouping'
2=== added file 'account_reconcile_grouping/__init__.py'
3=== added file 'account_reconcile_grouping/__openerp__.py'
4--- account_reconcile_grouping/__openerp__.py 1970-01-01 00:00:00 +0000
5+++ account_reconcile_grouping/__openerp__.py 2014-07-11 19:20:37 +0000
6@@ -0,0 +1,52 @@
7+# -*- encoding: utf-8 -*-
8+#
9+# Module Writen to OpenERP, Open Source Management Solution
10+#
11+# Copyright (c) 2013 Vauxoo - http://www.vauxoo.com/
12+# All Rights Reserved.
13+# info Vauxoo (info@vauxoo.com)
14+#
15+# Coded by: Jorge Angel Naranjo (jorge_nr@vauxoo.com)
16+#
17+#
18+# This program is free software: you can redistribute it and/or modify
19+# it under the terms of the GNU Affero General Public License as
20+# published by the Free Software Foundation, either version 3 of the
21+# License, or (at your option) any later version.
22+#
23+# This program is distributed in the hope that it will be useful,
24+# but WITHOUT ANY WARRANTY; without even the implied warranty of
25+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26+# GNU Affero General Public License for more details.
27+#
28+# You should have received a copy of the GNU Affero General Public License
29+# along with this program. If not, see <http://www.gnu.org/licenses/>.
30+#
31+#
32+
33+{
34+ "name": "Account Reconcile Grouping",
35+ "version": "1.0",
36+ "author": "Vauxoo",
37+ "category": "Accounting",
38+ "description" : """
39+Account Reconcile Grouping
40+==========================
41+
42+This module allows you to group your journal items by reconciliation with a new filter in the search view.
43+
44+
45+ """,
46+ "website": "http://www.vauxoo.com/",
47+ "license": "AGPL-3",
48+ "depends": [
49+ "account",
50+ ],
51+ "demo": [
52+ ],
53+ "data": [
54+ 'view/account_move_view.xml',
55+ ],
56+ "installable": True,
57+ "active": False,
58+}
59
60=== added directory 'account_reconcile_grouping/data'
61=== added directory 'account_reconcile_grouping/demo'
62=== added directory 'account_reconcile_grouping/i18n'
63=== added directory 'account_reconcile_grouping/model'
64=== added directory 'account_reconcile_grouping/security'
65=== added directory 'account_reconcile_grouping/view'
66=== added file 'account_reconcile_grouping/view/account_move_view.xml'
67--- account_reconcile_grouping/view/account_move_view.xml 1970-01-01 00:00:00 +0000
68+++ account_reconcile_grouping/view/account_move_view.xml 2014-07-11 19:20:37 +0000
69@@ -0,0 +1,16 @@
70+<?xml version="1.0" encoding="utf-8"?>
71+<openerp>
72+ <data>
73+ <record id="account_move_line_grouping_reconcile_search" model="ir.ui.view">
74+ <field name="name">account_move_line_grouping_reconcile_search</field>
75+ <field name="model">account.move.line</field>
76+ <field name="inherit_id" ref="account.view_account_move_line_filter"/>
77+ <field name="arch" type="xml">
78+ <xpath expr="//filter[@string='Period']" position="after">
79+ <filter string="Parcial Reconcile" icon="terp-go-month" domain="[]" context="{'group_by':'reconcile_partial_id'}"/>
80+ <filter string="Total Reconcile" icon="terp-go-month" domain="[]" context="{'group_by':'reconcile_id'}"/>
81+ </xpath>
82+ </field>
83+ </record>
84+ </data>
85+</openerp>
86
87=== added directory 'account_reconcile_grouping/workflow'