~account-core-editors/account-invoice-report/github-7.0

« back to all changes in this revision

Viewing changes to partner_aging/__openerp__.py

  • Committer: Alexandre Fayolle
  • Date: 2015-08-03 09:19:17 UTC
  • mfrom: (78.1.15)
  • Revision ID: git-v1:97fee65e57d1d9475f4be92ac2db3448211a237e
Merge pull request #32 from savoirfairelinux/partner_aging

Partner aging

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- coding: utf-8 -*-
 
2
###############################################################################
 
3
#
 
4
#    OpenERP, Open Source Management Solution
 
5
#    Copyright (C) 2014 Ursa Informative Systems (<www.ursainfosystems.com>).
 
6
#
 
7
#    This program is free software: you can redistribute it and/or modify
 
8
#    it under the terms of the GNU Affero General Public License as
 
9
#    published by the Free Software Foundation, either version 3 of the
 
10
#    License, or (at your option) any later version.
 
11
#
 
12
#    This program is distributed in the hope that it will be useful,
 
13
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
#    GNU Affero General Public License for more details.
 
16
#
 
17
#    You should have received a copy of the GNU Affero General Public License
 
18
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
19
#
 
20
###############################################################################
 
21
 
 
22
{
 
23
    "name": "Interactive Partner Aging",
 
24
    "version": "1.7.2",
 
25
    "author": 'Ursa Information Systems,'
 
26
              'Odoo Community Association (OCA)',
 
27
    "summary": "Aging as a view - invoices and credits (Ursa)",
 
28
    'website': 'http://www.ursainfosystems.com',
 
29
    "category": 'Accounting & Finance',
 
30
    "description": """\
 
31
Interactive Partner Aging
 
32
=========================
 
33
 
 
34
This module creates new AR and AP views.
 
35
 
 
36
The default OpenERP Aged Partner balance report is a static PDF that is based
 
37
on the difference between credits and debits, not based on documents such as
 
38
Invoices and Payments. It also does not consider unapplied payments. This
 
39
version is interactive and more complete.
 
40
 
 
41
A detailed description of this module can be found at
 
42
https://github.com/OCA/account-invoice-reporting/raw/7.0/partner_aging/\
 
43
partner_aging_README.pdf
 
44
 
 
45
Bug Tracker
 
46
===========
 
47
 
 
48
Bugs are tracked on `GitHub Issues \
 
49
<https://github.com/OCA/account-fiscal-rule/issues>`_.
 
50
In case of trouble, please check there if your issue has already been reported.
 
51
If you spotted it first, help us smashing it by providing a detailed and \
 
52
welcomed feedback
 
53
`here <https://github.com/OCA/account-invoice-reporting/issues/\
 
54
new?body=module:%20partner_aging%0Aversion:%207.0%0A%0A\
 
55
**Steps%20to%20reproduce**%0A-%20...%0A%0A\
 
56
**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
 
57
 
 
58
 
 
59
Credits
 
60
=======
 
61
 
 
62
Contributors
 
63
------------
 
64
 
 
65
* Ursa Information Systems <contact@ursainfosystems.com>
 
66
* Guillaume Auger <guillaume.auger@savoirfairelinux.com>
 
67
* Loïc Faure-Lacroix <loic.lacroix@savoirfairelinux.com>
 
68
* Sandy Carter <sandy.carter@savoirfairelinux.com>
 
69
 
 
70
 
 
71
Maintainers
 
72
-----------
 
73
 
 
74
.. image:: http://odoo-community.org/logo.png
 
75
   :alt: Odoo Community Association
 
76
      :target: http://odoo-community.org
 
77
 
 
78
      This module is maintained by the OCA.
 
79
 
 
80
OCA, or the Odoo Community Association, is a nonprofit organization whose
 
81
mission os to support the collaborative development of Odoo features and
 
82
promote its widespread use.
 
83
 
 
84
To contribute to this module, please visit http://odoo-community.org.
 
85
""",
 
86
    "images": [],
 
87
    "depends": ["base", "account_accountant"],
 
88
    "data": [
 
89
        'partner_aging_supplier.xml',
 
90
        'partner_aging_customer.xml',
 
91
        'security/ir.model.access.csv',
 
92
    ],
 
93
    "test": [
 
94
    ],
 
95
    "auto_install": False,
 
96
    "application": False,
 
97
    "installable": True,
 
98
}