effective_orders 6.20.0 → 6.21.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5266c20d5867e006a46275ad40820436f7401b7355f9ed5fb196aedee94180d3
4
- data.tar.gz: 5469f434c36294e847718c1bcdbd92d04778ab1dd658784819fb21e99bc02902
3
+ metadata.gz: 97151cf216b4f8b8d58f6516b4ec25670c9d3f0f0584bd2c5e148af880c29966
4
+ data.tar.gz: c662d0b7d645e8c8a73d2ce7db652a0c5b1de51a7814415d72c0d8c75dcc2ab8
5
5
  SHA512:
6
- metadata.gz: 38b74f58fe8cd5ec06a8eadeecaa8bfc115aa16190f642ba9b6e0893f86261e022625e0bc800282bf95eb0cb6c9ec8eeb93b17c40838a97f28c62c25b671d08b
7
- data.tar.gz: 6eb685f21f1b99a421831b5cf188650b2e7447149fcf1f8d799c5ebb203b42f5868e9519102d6cf4aa1ffbdea66dc679121e435c7aebcd2300715df9a6fcca6e
6
+ metadata.gz: 816cf35587e725a2c626cfe5b5b90c0aa0abcad36d876f9bc07ef5dda91433af2b61f2016d51916d589eca85f06fc0eec82793ef9116f4841b80b233a12c25bc
7
+ data.tar.gz: 3969c1bee85ab1ce17bb2181360ae55caaf3d6b6795f6541b976540622076373c8e204db7ea18d1915ac02e9566e8ef6f2a27719073ea6424398b851eb10ae68
@@ -422,16 +422,16 @@ module Effective
422
422
  elsif purchased?
423
423
  'Receipt'
424
424
  elsif refund? && (pending? || confirmed?)
425
- 'Pending Refund'
425
+ 'Pending refund'
426
426
  elsif (pending? || confirmed?)
427
- 'Pending Order'
427
+ 'Pending order'
428
428
  else
429
429
  'Order'
430
430
  end
431
431
  end
432
432
 
433
433
  def total_label
434
- purchased? ? 'Total Paid' : 'Total Due'
434
+ purchased? ? 'Total paid' : 'Total due'
435
435
  end
436
436
 
437
437
  def payment_method
@@ -27,14 +27,14 @@ module Effective
27
27
  # The very first line of the email body
28
28
  def header
29
29
  if event.present? && order.purchased_or_deferred?
30
- return "Your tickets have been confirmed" if event_none_waitlisted?
30
+ return "Your tickets have been confirmed!" if event_none_waitlisted?
31
31
  return "Some of your tickets have been confirmed, but some are on the waitlist" if event_some_waitlisted?
32
- return "Your tickets are on the waitlist" if event_all_waitlisted?
32
+ return "Your tickets are on the waitlist!" if event_all_waitlisted?
33
33
  end
34
34
 
35
- return "Request for Payment" if payment_request?
36
- return "Pending order created" if order.deferred?
37
- return "Your order has been successfully purchased" if order.purchased?
35
+ return "Request for payment" if payment_request?
36
+ return "Order waiting on payment" if order.deferred?
37
+ return "Your order has been purchased!" if order.purchased?
38
38
  return "Your order was declined by the payment processor" if order.declined?
39
39
 
40
40
  # Fallback
@@ -44,17 +44,21 @@ module Effective
44
44
  def subject
45
45
  if event.present? && order.purchased_or_deferred?
46
46
  return "Confirmation - #{event}" if event_none_waitlisted?
47
- return "Confirmation + Waitlist - #{event}" if event_some_waitlisted?
47
+ return "Confirmation & Waitlist - #{event}" if event_some_waitlisted?
48
48
  return "Waitlist - #{event}" if event_all_waitlisted?
49
49
  end
50
50
 
