Create vehicle.rb

This commit is contained in:
2017-06-13 21:51:36 -04:00
committed by GitHub
parent c5a20c9e7f
commit 8d2351d3f9

View File

@@ -72,7 +72,7 @@ class Vehicle < ActiveRecord::Base
# Force Upper Case for VIN numbers
def vin=(val)
#strip VIN of all illegal chars (for barcode scanner)
val.to_s.upcase.gsub(/[^A-HJ-NPR-Za-hj-npr-z\d]+/,"")
val = val.to_s.upcase.gsub(/[^A-HJ-NPR-Za-hj-npr-z\d]+/,"")
write_attribute(:vin, val)
end