Added an init method and some convenience methods

This commit is contained in:
2016-04-28 08:05:54 -04:00
parent 68846f7910
commit 365a36390b

View File

@@ -16,13 +16,35 @@ class QboCustomer < ActiveRecord::Base
attr_accessible :name attr_accessible :name
validates_presence_of :id, :name validates_presence_of :id, :name
after_initialize :get_details
self.primary_key = "id" self.primary_key = "id"
def active?
@details.active?
end
def to_s def to_s
name name
end end
def get_base def email
@details.primary_Email_addr
end
def primary_phone
@details.primary_phone
end
def mobile_phone
@detail.mobile_phone
end
def notes
@details.notes
end
def get_base
Qbo.get_base(:customer) Qbo.get_base(:customer)
end end
@@ -46,4 +68,11 @@ class QboCustomer < ActiveRecord::Base
#remove deleted customers #remove deleted customers
where.not(customers.map(&:id)).destroy_all where.not(customers.map(&:id)).destroy_all
end end
private
def get_details
@details = get_customer(self.id)
end
end end