effective_orders 6.21.0 → 6.21.1
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 +4 -4
- data/app/models/concerns/acts_as_purchasable.rb +4 -0
- data/app/models/effective/order.rb +1 -1
- data/app/views/effective/order_emails/_header.html.haml +4 -4
- data/app/views/effective/order_emails/_info.html.haml +5 -5
- data/app/views/effective/orders/_order_deferred.html.haml +1 -1
- data/app/views/effective/orders/delayed/_form.html.haml +2 -2
- data/lib/effective_orders/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a44458577b035dfc26494d567ec2e67954c77e7ac446f0ca7acc67045d045180
|
4
|
+
data.tar.gz: 3bbaa3f085b4dc5480dabd99837c2a987cbedb793403b87c4971ae71621c988d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a5304f09d475c1f2a040af16241c222d26fccc1cbba151b562238b665f0f0b910839a717f541af64b5b189f86e9a7f0d6e370fe87cfb005dbef744504aa663da
|
7
|
+
data.tar.gz: aca3d398a7f6f431bf2a68a8885b5349ae8c0660d167e3977f58ffa66b01705faafc231663c27cc44cb47a66c25056b7b2500719f9f0b8c3d63a651cffe964a3
|
@@ -65,6 +65,10 @@ module ActsAsPurchasable
|
|
65
65
|
end
|
66
66
|
}
|
67
67
|
|
68
|
+
scope :not_purchased_or_deferred, -> {
|
69
|
+
where(purchased_order_id: nil).where.not(id: purchased_or_deferred)
|
70
|
+
}
|
71
|
+
|
68
72
|
scope :purchased_or_deferred, -> {
|
69
73
|
if respond_to?(:unarchived)
|
70
74
|
unarchived.joins(order_items: :order).where(orders: { status: [:purchased, :deferred] })
|
@@ -582,7 +582,7 @@ module Effective
|
|
582
582
|
return unless delayed? && deferred? && delayed_payment_provider?
|
583
583
|
return unless delayed_payment_date_upcoming?
|
584
584
|
|
585
|
-
"Your #{delayed_payment_method} will be charged $#{'%0.2f' % total_to_f} on #{delayed_payment_date.strftime('%
|
585
|
+
"Your #{delayed_payment_method} will be charged $#{'%0.2f' % total_to_f} on #{delayed_payment_date.strftime('%A, %B %e, %Y')}."
|
586
586
|
end
|
587
587
|
|
588
588
|
def delayed_payment_date_past?
|
@@ -1,11 +1,11 @@
|
|
1
1
|
.order-emails-header
|
2
2
|
%h1= order_email.header
|
3
3
|
|
4
|
-
|
5
|
-
|
6
|
-
|
4
|
+
-#- if order.purchased?
|
5
|
+
-# %p
|
6
|
+
-# %strong Thank you!
|
7
7
|
|
8
|
-
-
|
8
|
+
- if order.declined?
|
9
9
|
%p
|
10
10
|
Please
|
11
11
|
= link_to('checkout your order again', effective_orders.order_url(order))
|
@@ -14,26 +14,26 @@
|
|
14
14
|
|
15
15
|
- elsif order.payment_provider == 'deluxe_delayed'
|
16
16
|
%ul
|
17
|
-
%li Your credit card will be charged on <strong>#{order.delayed_payment_date.strftime("%A, %B %
|
17
|
+
%li Your credit card will be charged on <strong>#{order.delayed_payment_date.strftime("%A, %B %e, %Y")}</strong>.
|
18
18
|
%li Changes and cancellations must be made before this date.
|
19
19
|
%li A receipt will be sent after the transaction is completed.
|
20
20
|
|
21
21
|
- elsif order.payment_provider == 'cheque'
|
22
22
|
%ul
|
23
23
|
%li Please submit your cheque payment within 30 days of the invoice date.
|
24
|
-
%li You have until payment is received or until <strong>#{order.delayed_payment_date.strftime("%A, %B %
|
24
|
+
%li You have until payment is received or until <strong>#{order.delayed_payment_date.strftime("%A, %B %e, %Y")}</strong>, whichever is first, to make changes and cancellations.
|
25
25
|
%li A receipt will be sent after payment has been received.
|
26
26
|
|
27
27
|
- elsif order.payment_provider == 'phone'
|
28
28
|
%ul
|
29
29
|
%li Please phone us to submit payment by credit card within 30 days of the invoice date.
|
30
|
-
%li You have until payment is received or until <strong>#{order.delayed_payment_date.strftime("%A, %B %
|
30
|
+
%li You have until payment is received or until <strong>#{order.delayed_payment_date.strftime("%A, %B %e, %Y")}</strong>, whichever is first, to make changes and cancellations.
|
31
31
|
%li A receipt will be sent after payment has been received.
|
32
32
|
|
33
33
|
- elsif order.payment_provider == 'etransfer'
|
34
34
|
%ul
|
35
35
|
%li Please submit your etransfer payment within 30 days of the invoice date.
|
36
|
-
%li You have until payment is received or until <strong>#{order.delayed_payment_date.strftime("%A, %B %
|
36
|
+
%li You have until payment is received or until <strong>#{order.delayed_payment_date.strftime("%A, %B %e, %Y")}</strong>, whichever is first, to make changes and cancellations.
|
37
37
|
%li A receipt will be sent after payment has been received.
|
38
38
|
|
39
39
|
- else
|
@@ -41,7 +41,7 @@
|
|
41
41
|
%ul
|
42
42
|
- if providers.present?
|
43
43
|
%li When we receive your #{providers} we will mark your order paid.
|
44
|
-
%li You have until payment is received or until <strong>#{order.delayed_payment_date.strftime("%A, %B %
|
44
|
+
%li You have until payment is received or until <strong>#{order.delayed_payment_date.strftime("%A, %B %e, %Y")}</strong>, whichever is first, to make changes and cancellations.
|
45
45
|
%li A receipt will be sent after payment has been received.
|
46
46
|
|
47
47
|
|
@@ -11,7 +11,7 @@
|
|
11
11
|
Your total due is $0. Should your order total change, you will receive a new invoice, along with your payment details.
|
12
12
|
|
13
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 %
|
14
|
+
Your #{order.delayed_payment_method} will automatically be charged on #{order.delayed_payment_date.strftime("%A, %B %e, %Y")}.
|
15
15
|
|
16
16
|
- else
|
17
17
|
Waiting for payment by #{order.payment_provider}.
|
@@ -9,11 +9,11 @@
|
|
9
9
|
The payment date for this order
|
10
10
|
|
11
11
|
- if order.delayed_payment_date_upcoming?
|
12
|
-
is in #{distance} from now on #{order.delayed_payment_date.strftime("%A, %B %
|
12
|
+
is in #{distance} from now on #{order.delayed_payment_date.strftime("%A, %B %e, %Y")}
|
13
13
|
- elsif order.delayed_payment_date_today?
|
14
14
|
was today
|
15
15
|
- else
|
16
|
-
was #{distance} ago on #{order.delayed_payment_date.strftime("%A, %B %
|
16
|
+
was #{distance} ago on #{order.delayed_payment_date.strftime("%A, %B %e, %Y")}
|
17
17
|
|
18
18
|
- provider_locals = { order: order, deferred_url: deferred_url, declined_url: declined_url }
|
19
19
|
|