Sha256: 30351b086d7c22caea9365a22b6c2f619b21b1a4d6502f80b079ad9a6fce335a
Contents?: true
Size: 1.5 KB
Versions: 10
Compression:
Stored size: 1.5 KB
Contents
EffectiveQbSync.setup do |config| # Configure Database Tables config.qb_requests_table_name = :qb_requests config.qb_tickets_table_name = :qb_tickets config.qb_logs_table_name = :qb_logs config.qb_order_items_table_name = :qb_order_items # Layout Settings # config.layout = { admin: 'admin' } # Quickbooks Company File Settings # The username / password of the Quickbooks user that should be allowed to synchronize. # This must match the user configured in the Quickbooks .qwc file config.quickbooks_username = '' config.quickbooks_password = '' # Sales tax can be added to an order in two ways: # 1. Sales tax should be added by Quickbooks # - Set below: config.quickbooks_tax_name = '' # - In Quickbooks: Edit -> Preferences -> Sales Tax -> Company Preferences -> Do you charge sales tax? Yes # 2. Sales tax should be added by the website # - Set below: config.quickbooks_tax_name = 'GST Collected' # - In Quickbooks: Edit -> Preferences -> Sales Tax -> Company Preferences -> Do you charge sales tax? No # - In Quickbooks: Add a regular Quickbooks Item matching the config.quickbooks_tax_name # See /admin/qb_syncs/instructions for more information. config.quickbooks_tax_name = '' # If a synchronization errors occurs, send an email with steps to fix the error, to this address # Uses effective_orders mailer layout and settings # Leave nil to use EffectiveOrders.mailer[:admin_email] value, or provide a to email address here config.error_email = nil end
Version data entries
10 entries across 10 versions & 1 rubygems