mirror of
https://github.com/rickbarrette/redmine_qbo.git
synced 2025-11-09 01:14:23 -05:00
Update customer.rb
This commit is contained in:
@@ -108,12 +108,15 @@ class Customer < ActiveRecord::Base
|
|||||||
transaction do
|
transaction do
|
||||||
# Update the customer table
|
# Update the customer table
|
||||||
customers.each { |customer|
|
customers.each { |customer|
|
||||||
qbo_customer = Customer.find_or_create_by(id: customer.id)
|
|
||||||
# only update if diffrent
|
background do
|
||||||
if qbo_customer.new_record?
|
qbo_customer = Customer.find_or_create_by(id: customer.id)
|
||||||
qbo_customer.name = customer.display_name
|
# only update if diffrent
|
||||||
qbo_customer.id = customer.id
|
if qbo_customer.new_record?
|
||||||
qbo_customer.save!
|
qbo_customer.name = customer.display_name
|
||||||
|
qbo_customer.id = customer.id
|
||||||
|
qbo_customer.save!
|
||||||
|
end
|
||||||
end
|
end
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
@@ -130,6 +133,13 @@ class Customer < ActiveRecord::Base
|
|||||||
|
|
||||||
private
|
private
|
||||||
|
|
||||||
|
def background(&block)
|
||||||
|
Thread.new do
|
||||||
|
yield
|
||||||
|
ActiveRecord::Base.connection.close
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
# pull the details
|
# pull the details
|
||||||
def pull
|
def pull
|
||||||
begin
|
begin
|
||||||
|
|||||||
Reference in New Issue
Block a user