Sha256: 7779937fabce93c77e91000df05f728a2c70d677ddd5cf685f33a3e9b538697d
Contents?: true
Size: 1.92 KB
Versions: 7
Compression:
Stored size: 1.92 KB
Contents
module Spree module Admin class PaymentMethodsController < ResourceController skip_before_filter :load_resource, :only => [:create] before_filter :load_data def create @payment_method = params[:payment_method].delete(:type).constantize.new(params[:payment_method]) @object = @payment_method invoke_callbacks(:create, :before) if @payment_method.save invoke_callbacks(:create, :after) flash.notice = I18n.t(:successfully_created, :resource => I18n.t(:payment_method)) respond_with(@payment_method, :location => edit_admin_payment_method_path(@payment_method)) else invoke_callbacks(:create, :fails) respond_with(@payment_method) end end def update invoke_callbacks(:update, :before) payment_method_type = params[:payment_method].delete(:type) if @payment_method['type'].to_s != payment_method_type @payment_method.update_column(:type, payment_method_type) @payment_method = PaymentMethod.find(params[:id]) end payment_method_params = params[ActiveModel::Naming.param_key(@payment_method)] || {} attributes = params[:payment_method].merge(payment_method_params) attributes.each do |k,v| if k.include?("password") && attributes[k].blank? attributes.delete(k) end end if @payment_method.update_attributes(attributes) invoke_callbacks(:update, :after) flash.notice = I18n.t(:successfully_updated, :resource => I18n.t(:payment_method)) respond_with(@payment_method, :location => edit_admin_payment_method_path(@payment_method)) else invoke_callbacks(:update, :fails) respond_with(@payment_method) end end private def load_data @providers = Gateway.providers.sort{|p1, p2| p1.name <=> p2.name } end end end end
Version data entries
7 entries across 7 versions & 1 rubygems