6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# File 'app/controllers/effective/providers/mark_as_paid.rb', line 6
def mark_as_paid
@order ||= Order.find(params[:id])
EffectiveOrders.authorize!(self, :update, @order)
EffectiveOrders.authorize!(self, :admin, :effective_orders)
@order.assign_attributes(mark_as_paid_params.except(:payment, :payment_provider, :payment_card))
order_purchased(
details: mark_as_paid_params[:payment],
provider: mark_as_paid_params[:payment_provider],
card: mark_as_paid_params[:payment_card],
email: @order.send_mark_as_paid_email_to_buyer?,
skip_buyer_validations: true,
purchased_url: params[:purchased_url].presence || effective_orders.admin_order_path(@order),
declined_url: params[:declined_url].presence || effective_orders.admin_order_path(@order)
)
end
|