2018-01-16 06:58:15 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
2018-01-16 11:34:37 +01:00
|
|
|
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
|
2018-01-16 06:58:15 +01:00
|
|
|
|
|
|
|
{
|
|
|
|
'name': 'Sales Timesheet',
|
2018-01-16 12:08:17 +01:00
|
|
|
'author': 'Odoo S.A.',
|
2018-01-16 06:58:15 +01:00
|
|
|
'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.
|
|
|
|
""",
|
2018-01-16 11:34:37 +01:00
|
|
|
'website': 'https://flectrahq.com/page/warehouse',
|
2018-01-16 06:58:15 +01:00
|
|
|
'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,
|
|
|
|
}
|