Skip to content

Commit

Permalink
[MIG] fleet_vehicle_service_calendar: Migration to 15.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigonevest committed Apr 4, 2023
1 parent e95dbc7 commit a447126
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion fleet_vehicle_service_calendar/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"development_status": "Production/Stable",
"website": "https://github.com/OCA/fleet",
"license": "AGPL-3",
"version": "14.0.1.0.0",
"version": "15.0.1.0.0",
"depends": ["calendar", "fleet_vehicle_service_kanban"],
"data": [
"views/fleet_vehicle_log_services_views.xml",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,5 +62,9 @@ def log_meeting(self, meeting_subject, meeting_date, duration):
"Meeting scheduled at '%(html_time)s'<br> "
+ "Subject: %(meeting_subject)s <br> "
+ "Duration: %(duration)s hours"
) % (html_time, meeting_subject, duration)
) % {
"html_time": html_time,
"meeting_subject": meeting_subject,
"duration": duration,
}
return self.message_post(body=message)

0 comments on commit a447126

Please sign in to comment.