Added flash notification for deleted customers.

This commit is contained in:
2026-02-13 08:01:02 -05:00
parent 5165bc20b4
commit b02a40827d
3 changed files with 6 additions and 2 deletions

View File

@@ -64,6 +64,7 @@ class VehiclesController < ApplicationController
@vin = @vehicle.vin.scan(/.{1,9}/) if @vehicle.vin
@issues = @vehicle.issues.order(id: :desc)
@closed_issues = (@issues - @issues.open)
flash[:error] = t :alert_no_customer if @vehicle.customer.nil?
rescue
flash[:error] = t :alert_vehicle_not_found
render_404