~account-report-core-editor/account-financial-report/7.0-git

« back to all changes in this revision

Viewing changes to account_move_line_report_xls/__openerp__.py

  • Committer: unknown
  • Author(s): unknown
  • Date: 2014-01-08 09:07:07 UTC
  • mfrom: (54.2.3)
  • Revision ID: git-v1:bae7ce2bda9289db2abb843a9ca9df8f9b32ba61
[MRG] [ADD] account_move_line_report_xls

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- encoding: utf-8 -*-
 
2
##############################################################################
 
3
#
 
4
#    OpenERP, Open Source Management Solution
 
5
#
 
6
#    Copyright (c) 2013 Noviat nv/sa (www.noviat.com). All rights reserved.
 
7
#
 
8
#    This program is free software: you can redistribute it and/or modify
 
9
#    it under the terms of the GNU Affero General Public License as
 
10
#    published by the Free Software Foundation, either version 3 of the
 
11
#    License, or (at your option) any later version.
 
12
#
 
13
#    This program is distributed in the hope that it will be useful,
 
14
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
16
#    GNU Affero General Public License for more details.
 
17
#
 
18
#    You should have received a copy of the GNU Affero General Public License
 
19
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
20
#
 
21
##############################################################################
 
22
 
 
23
{
 
24
    'name': 'Account Move Line XLS export',
 
25
    'version': '0.5',
 
26
    'license': 'AGPL-3',
 
27
    'author': 'Noviat',
 
28
    'category' : 'Accounting & Finance',
 
29
    'description': """
 
30
 
 
31
Journal Items Excel Export
 
32
==========================
 
33
 
 
34
This module adds a button on the journal items ('account.move.line') list view in order to export the selected lines.
 
35
 
 
36
If you are installing this module manually, you need also the module 'report_xls', that is located in:
 
37
https://launchpad.net/openerp-reporting-engines"
 
38
 
 
39
    """,
 
40
    'depends': ['account', 'report_xls'],
 
41
    'demo_xml': [],
 
42
    'init_xml': [],
 
43
    'update_xml' : [
 
44
        'report/move_line_list_xls.xml',      
 
45
    ],
 
46
}