Sha256: cea305eee9c2230afa21434a9cef5fa40f6d49449f83bf85db35443d282812b2
Contents?: true
Size: 1.62 KB
Versions: 12
Compression:
Stored size: 1.62 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_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_reasons @reasons = Spree::ReturnReason.reasons_for_return_items(@return_authorization.return_items) end end end end
Version data entries
12 entries across 12 versions & 1 rubygems