diff --git a/app/views/customer_appointments/_show_hook.html.erb b/app/views/customer_appointments/_show_hook.html.erb new file mode 100644 index 0000000..ce967d1 --- /dev/null +++ b/app/views/customer_appointments/_show_hook.html.erb @@ -0,0 +1,9 @@ +<% if appointment.customer.present? %> + <% unless appointment.vehicle.present? &&%> +
+ <%= link_to new_vehicle_path(customer_id: appointment.customer_id), class: 'icon icon-add' do %> + <%= l(:label_add_vehicle) %> + <% end %> +
+ <% end %> +<% end %> \ No newline at end of file diff --git a/config/locales/en.yml b/config/locales/en.yml index aa78d51..2172dc7 100644 --- a/config/locales/en.yml +++ b/config/locales/en.yml @@ -21,6 +21,7 @@ en: field_vehicle: "Vehicle" field_vehicles: "Vehicles" field_vin: "VIN" + label_add_vehicle: "Add Vehicle" label_customer_vehicles: "Customer Vehicles" label_edit: "Edit" label_edit_customer_vehicle: "Edit Customer Vehicle" diff --git a/lib/redmine_qbo_vehicles.rb b/lib/redmine_qbo_vehicles.rb index 030388b..c41670c 100644 --- a/lib/redmine_qbo_vehicles.rb +++ b/lib/redmine_qbo_vehicles.rb @@ -18,5 +18,6 @@ module RedmineQboVehicles Vehicles::Hooks::IssuesShowHookListener Vehicles::Hooks::PdfHookListener Vehicles::Hooks::ViewHookListener + Vehicles::Hooks::CustomerAppointmentShowHookListener end end \ No newline at end of file diff --git a/lib/vehicles/hooks/customer_appointment_show_hook_listener.rb b/lib/vehicles/hooks/customer_appointment_show_hook_listener.rb new file mode 100644 index 0000000..c44a01b --- /dev/null +++ b/lib/vehicles/hooks/customer_appointment_show_hook_listener.rb @@ -0,0 +1,28 @@ +#The MIT License (MIT) +# +#Copyright (c) 2016 - 2026 rick barrette +# +#Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: +# +#The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +# +#THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +module Vehicles + module Hooks + + class CustomerAppointmentShowHookListener < Redmine::Hook::ViewListener + + include IssuesHelper + + # Display vehicle information on the customer show view (right side) + def show_customer_appointment(context={}) + + context[:controller].send(:render_to_string, { + partial: 'customer_appointments/show_hook', locals: { appointment: context[:appointment] } + }) + + end + end + end +end \ No newline at end of file