flectra/addons/sale_timesheet/__manifest__.py
2018-07-13 09:26:56 +00:00

36 lines
1.1 KiB
Python

# -*- coding: utf-8 -*-
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
{
'name': 'Sales Timesheet',
'author': 'Odoo S.A.',
'category': 'Hidden',
'summary': 'Sell based on timesheets',
'description': """
Allows to sell timesheets in your sales order
=============================================
This module set the right product on all timesheet lines
according to the order/contract you work on. This allows to
have real delivered quantities in sales orders.
""",
'website': 'https://flectrahq.com/page/warehouse',
'depends': ['sale_management', 'hr_timesheet'],
'data': [
'security/sale_timesheet_security.xml',
'views/account_invoice_views.xml',
'views/sale_order_views.xml',
'views/product_views.xml',
'views/hr_views.xml',
'views/project_task_views.xml',
'views/hr_timesheet_views.xml',
'views/res_config_settings_views.xml',
'views/hr_timesheet_templates.xml',
],
'demo': [
'data/sale_service_demo.xml',
],
'auto_install': True,
'uninstall_hook': 'uninstall_hook',
}