diff options
| author | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
|---|---|---|
| committer | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
| commit | 3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch) | |
| tree | a44932296ef4a9b71d5f010906253d8c53727726 /addons/hr_timesheet/__manifest__.py | |
| parent | 0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff) | |
initial commit 2
Diffstat (limited to 'addons/hr_timesheet/__manifest__.py')
| -rw-r--r-- | addons/hr_timesheet/__manifest__.py | 50 |
1 files changed, 50 insertions, 0 deletions
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', +} |
