26 lines
869 B
Python
26 lines
869 B
Python
# -*- coding: utf-8 -*-
|
|
{
|
|
'name': 'Appointment Capacity Extension',
|
|
"author": "Suheardy Yacob",
|
|
'summary': 'Extends appointment capacity based on resource total capacity',
|
|
'description': """
|
|
This module extends the appointment capacity limit to use the total capacity
|
|
of all resources assigned to an appointment type instead of the hardcoded limit of 12 people.
|
|
""",
|
|
'author': 'Suherdy Yacob',
|
|
'version': '1.0',
|
|
'category': 'Productivity',
|
|
'depends': ['appointment'],
|
|
'data': [
|
|
'views/appointment_templates.xml',
|
|
],
|
|
'assets': {
|
|
'web.assets_frontend': [
|
|
'appointment_capacity_extend/static/src/js/appointment_capacity_extend.js',
|
|
],
|
|
},
|
|
'installable': True,
|
|
'application': False,
|
|
'auto_install': False,
|
|
'license': 'OEEL-1',
|
|
} |