summaryrefslogtreecommitdiff
path: root/account_fiscal_year_period/__manifest__.py
blob: 30a427404b51f5ccdfeaed5bf9878e84c91afe42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# -*- coding: utf-8 -*-
{
    'name': "Account Fiscal Year Period Comunity",

    'summary': """
    Create periods Of Fiscal Year Per Month ,With Ability To Open/Close Each Month
    """,

    'description': 
    """
        Create periods Of Fiscal Year Per Month With Ability To Open/Close Each Month
    """
    ,

    'author': "Zain-Alabdin",
    'website': "https://www.linkedin.com/in/zainalabdeen-merghani-56b7ab106",

    'category': 'Invoicing Management',
    'version': '0.3',

    # any module necessary for this one to work correctly
    'depends': ['account'],

    # always loaded
    'data': [
        'security/groups.xml',
        'security/ir.model.access.csv',
        'views/fiscal_year.xml',
        'views/views.xml',
        'data/account_fiscal_sequence.xml'
    ],
    # only loaded in demonstration mode
    'demo': [],
    "images":  ['static/description/icon.png'],
    'installable': True,
    'application': True,
    'license': "AGPL-3",
}