51
- return "Payment Request - Order: ##{order.to_param}" if payment_request?
52
- return "Pending Order: ##{order.to_param}" if order.deferred?
53
- return "Declined Order: ##{order.to_param}" if order.declined?
54
- return "Order Receipt: ##{order.to_param}" if order.purchased?
51
+ if event.present? && order.declined?
52
+ return "Declined payment - #{event} - Order ##{order.to_param}" if order.declined?
53
+ end
54
+
55
+ return "Payment request - Order ##{order.to_param}" if payment_request?
56
+ return "Waiting on payment - Order ##{order.to_param}" if order.deferred?
57
+ return "Declined payment - Order ##{order.to_param}" if order.declined?
58
+ return "Receipt - Order ##{order.to_param}" if order.purchased?
55
59
 
56
60
  # Fallback
57
- "Order: ##{order.to_param}"
61
+ "Order ##{order.to_param}"
58
62
  end
59
63
 
60
64
  def payment_request?
@@ -1,16 +1,20 @@
1
- %h1{style: "text-align: center"}= order_email.header
1
+ .order-emails-header
2
+ %h1= order_email.header
2
3
 
3
- - if order.purchased?
4
- %p{style: "margin-bottom: 14px; font-weight: bold; text-align: center;"} Thank you!
5
- - elsif order.declined?
6
- %p{style: "margin-bottom: 14px; font-weight: bold; text-align: center;"}= order.declined_reason
4
+ - if order.purchased?
5
+ %p
6
+ %strong Thank you!
7
7
 
8
- - if (event = order_email.event).present?
9
- %p{style: "text-align: center"}
10
- %strong{style: "font-size: 18px"}= event.title
11
- %br
12
- #{effective_events_event_schedule(event)}
8
+ - elsif order.declined?
9
+ %p
10
+ Please
11
+ = link_to('checkout your order again', effective_orders.order_url(order))
12
+ or contact us if the problem persists.
13
13
 
14
- - if event.rich_text_confirmation_email.present?
15
- %hr
16
- = event.rich_text_confirmation_email.to_s.html_safe
14
+ - if (event = order_email.event).present?
15
+ %h2= event.title
16
+ %p= effective_events_event_schedule(event)
17
+
18
+ - if event.rich_text_confirmation_email.present?
19
+ %hr
20
+ .event-rich-text= event.rich_text_confirmation_email.to_s.html_safe
@@ -1,70 +1,91 @@
1
1
  - if order.delayed? && order.deferred? && order.delayed_payment_date_upcoming?
2
2
  %hr
3
- %p{style: "margin-bottom: 4px; font-weight: bold;"} Please note:
4
3
 
5
- - if order.payment_provider == 'deluxe_delayed'
6
- %ul{style: "margin-top: 0;"}
4
+ %p
5
+ %strong Important
6
+
7
+ - if order_email.event_all_waitlisted?
8
+ %p
9
+ Your tickets are currently on the waitlist. Should your registration request be accepted, you will receive an event confirmation email letting you know you should plan to attend, along with your payment details. Thank you for your interest – we look forward to seeing you at an event soon!
10
+
11
+ - elsif order_email.event_some_waitlisted?
12
+ %p
13
+ Some of your tickets are currently on the waitlist. Should your waitlisted tickets be accepted, you will receive a new event confirmation email letting you know you of the update, along with your payment details. Thank you for your interest – we look forward to seeing you at an event soon!
14
+
15
+ - elsif order.payment_provider == 'deluxe_delayed'
16
+ %ul
7
17
  %li Your credit card will be charged on <strong>#{order.delayed_payment_date.strftime("%A, %B %d, %Y")}</strong>.
8
18
  %li Changes and cancellations must be made before this date.
9
19
  %li A receipt will be sent after the transaction is completed.
20
+
10
21
  - elsif order.payment_provider == 'cheque'
