Fixed QBO#Index

This commit is contained in:
2016-01-13 21:00:15 -05:00
parent ec1c263347
commit e19688a525
2 changed files with 3 additions and 3 deletions

View File

@@ -16,7 +16,7 @@ class QboController < ApplicationController
#
def index
@qbo = Qbo.first
@qbo_customer_count = QboCustomers.count
@qbo_customer_count = QboCustomer.count
@qbo_item_count = QboItem.count
@qbo_employee_count = QboEmployee.count
@selected_customer
@@ -66,7 +66,7 @@ class QboController < ApplicationController
#
def sync
if Qbo.exists? then
QboCustomers.update_all
QboCustomer.update_all
QboItem.update_all
QboEmployee.update_all
QboEstimate.update_all