- Refactor portal templates to eliminate intra-module template inheritance - Integrate emergency contacts section into player injuries template - Add full internal admin views for treatment notes with chatter support - Fix ORM warning in test_rights by using proper ORM commands - Update manifest to reflect new functionality (v18.0.1.9.0) This refactoring improves template stability by removing XPath errors and provides treatment professionals with better access to emergency contacts and treatment notes both in portal and backend interfaces.
12 lines
320 B
Python
12 lines
320 B
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
Post-migration script for version 18.0.1.7.0
|
|
|
|
- Updates security rules for player removal features
|
|
- Refreshes the security rules cache
|
|
"""
|
|
|
|
def migrate(cr, version):
|
|
# The security rules are already defined in the XML files
|
|
# This will be applied when the module is updated
|
|
pass
|