Update vehicle.rb

This commit is contained in:
2016-04-25 12:34:53 -04:00
parent 0fb358edf3
commit ee2be0d8c9

View File

@@ -10,8 +10,6 @@
class Vehicle < ActiveRecord::Base
require 'edmunds/vin.rb'
unloadable
belongs_to :qbo_customer
@@ -28,7 +26,7 @@ class Vehicle < ActiveRecord::Base
def decode_vin
if vin?
e = Edmunds::Vin.full(vin)
e = Edmunds::VIN.full(vin)
vehicle = JSON.parse(e)
year = vehicle[:years][:year]
make = vehicle[:make][:name]