32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
# File 'lib/effective_orders.rb', line 32
def self.config_keys
[
:orders_table_name, :order_items_table_name, :carts_table_name, :cart_items_table_name,
:customers_table_name, :subscriptions_table_name, :products_table_name,
:layout,
:orders_collection_scope, :order_tax_rate_method,
:obfuscate_order_ids, :use_effective_qb_sync, :use_effective_qb_online,
:billing_address, :shipping_address,
:collect_note, :collect_note_required, :collect_note_message,
:terms_and_conditions, :terms_and_conditions_label, :minimum_charge,
:credit_card_surcharge_percent, :credit_card_surcharge_qb_item_name,
:mailer, :parent_mailer, :deliver_method, :mailer_layout, :mailer_sender, :mailer_admin, :mailer_subject,
:send_order_receipt_to_admin, :send_order_receipt_to_buyer, :send_payment_request_to_buyer, :send_pending_order_invoice_to_buyer,
:send_order_receipts_when_mark_as_paid, :send_order_receipts_when_free,
:send_subscription_events,
:send_subscription_trialing, :send_subscription_trial_expired,
:send_refund_notification_to_admin,
:free_enabled, :mark_as_paid_enabled, :pretend_enabled, :pretend_message, :buyer_purchases_refund,
:cheque, :etransfer, :moneris, :moneris_checkout, :paypal, :phone, :refund, :stripe, :subscriptions, :trial
]
end
|