Sha256: 5ef5f1a833f367449d4407d7268916accde501f52e66a6c783bbead792a6aa19

Contents?: true

Size: 1.17 KB

Versions: 23

Compression:

Stored size: 1.17 KB

Contents

module Effective
  module Providers
    module MarkAsPaid
      extend ActiveSupport::Concern

      def mark_as_paid
        raise('mark_as_paid provider is not available') unless EffectiveOrders.mark_as_paid?

        @order ||= Order.deep.find(params[:id])

        EffectiveResources.authorize!(self, :update, @order)
        EffectiveResources.authorize!(self, :admin, :effective_orders)

        @order.assign_attributes(mark_as_paid_params.except(:payment_provider, :payment_card))

        order_purchased(
          payment: 'mark as paid',
          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: effective_orders.admin_order_path(@order),
          current_user: nil # Admin action, we don't want to assign current_user to the order
        )
      end

      def mark_as_paid_params
        params.require(:effective_order).permit(
          :purchased_at, :payment_provider, :payment_card,
          :note_to_buyer, :note_internal, :send_mark_as_paid_email_to_buyer
        )
      end

    end
  end
end

Version data entries

23 entries across 23 versions & 1 rubygems

Version Path
effective_orders-6.14.6 app/controllers/effective/providers/mark_as_paid.rb
effective_orders-6.14.5 app/controllers/effective/providers/mark_as_paid.rb
effective_orders-6.14.4 app/controllers/effective/providers/mark_as_paid.rb
effective_orders-6.14.3 app/controllers/effective/providers/mark_as_paid.rb
effective_orders-6.14.2 app/controllers/effective/providers/mark_as_paid.rb
effective_orders-6.14.1 app/controllers/effective/providers/mark_as_paid.rb
effective_orders-6.14.0 app/controllers/effective/providers/mark_as_paid.rb
effective_orders-6.13.3 app/controllers/effective/providers/mark_as_paid.rb
effective_orders-6.13.2 app/controllers/effective/providers/mark_as_paid.rb
effective_orders-6.13.1 app/controllers/effective/providers/mark_as_paid.rb
effective_orders-6.13.0 app/controllers/effective/providers/mark_as_paid.rb
effective_orders-6.12.4 app/controllers/effective/providers/mark_as_paid.rb
effective_orders-6.12.3 app/controllers/effective/providers/mark_as_paid.rb
effective_orders-6.12.2 app/controllers/effective/providers/mark_as_paid.rb
effective_orders-6.12.1 app/controllers/effective/providers/mark_as_paid.rb
effective_orders-6.12.0 app/controllers/effective/providers/mark_as_paid.rb
effective_orders-6.9.10 app/controllers/effective/providers/mark_as_paid.rb
effective_orders-6.9.9 app/controllers/effective/providers/mark_as_paid.rb
effective_orders-6.9.8 app/controllers/effective/providers/mark_as_paid.rb
effective_orders-6.9.7 app/controllers/effective/providers/mark_as_paid.rb