Files
odoo-usability/hr_expense_private_car/__manifest__.py
Stéphane Bidoul (ACSONE) a9d8137d1f [10.0] extract hr_expense_private_car (#36)
* remove private car stuff from hr_expense_usability

* hr_private_car_expenses
2017-06-23 16:55:01 +02:00

30 lines
903 B
Python

# -*- coding: utf-8 -*-
# © 2015-2017 Akretion (http://www.akretion.com)
# @author Alexis de Lattre <alexis.delattre@akretion.com>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
'name': 'HR Expense Private Car',
'version': '10.0.1.0.0',
'category': 'Human Resources',
'license': 'AGPL-3',
'summary': 'Better usability for the management of expenses',
'description': '',
'author': 'Akretion',
'website': 'http://www.akretion.com',
'depends': [
'hr_expense_usability',
],
'data': [
'hr_expense_data.xml',
'hr_employee_view.xml',
'hr_expense_view.xml',
'private_car_km_price_view.xml',
'security/expense_security.xml',
'security/ir.model.access.csv',
],
'post_init_hook': 'create_private_car_km_prices',
'demo': ['private_car_demo.xml'],
'installable': True,
}