Sha256: cb3c50ec2e1f9b8f669e3841569efe49a8373338d47eb7df83851b7faf7ebb02

Contents?: true

Size: 1.82 KB

Versions: 8

Compression:

Stored size: 1.82 KB

Contents

module Spree
  module Admin
    class ReturnAuthorizationsController < ResourceController
      belongs_to 'spree/order', find_by: :number

      before_action :load_form_data, only: [:new, :edit]
      create.fails  :load_form_data
      update.fails  :load_form_data

      def fire
        @return_authorization.send("#{params[:e]}!")
        flash[:success] = Spree.t(:return_authorization_updated)
        redirect_to :back
      end

      private

      def load_form_data
        load_return_items
        load_reimbursement_types
        load_return_authorization_reasons
      end

      # To satisfy how nested attributes works we want to create placeholder ReturnItems for
      # any InventoryUnits that have not already been added to the ReturnAuthorization.
      def load_return_items
        all_inventory_units = @return_authorization.order.inventory_units
        associated_inventory_units = @return_authorization.return_items.map(&:inventory_unit)
        unassociated_inventory_units = all_inventory_units - associated_inventory_units

        new_return_items = unassociated_inventory_units.map do |new_unit|
          Spree::ReturnItem.new(inventory_unit: new_unit).tap(&:set_default_pre_tax_amount)
        end

        @form_return_items = (@return_authorization.return_items + new_return_items).sort_by(&:inventory_unit_id)
      end

      def load_reimbursement_types
        @reimbursement_types = Spree::ReimbursementType.accessible_by(current_ability, :read).active
      end

      def load_return_authorization_reasons
        @reasons = Spree::ReturnAuthorizationReason.active.to_a
        # Only allow an inactive reason if it's already associated to the RMA
        if @return_authorization.reason && !@return_authorization.reason.active?
          @reasons << @return_authorization.reason
        end
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
spree_backend-3.2.9 app/controllers/spree/admin/return_authorizations_controller.rb
spree_backend-3.2.8 app/controllers/spree/admin/return_authorizations_controller.rb
spree_backend-3.2.7 app/controllers/spree/admin/return_authorizations_controller.rb
spree_backend-3.2.6 app/controllers/spree/admin/return_authorizations_controller.rb
spree_backend-3.2.5 app/controllers/spree/admin/return_authorizations_controller.rb
spree_backend-3.2.4 app/controllers/spree/admin/return_authorizations_controller.rb
spree_backend-3.2.3 app/controllers/spree/admin/return_authorizations_controller.rb
spree_backend-3.3.0.rc1 app/controllers/spree/admin/return_authorizations_controller.rb