Module: EffectiveOrdersHelper
- Defined in:
- app/helpers/effective_orders_helper.rb
Instance Method Summary collapse
-
#acts_as_purchasable_path(purchasable, action = :show) ⇒ Object
This is called on the My Sales Page and is intended to be overridden in the app if needed.
- #checkout_icon_to(path, options = {}) ⇒ Object
- #checkout_step1_form_url(order, namespace = nil) ⇒ Object
- #order_checkout_label(processor = nil) ⇒ Object
- #order_item_summary(order_item) ⇒ Object
- #order_payment_to_html(order) ⇒ Object
- #order_summary(order) ⇒ Object
- #payment_card_label(card) ⇒ Object
- #price_to_currency(price) ⇒ Object
- #render_checkout(order, namespace: nil, purchased_url: nil, declined_url: nil) ⇒ Object
- #render_checkout_step1(order, namespace: nil, purchased_url: nil, declined_url: nil) ⇒ Object
- #render_checkout_step2(order, namespace: nil, purchased_url: nil, declined_url: nil) ⇒ Object
- #render_order(order) ⇒ Object
- #render_orders(obj, opts = {}) ⇒ Object
- #tax_rate_to_percentage(tax_rate, options = {}) ⇒ Object
Instance Method Details
#acts_as_purchasable_path(purchasable, action = :show) ⇒ Object
This is called on the My Sales Page and is intended to be overridden in the app if needed
61 62 63 |
# File 'app/helpers/effective_orders_helper.rb', line 61 def acts_as_purchasable_path(purchasable, action = :show) polymorphic_path(purchasable) end |
#checkout_icon_to(path, options = {}) ⇒ Object
139 140 141 |
# File 'app/helpers/effective_orders_helper.rb', line 139 def checkout_icon_to(path, = {}) icon_to('shopping-cart', path, { title: 'Checkout' }.merge()) end |
#checkout_step1_form_url(order, namespace = nil) ⇒ Object
99 100 101 102 103 104 105 106 107 108 |
# File 'app/helpers/effective_orders_helper.rb', line 99 def checkout_step1_form_url(order, namespace = nil) raise 'expected an order' unless order raise 'invalid namespace, expecting nil or :admin' unless [nil, :admin].include?(namespace) if order.new_record? namespace == nil ? effective_orders.orders_path : effective_orders.admin_orders_path else namespace == nil ? effective_orders.order_path(order) : effective_orders.checkout_admin_order_path(order) end end |
#order_checkout_label(processor = nil) ⇒ Object
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 |
# File 'app/helpers/effective_orders_helper.rb', line 35 def order_checkout_label(processor = nil) return 'Checkout' if (EffectiveOrders.single_payment_processor? && ![:pretend, :mark_as_paid, :free, :refund].include?(processor)) case processor when :cheque 'Pay by Cheque' when :free 'Checkout Free' when :mark_as_paid 'Admin: Mark as Paid' when :moneris 'Checkout with Credit Card' when :paypal 'Checkout with PayPal' when :pretend 'Purchase Order (skip payment processor)' when :refund 'Complete Refund' when :stripe 'Checkout with Credit Card' else 'Checkout' end end |
#order_item_summary(order_item) ⇒ Object
27 28 29 30 31 32 33 |
# File 'app/helpers/effective_orders_helper.rb', line 27 def order_item_summary(order_item) if order_item.quantity > 1 content_tag(:p, "#{price_to_currency(order_item.total)} total for #{pluralize(order_item.quantity, 'item')}") else content_tag(:p, "#{price_to_currency(order_item.total)} total") end end |
#order_payment_to_html(order) ⇒ Object
65 66 67 68 69 |
# File 'app/helpers/effective_orders_helper.rb', line 65 def order_payment_to_html(order) content_tag(:pre) do raw JSON.pretty_generate(order.payment).html_safe.gsub('\"', '').gsub("[\n\n ]", '[]').gsub("{\n }", '{}') end end |
#order_summary(order) ⇒ Object
13 14 15 16 17 18 19 20 21 22 23 24 25 |
# File 'app/helpers/effective_orders_helper.rb', line 13 def order_summary(order) order_item_list = content_tag(:ul) do order.order_items.map do |item| content_tag(:li) do names = item.name.split('<br>') "#{item.quantity}x #{names.first} for #{price_to_currency(item.price)}".tap do |output| names[1..-1].each { |line| output << "<br>#{line}" } end.html_safe end end.join.html_safe end content_tag(:p, "#{price_to_currency(order.total)} total for #{pluralize(order.num_items, 'item')}:") + order_item_list end |
#payment_card_label(card) ⇒ Object
120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 |
# File 'app/helpers/effective_orders_helper.rb', line 120 def payment_card_label(card) card = card.to_s.downcase.gsub(' ', '').strip case card when '' 'None' when 'v', 'visa' 'Visa' when 'm', 'mc', 'master', 'mastercard' 'MasterCard' when 'a', 'ax', 'american', 'americanexpress' 'American Express' when 'd', 'discover' 'Discover' else card.to_s end end |
#price_to_currency(price) ⇒ Object
2 3 4 5 6 |
# File 'app/helpers/effective_orders_helper.rb', line 2 def price_to_currency(price) price = price || 0 raise 'price_to_currency expects an Integer representing the number of cents' unless price.kind_of?(Integer) number_to_currency(price / 100.0) end |
#render_checkout(order, namespace: nil, purchased_url: nil, declined_url: nil) ⇒ Object
75 76 77 78 79 80 81 82 83 84 85 86 87 |
# File 'app/helpers/effective_orders_helper.rb', line 75 def render_checkout(order, namespace: nil, purchased_url: nil, declined_url: nil) raise 'unable to checkout an order without a user' unless order && order.user locals = { order: order, purchased_url: purchased_url, declined_url: declined_url, namespace: namespace } if order.purchased? render(partial: 'effective/orders/order', locals: locals) elsif order.confirmed? && order.errors.blank? render(partial: 'effective/orders/checkout_step2', locals: locals) else render(partial: 'effective/orders/checkout_step1', locals: locals) end end |
#render_checkout_step1(order, namespace: nil, purchased_url: nil, declined_url: nil) ⇒ Object
89 90 91 92 |
# File 'app/helpers/effective_orders_helper.rb', line 89 def render_checkout_step1(order, namespace: nil, purchased_url: nil, declined_url: nil) locals = { order: order, purchased_url: purchased_url, declined_url: declined_url, namespace: namespace } render(partial: 'effective/orders/checkout_step1', locals: locals) end |
#render_checkout_step2(order, namespace: nil, purchased_url: nil, declined_url: nil) ⇒ Object
94 95 96 97 |
# File 'app/helpers/effective_orders_helper.rb', line 94 def render_checkout_step2(order, namespace: nil, purchased_url: nil, declined_url: nil) locals = { order: order, purchased_url: purchased_url, declined_url: declined_url, namespace: namespace } render(partial: 'effective/orders/checkout_step2', locals: locals) end |
#render_order(order) ⇒ Object
71 72 73 |
# File 'app/helpers/effective_orders_helper.rb', line 71 def render_order(order) render(partial: 'effective/orders/order', locals: { order: order }) end |
#render_orders(obj, opts = {}) ⇒ Object
110 111 112 113 114 115 116 117 118 |
# File 'app/helpers/effective_orders_helper.rb', line 110 def render_orders(obj, opts = {}) orders = Array(obj.kind_of?(User) ? Effective::Order.purchased_by(obj) : obj) if orders.any? { |order| order.kind_of?(Effective::Order) == false } raise 'expected a User or Effective::Order' end render(partial: 'effective/orders/orders_table', locals: { orders: orders }.merge(opts)) end |
#tax_rate_to_percentage(tax_rate, options = {}) ⇒ Object
8 9 10 11 |
# File 'app/helpers/effective_orders_helper.rb', line 8 def tax_rate_to_percentage(tax_rate, = {}) [:strip_insignificant_zeros] = true if [:strip_insignificant_zeros].nil? number_to_percentage(tax_rate, strip_insignificant_zeros: true) end |