[MIG] bemade_fsm to 18.0 Aside from fixing standard 17.0..18.0 stuff and fixing XML ID references: 1. **Remove `_get_closed_stage_by_project()`**: This method is obsolete - it was copied from base FSM but no longer exists in 18.0. Base system now uses `is_closed` field. 2. **Implement State Propagation**: Enhance the `write()` method to propagate done/cancelled states to child tasks using `is_closed` field logic. 3. **Test Task Creation**: Thoroughly test the custom task creation logic against base 18.0 All 56 tests are passing.
17 lines
511 B
XML
17 lines
511 B
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<menuitem
|
|
id="project_task_template_menu"
|
|
name="Task Templates"
|
|
parent="project.menu_main_pm"
|
|
action="task_template_act_window"
|
|
groups="project.group_project_manager,project.group_project_user"
|
|
/>
|
|
<menuitem
|
|
id="service_task_template_meny"
|
|
name="Task Templates"
|
|
action="task_template_act_window"
|
|
parent="industry_fsm.fsm_menu_root"
|
|
groups="project.group_project_manager,industry_fsm.group_fsm_manager"
|
|
/>
|
|
</odoo>
|