~vauxoo/addons-vauxoo/6.0-trunk

« back to all changes in this revision

Viewing changes to account_amortization/__openerp__.py

  • Committer: Moises Lopez
  • Date: 2014-10-09 21:30:17 UTC
  • mfrom: (879.1.7 trunk-addons-vauxoo)
  • Revision ID: moylop260@vauxoo.com-20141009213017-u3jicyg8xery3r8c
[MERGE] upforward 7.0
-Fix unused import
-Fix relative import
-Fix full path import
-Fix trailing whitespace pylint error C0303
-Fix autopep8 ignoring E501 & E128
-Fix reimported
-Fix __openerp__.py files
-Translate update

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
24
24
#
25
25
##############################################################################
26
 
 
27
26
{
28
 
    "name": "Vauxoo Account Amortization",
29
 
    "version": "0.1",
30
 
    "depends": [
31
 
                "decimal_precision",
32
 
                "account_asset",
33
 
                "account_asset_date",
34
 
               ],
35
 
    "author": "Vauxoo",
36
 
    "licence": "AGPL v3",
37
 
    "website": "http://www.vauxoo.com",
38
 
    "category": "Accounting & Finance",
 
27
    "name": "Vauxoo Account Amortization", 
 
28
    "version": "0.1", 
 
29
    "author": "Vauxoo", 
 
30
    "category": "Accounting & Finance", 
39
31
    "description": """
40
32
Vauxoo Account Amortization.
41
33
============================
42
 
This module allows to separate the expenses amortization of the assets 
 
34
This module allows to separate the expenses amortization of the assets
43
35
depreciation.
44
36
 
45
37
This module adds:
52
44
See the documentation here:
53
45
---------------------------
54
46
http://www.principlesofaccounting.com/chapter13/chapter13.html
55
 
""",
56
 
    "data":[
57
 
        "view/account_amortization_view.xml",
58
 
        ],
59
 
    "installable": True,
60
 
    "auto_install": False,
61
 
}
 
47
""", 
 
48
    "website": "http://www.vauxoo.com", 
 
49
    "license": "", 
 
50
    "depends": [
 
51
        "decimal_precision", 
 
52
        "account_asset", 
 
53
        "account_asset_date"
 
54
    ], 
 
55
    "demo": [], 
 
56
    "data": [
 
57
        "view/account_amortization_view.xml"
 
58
    ], 
 
59
    "test": [], 
 
60
    "js": [], 
 
61
    "css": [], 
 
62
    "qweb": [], 
 
63
    "installable": True, 
 
64
    "auto_install": False, 
 
65
    "active": False
 
66
}
 
 
b'\\ No newline at end of file'