From 3751379f1e9a4c215fb6eb898b4ccc67659b9ace Mon Sep 17 00:00:00 2001 From: stephanchrst Date: Tue, 10 May 2022 21:51:50 +0700 Subject: initial commit 2 --- addons/hr_timesheet/__manifest__.py | 50 +++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 addons/hr_timesheet/__manifest__.py (limited to 'addons/hr_timesheet/__manifest__.py') diff --git a/addons/hr_timesheet/__manifest__.py b/addons/hr_timesheet/__manifest__.py new file mode 100644 index 00000000..50bf4290 --- /dev/null +++ b/addons/hr_timesheet/__manifest__.py @@ -0,0 +1,50 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + + +{ + 'name': 'Task Logs', + 'version': '1.0', + 'category': 'Services/Timesheets', + 'sequence': 23, + 'summary': 'Track employee time on tasks', + 'description': """ +This module implements a timesheet system. +========================================== + +Each employee can encode and track their time spent on the different projects. + +Lots of reporting on time and employee tracking are provided. + +It is completely integrated with the cost accounting module. It allows you to set +up a management by affair. + """, + 'website': 'https://www.odoo.com/page/timesheet-mobile-app', + 'depends': ['hr', 'analytic', 'project', 'uom'], + 'data': [ + 'security/hr_timesheet_security.xml', + 'security/ir.model.access.csv', + 'views/assets.xml', + 'views/hr_timesheet_views.xml', + 'views/res_config_settings_views.xml', + 'views/project_views.xml', + 'views/project_portal_templates.xml', + 'views/hr_timesheet_portal_templates.xml', + 'report/hr_timesheet_report_view.xml', + 'report/report_timesheet_templates.xml', + 'views/hr_views.xml', + 'data/hr_timesheet_data.xml', + 'wizard/project_task_create_timesheet_views.xml', + ], + 'qweb': [ + "static/src/xml/qr_modal_template.xml", + ], + 'demo': [ + 'data/hr_timesheet_demo.xml', + ], + 'installable': True, + 'application': False, + 'auto_install': False, + 'post_init_hook': 'create_internal_project', + 'license': 'LGPL-3', +} -- cgit v1.2.3