1
0
forked from Mapan/odoo17e
odoo17e-kedaikipas58/addons/appointment_hr/__manifest__.py
2024-12-10 09:04:09 +07:00

23 lines
783 B
Python

# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': "Employees on Appointments",
'version': "1.0",
'category': 'Services/Appointment',
'sequence': 2140,
'summary': "Manage Appointments with Employees",
'website': 'https://www.odoo.com/app/appointments',
'description': """
Take into account the working schedule (sick leaves, part time, ...) of employees when scheduling appointments
--------------------------------------------------------------------------------------------------------------
""",
'depends': ['appointment', 'hr'],
'data': [
'views/appointment_type_views.xml',
'views/calendar_event_views.xml'
],
'auto_install': True,
'license': 'OEEL-1',
}