11
- %ul{style: "margin-top: 0;"}
12
- %li Please submit a cheque at your earliest convience.
22
+ %ul
23
+ %li Please submit your cheque payment within 30 days of the invoice date.
13
24
  %li You have until payment is received or until <strong>#{order.delayed_payment_date.strftime("%A, %B %d, %Y")}</strong>, whichever is first, to make changes and cancellations.
14
25
  %li A receipt will be sent after payment has been received.
26
+
15
27
  - elsif order.payment_provider == 'phone'
16
- %ul{style: "margin-top: 0;"}
17
- %li Please phone us at your earliest convience.
28
+ %ul
29
+ %li Please phone us to submit payment by credit card within 30 days of the invoice date.
18
30
  %li You have until payment is received or until <strong>#{order.delayed_payment_date.strftime("%A, %B %d, %Y")}</strong>, whichever is first, to make changes and cancellations.
19
31
  %li A receipt will be sent after payment has been received.
32
+
20
33
  - elsif order.payment_provider == 'etransfer'
21
- %ul{style: "margin-top: 0;"}
22
- %li Please submit an etransfer at your earliest convience.
34
+ %ul
35
+ %li Please submit your etransfer payment within 30 days of the invoice date.
23
36
  %li You have until payment is received or until <strong>#{order.delayed_payment_date.strftime("%A, %B %d, %Y")}</strong>, whichever is first, to make changes and cancellations.
24
37
  %li A receipt will be sent after payment has been received.
38
+
25
39
  - else
26
40
  - providers = EffectiveOrders.deferred_providers.to_sentence(last_word_connector: ', or', two_words_connector: ' or ')
27
- %ul{style: "margin-top: 0;"}
41
+ %ul
28
42
  - if providers.present?
29
43
  %li When we receive your #{providers} we will mark your order paid.
30
44
  %li You have until payment is received or until <strong>#{order.delayed_payment_date.strftime("%A, %B %d, %Y")}</strong>, whichever is first, to make changes and cancellations.
31
45
  %li A receipt will be sent after payment has been received.
32
46
 
47
+
33
48
  - elsif order.deferred?
34
49
  %hr
35
- %p{style: "margin-bottom: 4px; font-weight: bold;"} Please remit payment at your earliest convenience.
50
+
51
+ %p
52
+ %strong Important
36
53
 
37
54
  - if order.payment_provider == 'deluxe_delayed'
38
- %ul{style: "margin-top: 0;"}
55
+ %ul
39
56
  %li Your credit card will be automatically charged.
40
57
  %li A receipt will be sent after the transaction is completed.
41
58
  - elsif order.payment_provider == 'cheque'
42
- %ul{style: "margin-top: 0;"}
43
- %li Please submit a cheque at your earliest convience.
59
+ %ul
60
+ %li Please submit your cheque within 30 days of the invoice date.
44
61
  %li A receipt will be sent after payment has been received.
45
62
  - elsif order.payment_provider == 'phone'
46
- %ul{style: "margin-top: 0;"}
47
- %li Please phone us at your earliest convience.
63
+ %ul
64
+ %li Please phone us to submit payment within 30 days of the invoice date.
48
65
  %li A receipt will be sent after payment has been received.
49
66
  - elsif order.payment_provider == 'etransfer'
50
- %ul{style: "margin-top: 0;"}
51
- %li Please submit an etransfer at your earliest convience.
67
+ %ul
68
+ %li Please submit your etransfer within 30 days of the invoice date.
52
69
  %li A receipt will be sent after payment has been received.
53
70
  - else
54
71
  - providers = EffectiveOrders.deferred_providers.to_sentence(last_word_connector: ', or', two_words_connector: ' or ')
55
- %ul{style: "margin-top: 0;"}
72
+ %ul
56
73
  - if providers.present?
57
74
  %li When we receive your #{providers} we will mark your order paid.
58
75
  %li A receipt will be sent after payment has been received.
59
76
 
77
+
60
78
  - elsif order_email.payment_request?
61
79
  %hr
