[ADD] hr_timesheet_work_entry: for Odoo 13

This commit is contained in:
Jared Kipe
2020-10-06 11:53:45 -07:00
parent bef0559c4d
commit fd32e01a0e
11 changed files with 148 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
{
'name': 'Timesheet Work Entry Type',
'description': 'Set work types on timesheet records.',
'version': '13.0.1.0.0',
'website': 'https://hibou.io/',
'author': 'Hibou Corp. <hello@hibou.io>',
'license': 'AGPL-3',
'category': 'Human Resources',
'depends': [
'hr_timesheet',
'hr_work_entry',
],
'data': [
'data/hr_timesheet_work_entry_data.xml',
'views/timesheet_views.xml',
'views/work_entry_views.xml',
],
'demo': [
'data/hr_timesheet_work_entry_demo.xml',
],
'pre_init_hook': 'ts_work_type_pre_init_hook',
}