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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 97151cf216b4f8b8d58f6516b4ec25670c9d3f0f0584bd2c5e148af880c29966
4
- data.tar.gz: c662d0b7d645e8c8a73d2ce7db652a0c5b1de51a7814415d72c0d8c75dcc2ab8
3
+ metadata.gz: a44458577b035dfc26494d567ec2e67954c77e7ac446f0ca7acc67045d045180
4
+ data.tar.gz: 3bbaa3f085b4dc5480dabd99837c2a987cbedb793403b87c4971ae71621c988d
5
5
  SHA512:
6
- metadata.gz: 816cf35587e725a2c626cfe5b5b90c0aa0abcad36d876f9bc07ef5dda91433af2b61f2016d51916d589eca85f06fc0eec82793ef9116f4841b80b233a12c25bc
7
- data.tar.gz: 3969c1bee85ab1ce17bb2181360ae55caaf3d6b6795f6541b976540622076373c8e204db7ea18d1915ac02e9566e8ef6f2a27719073ea6424398b851eb10ae68
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('%F')}"
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
- - if order.purchased?
5
- %p
6
- %strong Thank you!
4
+ -#- if order.purchased?
5
+ -# %p
6
+ -# %strong Thank you!
7
7
 
8
- - elsif order.declined?
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 %d, %Y")}</strong>.
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 %d, %Y")}</strong>, whichever is first, to make changes and cancellations.
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 %d, %Y")}</strong>, whichever is first, to make changes and cancellations.
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 %d, %Y")}</strong>, whichever is first, to make changes and cancellations.
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 %d, %Y")}</strong>, whichever is first, to make changes and cancellations.
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 %d, %Y")}.
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 %d, %Y")}
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 %d, %Y")}
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
 
@@ -1,3 +1,3 @@
1
1
  module EffectiveOrders
2
- VERSION = '6.21.0'.freeze
2
+ VERSION = '6.21.1'.freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: effective_orders
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.21.0
4
+ version: 6.21.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Code and Effect