Update qbo_customer.rb

This commit is contained in:
2016-04-28 09:09:59 -04:00
parent 198e2d5934
commit bfec64de54

View File

@@ -103,9 +103,13 @@ class QboCustomer < ActiveRecord::Base
# update's the customers name if updated # update's the customers name if updated
def update def update
if @details and not self.name == @detils.display_name begin
self.name = @details.display_name if not self.name == @detils.display_name
self.save self.name = @details.display_name
self.save
end
rescue
return nil
end end
end end