1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-29 10:24:20 +01:00
fab-manager/app/services/payment_schedule_service.rb
2020-11-05 14:55:06 +01:00

45 lines
1.4 KiB
Ruby

# frozen_string_literal: true
# create PaymentSchedules for various items
class PaymentScheduleService
##
# Compute a payment schedule for a new subscription to the provided plan
# @param plan {Plan}
# @param total {Number} Total amount of the current shopping cart (which includes this plan) - without coupon
# @param coupon {Coupon} apply this coupon, if any
##
def compute(plan, total, coupon = nil)
other_items = total - plan.amount
price = if coupon
cs = CouponService.new
other_items = cs.ventilate(total, other_items, coupon)
cs.ventilate(total, plan.amount, coupon)
else
plan.amount
end
ps = PaymentSchedule.new(scheduled: plan, total: price + other_items, coupon: coupon)
deadlines = plan.duration / 1.month
per_month = (price / deadlines).truncate
adjustment = if per_month * deadlines != price
price - (per_month * deadlines)
else
0
end
items = []
(0..deadlines - 1).each do |i|
date = DateTime.current + i.months
amount = if i.zero?
per_month + adjustment + other_items
else
per_month
end
items.push PaymentScheduleItem.new(
amount: amount,
due_date: date,
payment_schedule: ps
)
end
{ payment_schedule: ps, items: items }
end
end