mirror of
https://github.com/OCA/account-financial-tools.git
synced 2025-02-02 12:47:26 +02:00
27 lines
842 B
Python
27 lines
842 B
Python
# Copyright 2016-2019 Onestein (<http://www.onestein.eu>)
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
|
|
|
{
|
|
'name': 'Costcenter',
|
|
'summary': 'Cost center information for invoice lines',
|
|
'author': 'Onestein, Odoo Community Association (OCA)',
|
|
'license': 'AGPL-3',
|
|
'website': 'https://github.com/OCA/account-financial-tools',
|
|
'category': 'Accounting',
|
|
'version': '12.0.1.0.0',
|
|
'depends': [
|
|
'account',
|
|
'base_view_inheritance_extension'
|
|
],
|
|
'data': [
|
|
'security/ir.model.access.csv',
|
|
'security/account_cost_center_security.xml',
|
|
'views/account_cost_center.xml',
|
|
'views/account_move.xml',
|
|
'views/account_move_line.xml',
|
|
'views/account_invoice.xml',
|
|
'views/account_invoice_report.xml',
|
|
],
|
|
'installable': True,
|
|
}
|