Update customer.rb

This commit is contained in:
2016-05-24 11:58:35 -04:00
parent c3e8fb22c1
commit c22272143d

View File

@@ -20,7 +20,8 @@ class Customer < ActiveRecord::Base
validates_presence_of :id, :name validates_presence_of :id, :name
after_initialize :pull after_initialize :pull
alias_method_chain :save, :push alias_method_chain :save_without_push, :save
alias_method_chain :save, :save_with_push
self.primary_key = :id self.primary_key = :id
@@ -129,7 +130,7 @@ class Customer < ActiveRecord::Base
# Push the updates # Push the updates
def save_with_push def save_with_push
super save_without_push
begin begin
#tries ||= 3 #tries ||= 3
@details = Qbo.get_base(:customer).service.update(@details) @details = Qbo.get_base(:customer).service.update(@details)