62
- %p{style: "margin-bottom: 4px; font-weight: bold;"} An order has been created on your behalf for the following items.
63
- %p{style: "margin-bottom: 4px; font-weight: bold;"} Please remit payment at your earliest convenience.
64
80
 
65
- - providers = EffectiveOrders.deferred_providers.to_sentence(last_word_connector: ', or', two_words_connector: ' or ')
66
- %ul{style: "margin-top: 0;"}
67
- %li #{link_to('Click here', effective_orders.order_url(@order))} to review your order and pay online with a credit card.
81
+ %p
82
+ %strong Important
83
+
84
+ - providers = EffectiveOrders.deferred_providers.to_sentence(last_word_connector: ', and', two_words_connector: ', and ')
85
+ %ul
86
+ %li Please #{link_to('click here', effective_orders.order_url(@order))} to review your order and pay online.
68
87
  - if providers.present?
69
- %li We also accept #{providers}.
88
+ %li We accept credit card, #{providers}.
70
89
  %li A receipt will be sent after payment has been received.
90
+
91
+ %hr
@@ -7,4 +7,4 @@
7
7
  %tbody
8
8
  %tr
9
9
  %td
10
- Your card was declined by the payment processor: #{order.declined_reason}
10
+ Your card was declined by the payment processor with the error: #{order.declined_reason}.
@@ -3,21 +3,25 @@
3
3
  %table.table
4
4
  %thead
5
5
  %tr
6
- %th Payment
6
+ %th Payment method
7
7
  %tbody
8
8
  %tr
9
9
  %td
10
- - if order.delayed? && order.delayed_payment_provider?
11
- %p Your #{order.delayed_payment_method} will be charged on #{order.delayed_payment_date.strftime("%A, %B %d, %Y")}
10
+ - if order.total == 0
11
+ Your total due is $0. Should your order total change, you will receive a new invoice, along with your payment details.
12
+
13
+ - elsif order.delayed? && order.payment_provider == "deluxe_delayed"
14
+ Your #{order.delayed_payment_method} will automatically be charged on #{order.delayed_payment_date.strftime("%A, %B %d, %Y")}.
15
+
12
16
  - else
13
- %p Waiting for payment by #{order.payment_provider}.
17
+ Waiting for payment by #{order.payment_provider}.
14
18
 
15
19
  - if order.payment_provider == "etransfer" && (EffectiveOrders.etransfer[:success] rescue false).present?
16
- %p= EffectiveOrders.etransfer[:success].html_safe
20
+ = EffectiveOrders.etransfer[:success].html_safe
17
21
 
18
22
  - if order.payment_provider == "cheque" && (EffectiveOrders.cheque[:success] rescue false).present?
19
- %p= EffectiveOrders.cheque[:success].html_safe
23
+ = EffectiveOrders.cheque[:success].html_safe
20
24
 
21
25
  - if order.payment_provider == "phone" && (EffectiveOrders.phone[:success] rescue false).present?
22
- %p= EffectiveOrders.phone[:success].html_safe
26
+ = EffectiveOrders.phone[:success].html_safe
23
27
 
@@ -3,11 +3,7 @@
3
3
  %table.table
4
4
  %thead
5
5
  %tr
6
- %th Amount Paid
7
- %th Date Paid
8
- %th Payment Method
6
+ %th Payment method
9
7
  %tbody
10
8
  %tr
11
- %td= price_to_currency(order.total)
12
- %td= order.purchased_at.in_time_zone(Time.zone).strftime('%b %d, %Y')
13
9
  %td= order.payment_method
@@ -1,3 +1,3 @@
1
1
  module EffectiveOrders
2
- VERSION = '6.20.0'.freeze
2
+ VERSION = '6.21.0'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: effective_orders
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.20.0
4
+ version: 6.21.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Code and Effect
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-02-18 00:00:00.000000000 Z
11
+ date: 2025-02-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails