2
0
account-financial-tools/account_fiscal_year/__openerp__.py
Damien Crier 6bdd7dbfd9 [FIX*IMP] account_fiscal_year
* Add contributors to README
* try to find a FY start date according to the start date from choosen period
* Unable to unlink a date_range with type fiscal_year
* `fiscal_year` flag readonly
* add menu to date_range under accounting section
* remove method on  object because it's the same as in  file
* unable to delete  with flag 'fiscal_year' but can delete
* clean __openerp__.py
* account_fiscal_year version number
2022-10-04 09:37:28 +02:00

25 lines
629 B
Python

# -*- coding: utf-8 -*-
# Author: Damien Crier
# Copyright 2016 Camptocamp SA
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
{
'name': 'Account Fiscal Year',
'version': '9.0.1.0.0',
'category': 'Accounting',
'author': 'Camptocamp SA,'
'Odoo Community Association (OCA)',
'website': 'http://www.camptocamp.com',
'depends': [
'account',
'date_range'
],
'data': [
'data/date_range_type.xml',
'views/date_range_type.xml',
],
'installable': True,
'application': True,
'auto_install': False,
'license': 'AGPL-3',
}