blob: fcfe6520a8acbbf01826161445677562b14bef14 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
# This class represents a single iteration of a subscription. It is fulfulled
# by a conmpleted order and maintains an association which tracks all attempts
# successful or othewise at fulfulling this installment
module SolidusSubscriptions
class Installment < ActiveRecord::Base
has_many :details, class_name: 'SolidusSubscriptions::InstallmentDetail'
belongs_to :order, class_name: 'Spree::Order'
belongs_to(
:subscription,
class_name: 'SolidusSubscriptions::Subscription',
inverse_of: :installments
)
validates :subscription, presence: true
# Get the builder for the subscription_line_item. This will be an
# object that can generate the appropriate line item for the subscribable
# object
#
# @return [SolidusSubscriptions::LineItemBuilder]
def line_item_builder
subscription.line_item_builder
end
# Mark this installment as out of stock.
#
# @return [SolidusSubscriptions::InstallmentDetail] The record of the failed
# processing attempt
def out_of_stock
advance_actionable_date
details.create!(
success: false,
message: I18n.t('solidus_subscriptions.installment_details.out_of_stock')
)
end
# Mark this installment as a success
#
# @return [SolidusSubscriptions::InstallmentDetail] The record of the
# successful processing attempt
def success!
update!(actionable_date: nil)
details.create!(
success: true,
message: I18n.t('solidus_subscriptions.installment_details.success')
)
end
# Mark this installment as a failure
#
# @return [SolidusSubscriptions::InstallmentDetail] The record of the
# failed processing attempt
def failed
advance_actionable_date
details.create!(
success: false,
message: I18n.t('solidus_subscriptions.installment_details.failed')
)
end
# Does this installment still need to be fulfilled by a completed order
#
# @return [Boolean]
def unfulfilled?
order_id.nil? || !order.completed?
end
private
def advance_actionable_date
update(actionable_date: next_actionable_date)
end
def next_actionable_date
Date.current + Config.reprocessing_interval
end
end
end
|