- Add 'account' to depends to ensure invoice portal templates are present - Hide invoice cards for coaches/therapists via override of account.portal_my_home_invoice - Events portal: create/edit templates and controller adjustments for therapist workflow - Minor portal home styling and visibility tweaks for clinic roles
106 lines
4.6 KiB
Python
106 lines
4.6 KiB
Python
#
|
|
# Bemade Inc.
|
|
#
|
|
# Copyright (C) October 2023 Bemade Inc. (<https://www.bemade.org>).
|
|
# Author: Marc Durepos (Contact : marc@bemade.org)
|
|
#
|
|
# This program is under the terms of the Odoo Proprietary License v1.0 (OPL-1)
|
|
# It is forbidden to publish, distribute, sublicense, or sell copies of the Software
|
|
# or modified copies of the Software.
|
|
#
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
# IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
|
# DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
|
# ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
# DEALINGS IN THE SOFTWARE.
|
|
#
|
|
{
|
|
'name': 'Sports Clinic Management',
|
|
'version': '18.0.2.0.0',
|
|
'summary': 'Comprehensive sports medicine clinic management with portal access and activity tracking.',
|
|
'description': """
|
|
Sports Clinic Management System
|
|
|
|
A comprehensive solution for managing sports medicine clinics, focusing on player health, injury tracking, team collaboration, and integrated activity management.
|
|
|
|
Key Features:
|
|
- User roles and access control for clinic staff, treatment professionals, and portal users
|
|
- Player management with contact information and team memberships
|
|
- Injury tracking with comprehensive documentation and workflow
|
|
- Team management with staff assignments and portal access
|
|
- Activity management with mail.activity integration
|
|
- Portal access for coaches and field therapists
|
|
- Security and privacy with layered architecture
|
|
- Data protection with anonymization and retention policies
|
|
- Full French Canadian localization support
|
|
- Integration with mail system and project tasks
|
|
|
|
This module provides a complete sports medicine clinic management solution with robust portal access, activity tracking, and team collaboration features while maintaining strict security and data privacy controls.
|
|
""",
|
|
"category": "Services/Medical",
|
|
"author": "Bemade Inc.",
|
|
"website": "https://www.bemade.org",
|
|
"license": "LGPL-3",
|
|
"depends": [
|
|
"mail", # Required for mail.activity functionality
|
|
"portal",
|
|
"contacts",
|
|
"phone_validation", # For phone number formatting in patient contacts
|
|
"project", # Required for project.task (Events) functionality
|
|
"account", # Ensure account portal templates (e.g., portal_my_home_invoice) are available
|
|
],
|
|
"external_dependencies": {
|
|
"python": [
|
|
"openupgradelib",
|
|
"pytz", # For timezone handling in injury tracking
|
|
],
|
|
},
|
|
"data": [
|
|
"security/sports_clinic_groups.xml",
|
|
"security/sports_clinic_portal_groups.xml",
|
|
"security/ir.model.access.csv",
|
|
"security/sports_clinic_rules.xml",
|
|
"security/sports_clinic_portal_rules.xml",
|
|
"security/mail_activity_portal_rules.xml",
|
|
"security/project_task_portal_rules.xml",
|
|
"security/sports_event_rules.xml",
|
|
"security/partner_access.xml",
|
|
"data/sports_clinic_data.xml",
|
|
"data/admin_access_data.xml",
|
|
# "data/project_portal_demo_data.xml", # Temporarily disabled for clean upgrade
|
|
"data/cron_actions.xml",
|
|
"views/sports_team_views.xml",
|
|
"views/sports_clinic_menus.xml",
|
|
"views/sports_patient_injury_views.xml",
|
|
"views/sports_patient_views.xml",
|
|
"views/sports_clinic_portal_views.xml",
|
|
"views/sports_patient_injury_portal.xml",
|
|
"views/player_management_portal_templates.xml",
|
|
"views/injury_management_portal_templates.xml",
|
|
"views/task_management_portal_templates.xml",
|
|
"views/events_portal_templates.xml",
|
|
"views/project_task_views.xml",
|
|
"views/project_task_security_test_views.xml",
|
|
"views/sports_event_views.xml",
|
|
"views/portal_activity_detail_template.xml",
|
|
"views/portal_messages_template.xml",
|
|
"views/portal_attachments_template.xml",
|
|
"views/portal_event_detail_template.xml",
|
|
"views/portal_event_edit_template.xml",
|
|
"views/portal_event_create_template.xml",
|
|
"views/treatment_note_views.xml",
|
|
"views/res_partner_views.xml",
|
|
"views/res_users_views.xml",
|
|
"views/task_to_event_wizard_views.xml",
|
|
],
|
|
"demo": ["data/demo/sports_clinic_demo_data.xml"],
|
|
"installable": True,
|
|
"auto_install": False,
|
|
"application": True,
|
|
"assets": {
|
|
"web.assets_frontend": [
|
|
],
|
|
},
|
|
}
|