mirror of
https://github.com/rickbarrette/redmine_qbo.git
synced 2025-11-08 17:04:23 -05:00
Fixed logic
This commit is contained in:
@@ -26,10 +26,10 @@ class Vehicle < ActiveRecord::Base
|
|||||||
|
|
||||||
# returns a human readable string
|
# returns a human readable string
|
||||||
def to_s
|
def to_s
|
||||||
if year.nil?
|
if year.nil? or manke.nil? or model.nil?
|
||||||
return "#{year} #{make} #{model}"
|
|
||||||
else
|
|
||||||
return "#{vin}"
|
return "#{vin}"
|
||||||
|
else
|
||||||
|
return "#{year} #{make} #{model}"
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user