Added sync functionality to Item and Employee

This commit is contained in:
2016-01-07 15:52:52 -05:00
parent fa230a400e
commit c666f41d68
4 changed files with 34 additions and 2 deletions

View File

@@ -16,6 +16,8 @@ class QboController < ApplicationController
# #
def index def index
@qbo_customer_count = QboCustomers.count @qbo_customer_count = QboCustomers.count
@qbo_item_count = QboItem.count
@qbo_employee_count = QboEmployee.count
end end
# #
@@ -61,6 +63,8 @@ class QboController < ApplicationController
def sync def sync
if Qbo.exists? then if Qbo.exists? then
QboCustomers.update_all QboCustomers.update_all
QboItem.update_all
QboEmployee.update_all
end end
redirect_to qbo_path(:redmine_qbo), :flash => { :notice => "Successfully synced to Quickbooks" } redirect_to qbo_path(:redmine_qbo), :flash => { :notice => "Successfully synced to Quickbooks" }

View File

@@ -1,3 +1,17 @@
class QboEmployee < ActiveRecord::Base class QboEmployee < ActiveRecord::Base
unloadable unloadable
attr_accessible :name
def self.update_all
qbo = Qbo.first
service = Quickbooks::Service::Employee.new(:company_id => qbo.realmId, :access_token => Qbo.get_auth_token)
# Update the item table
service.all.each { |employee|
qbo_employee = QboEmployee.find_or_create_by(id: employee.id)
qbo_employee.name = employee.display_name
qbo_employee.save!
}
end
end end

View File

@@ -1,3 +1,16 @@
class QboItem < ActiveRecord::Base class QboItem < ActiveRecord::Base
unloadable unloadable
attr_accessible :name
def self.update_all
qbo = Qbo.first
service = Quickbooks::Service::Item.new(:company_id => qbo.realmId, :access_token => Qbo.get_auth_token)
# Update the item table
service.all.each { |item|
qbo_item = QboItem.find_or_create_by(id: item.id)
qbo_item.name = item.name
qbo_item.save!
}
end
end end

View File

@@ -14,8 +14,9 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
<h1> Redmine Quickbooks</h1> <h1> Redmine Quickbooks</h1>
Customer Count: <%= @qbo_customer_count %> Customer Count: <%= @qbo_customer_count %>
Item Count: <%= @qbo_item_count %>
Employee Count: <%= @qbo_employee_count %>
<br/> <br/>
<br/> <br/>
<%= link_to "Sync", qbo_sync_path %> <%= link_to "Sync", qbo_sync_path %>