Sha256: 61f47e38b7a86ae1a105aa078943b1e08e76becabef8c7d26033b5771f91af81

Contents?: true

Size: 1.07 KB

Versions: 36

Compression:

Stored size: 1.07 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.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)
        )
      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

36 entries across 36 versions & 1 rubygems

Version Path
effective_orders-6.4.4 app/controllers/effective/providers/mark_as_paid.rb
effective_orders-6.4.3 app/controllers/effective/providers/mark_as_paid.rb
effective_orders-6.4.2 app/controllers/effective/providers/mark_as_paid.rb
effective_orders-6.4.1 app/controllers/effective/providers/mark_as_paid.rb
effective_orders-6.4.0 app/controllers/effective/providers/mark_as_paid.rb
effective_orders-6.3.2 app/controllers/effective/providers/mark_as_paid.rb
effective_orders-6.3.1 app/controllers/effective/providers/mark_as_paid.rb
effective_orders-6.3.0 app/controllers/effective/providers/mark_as_paid.rb
effective_orders-6.2.1 app/controllers/effective/providers/mark_as_paid.rb
effective_orders-6.2.0 app/controllers/effective/providers/mark_as_paid.rb
effective_orders-6.1.5 app/controllers/effective/providers/mark_as_paid.rb
effective_orders-6.1.4 app/controllers/effective/providers/mark_as_paid.rb
effective_orders-6.1.3 app/controllers/effective/providers/mark_as_paid.rb
effective_orders-6.1.2 app/controllers/effective/providers/mark_as_paid.rb
effective_orders-6.1.1 app/controllers/effective/providers/mark_as_paid.rb
effective_orders-6.1.0 app/controllers/effective/providers/mark_as_paid.rb
effective_orders-6.0.1 app/controllers/effective/providers/mark_as_paid.rb
effective_orders-6.0.0 app/controllers/effective/providers/mark_as_paid.rb
effective_orders-5.9.4 app/controllers/effective/providers/mark_as_paid.rb
effective_orders-5.9.3 app/controllers/effective/providers/mark_as_paid.rb