odoo18/addons_extensions/cwf_timesheet/__manifest__.py

23 lines
713 B
Python

{
'name': 'CWF Timesheet Update',
'version': '1.0',
'category': 'Human Resources',
'summary': 'Manage and update weekly timesheets for CWF department',
'author': 'Your Name or Company',
'depends': ['hr_attendance_extended','web', 'mail', 'base','hr_emp_dashboard','hr_employee_extended'],
'data': [
# 'views/timesheet_form.xml',
'security/security.xml',
'security/ir.model.access.csv',
'views/timesheet_view.xml',
'views/timesheet_weekly_view.xml',
'data/email_template.xml',
],
'assets': {
'web.assets_backend': [
'cwf_timesheet/static/src/js/timesheet_form.js',
],
},
'application': True,
}