Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[16.0] [OU-ADD] hr_fleet #401

Merged
merged 3 commits into from
Jul 21, 2023
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docsource/modules150-160.rst
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ Module coverage 15.0 -> 16.0
+-------------------------------------------------+----------------------+-------------------------------------------------+
| hr_expense | | |
+-------------------------------------------------+----------------------+-------------------------------------------------+
| hr_fleet | | |
| hr_fleet | Done | |
+-------------------------------------------------+----------------------+-------------------------------------------------+
| hr_gamification | |No DB layout changes. |
+-------------------------------------------------+----------------------+-------------------------------------------------+
Expand Down
26 changes: 26 additions & 0 deletions openupgrade_scripts/scripts/hr_fleet/16.0.1.0/pre-migration.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
from openupgradelib import openupgrade


def create_drive_employee(env):
openupgrade.logged_query(
env.cr,
"""
ALTER TABLE fleet_vehicle_assignation_log
ADD IF NOT EXISTS driver_employee_id INT
""",
)

openupgrade.logged_query(
env.cr,
"""
UPDATE fleet_vehicle_assignation_log AS fval
SET driver_employee_id = fv.driver_employee_id
FROM fleet_vehicle AS fv
WHERE fval.vehicle_id = fv.id
royle-vietnam marked this conversation as resolved.
Show resolved Hide resolved
""",
)


@openupgrade.migrate()
def migrate(env, version):
create_drive_employee(env)
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---Models in module 'hr_fleet'---
---Fields in module 'hr_fleet'---
hr_fleet / fleet.vehicle.assignation.log / driver_employee_id (many2one) : is now stored
hr_fleet / fleet.vehicle.assignation.log / driver_employee_id (many2one) : not related anymore

# DONE: fill data from old related field for now store current compute field in pre-migration

---XML records in module 'hr_fleet'---
NEW ir.ui.view: hr_fleet.fleet_vehicle_assignation_log_employee_view_list
NEW ir.ui.view: hr_fleet.fleet_vehicle_view_tree_inherit_hr
NEW ir.ui.view: hr_fleet.view_attachment_kanban_inherit_hr

# NOTHING TO DO
Loading