mirror of
https://gitlab.com/flectra-community/account-closing.git
synced 2024-11-22 13:42:06 +00:00
25 lines
747 B
Python
25 lines
747 B
Python
# Copyright (C) 2013 Akretion (http://www.akretion.com)
|
|
# @author Alexis de Lattre <alexis.delattre@akretion.com>
|
|
# Copyright 2018 Camptcamp SA
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
|
|
{
|
|
'name': 'Account Accrual Base',
|
|
'version': '1.0.1.0.0',
|
|
'category': 'Accounting & Finance',
|
|
'license': 'AGPL-3',
|
|
'summary': 'Base module for accrued expenses and revenues',
|
|
'author': "Akretion,Odoo Community Association (OCA)",
|
|
'website': 'https://gitlab.com/flectra-community/account-closing',
|
|
'depends': [
|
|
'account_cutoff_base',
|
|
],
|
|
'data': [
|
|
'views/company_view.xml',
|
|
'views/account_view.xml',
|
|
'views/account_cutoff_view.xml',
|
|
],
|
|
'installable': True,
|
|
}
|