mirror of
https://github.com/OCA/account-financial-tools.git
synced 2025-02-02 12:47:26 +02:00
28 lines
867 B
Python
28 lines
867 B
Python
# -*- coding: utf-8 -*-
|
|
# Copyright 2016-2018 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': '10.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,
|
|
}
|