# -*- 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', }