diff --git a/app/models/qbo_customer.rb b/app/models/qbo_customer.rb index 0a07e65..7147a6e 100644 --- a/app/models/qbo_customer.rb +++ b/app/models/qbo_customer.rb @@ -34,17 +34,17 @@ class QboCustomer < ActiveRecord::Base # returns the customer's email def email - return @details.email_address if @details + return @details.email_address.address if @details end # returns the customer's primary phone def primary_phone - return @details.primary_phone.number if @details + return @details.primary_phone.free_form_number if @details end # returns the customer's mobile phone def mobile_phone - return @details.mobile_phone.number if @details + return @details.mobile_phone.free_form_number if @details end # returns the customer's notes