Files
Odoo-Modules/fusion_planning/__manifest__.py
gsinghpal b7817b752c feat(fusion_planning): hide Role field from Add Shift dialog
Role is still auto-pulled from the employee's Default Role on the
employee profile (planning.slot._compute_role_id reads
resource_id.default_role_id). Hiding the manual Role field declutters
the Add Shift dialog so the manager doesn't have to think about it on
each shift.

If a shift needs a one-off role override, an admin can still set it
via the backend list view or by editing the resource's default role.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-07 07:52:13 -04:00

42 lines
1.2 KiB
Python

# -*- coding: utf-8 -*-
# Copyright 2026 Nexa Systems Inc.
# License OPL-1 (Odoo Proprietary License v1.0)
# Part of the Fusion Clock product family.
{
'name': 'Fusion Planning',
'version': '19.0.1.1.1',
'category': 'Human Resources/Planning',
'summary': 'Fusion Clock bridge to Odoo Planning - employee schedule on the portal',
'description': """
Fusion Planning
===============
Adds Odoo Planning to the Fusion Clock product family:
* Adds a "My Schedule" tab to the Fusion Clock portal
* Reuses Odoo Planning's exact backend UI (Gantt, send wizard, recurrence)
* Bridges planning.slot with fusion_clock attendance and leave
""",
'author': 'Nexa Systems Inc.',
'website': 'https://nexasystems.io',
'license': 'OPL-1',
'depends': [
'planning',
'fusion_clock',
],
'data': [
'views/planning_slot_views.xml',
'views/portal_schedule_templates.xml',
'views/portal_nav_inherit.xml',
],
'assets': {
'web.assets_frontend': [
'fusion_planning/static/src/css/portal_schedule.css',
],
},
'installable': True,
'auto_install': False,
'application': False,
}