diff --git a/app/views/qbo/index.html.erb b/app/views/qbo/index.html.erb index d0d9e9b..120e5de 100644 --- a/app/views/qbo/index.html.erb +++ b/app/views/qbo/index.html.erb @@ -12,25 +12,25 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI

Redmine Quickbooks

-

Customer Count: <%= @qbo_customer_count %>

-

Item Count: <%= @qbo_item_count %>

-

Employee Count: <%= @qbo_employee_count %>

- <%= form_for @qbo do |f|%>
- <%= f.label "Customers" %> + <%= f.label "Customer Count:"+@qbo_customer_count.to_s%>
<%= f.select :qbo_customer_id, QboCustomers.all.pluck(:name, :id), :selected => @selected_customer, include_blank: true %>
+
+
- <%= f.label "Items" %> + <%= f.label "Item Count: "+@qbo_item_count.to_s %>
<%= f.select :qbo_item_id, QboItem.all.pluck(:name, :id).reverse, :selected => @selected_item, include_blank: true %>
+
+
- <%= f.label "Employees" %> + <%= f.label "Employee Count: "+@qbo_employee_count.to_s %>
<%= f.select :qbo_employee_id, QboEmployee.all.pluck(:name, :id), :selected => @selected_employee, include_blank: true %>
@@ -40,3 +40,4 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
<%= link_to "Sync", qbo_sync_path %> +t \ No newline at end of file