1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-01-29 18:52:22 +01:00
fab-manager/app/models/cart_item/payment_schedule.rb
Sylvain 3dc686840c front adaptation to cartItems
fix payzen customer cart creation
TODO: refactor the payOnSite modals
2021-04-27 17:18:20 +02:00

29 lines
770 B
Ruby

# frozen_string_literal: true
# A payment schedule applied to plan in the shopping cart
class CartItem::PaymentSchedule
def initialize(plan, coupon, requested)
raise TypeError unless coupon.is_a? CartItem::Coupon
@plan = plan
@coupon = coupon
@requested = requested
end
def schedule(total, total_without_coupon)
schedule = if @requested && @plan&.monthly_payment
PaymentScheduleService.new.compute(@plan, total_without_coupon, coupon: @coupon.coupon)
else
nil
end
total_amount = if schedule
schedule[:items][0].amount
else
total
end
{ schedule: schedule, total: total_amount }
end
end