mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-01 12:24:28 +01:00
43 lines
1.6 KiB
Ruby
43 lines
1.6 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
# Concern for Payment
|
|
module Payments::PaymentConcern
|
|
private
|
|
|
|
def get_wallet_debit(user, total_amount)
|
|
wallet_amount = (user.wallet.amount * 100).to_i
|
|
wallet_amount >= total_amount ? total_amount : wallet_amount
|
|
end
|
|
|
|
def debit_amount(order, coupon_code = nil)
|
|
total = CouponService.new.apply(order.total, coupon_code, order.statistic_profile.user.id)
|
|
wallet_debit = get_wallet_debit(order.statistic_profile.user, total)
|
|
total - wallet_debit
|
|
end
|
|
|
|
def payment_success(order, coupon_code, payment_method = '', payment_id = nil, payment_type = nil)
|
|
ActiveRecord::Base.transaction do
|
|
order.paid_total = debit_amount(order, coupon_code)
|
|
coupon = Coupon.find_by(code: coupon_code)
|
|
order.coupon_id = coupon.id if coupon
|
|
WalletService.debit_user_wallet(order, order.statistic_profile.user)
|
|
order.operator_profile_id = order.statistic_profile.user.invoicing_profile.id if order.operator_profile.nil?
|
|
order.payment_method = if order.total == order.wallet_amount
|
|
'wallet'
|
|
else
|
|
payment_method
|
|
end
|
|
order.state = 'in_progress'
|
|
order.payment_state = 'paid'
|
|
if payment_id && payment_type
|
|
order.payment_gateway_object = PaymentGatewayObject.new(gateway_object_id: payment_id, gateway_object_type: payment_type)
|
|
end
|
|
order.order_items.each do |item|
|
|
ProductService.update_stock(item.orderable, 'external', 'sold', -item.quantity, item.id)
|
|
end
|
|
order.save
|
|
order.reload
|
|
end
|
|
end
|
|
end
|