diff options
author | jessib <jessib@leap.se> | 2013-06-10 10:25:37 -0700 |
---|---|---|
committer | Azul <azul@leap.se> | 2013-07-17 10:47:14 +0200 |
commit | 87dc4f9d11af4610f534d57d5e51fabca9bb328a (patch) | |
tree | afe5f40cc57fba1b54b539c3e8bc540bd0716241 /billing/app/views/customers | |
parent | c4379dcfdc8b27fae15eea5c4ba15b8906e3bb76 (diff) |
Back to singular-customer controller, in hopes that would help some confusions.
Diffstat (limited to 'billing/app/views/customers')
-rw-r--r-- | billing/app/views/customers/_transaction.html.haml | 0 | ||||
-rw-r--r-- | billing/app/views/customers/confirm.html.haml | 14 | ||||
-rw-r--r-- | billing/app/views/customers/edit.html.haml | 22 | ||||
-rw-r--r-- | billing/app/views/customers/new.html.haml | 24 | ||||
-rw-r--r-- | billing/app/views/customers/show.html.haml | 14 |
5 files changed, 0 insertions, 74 deletions
diff --git a/billing/app/views/customers/_transaction.html.haml b/billing/app/views/customers/_transaction.html.haml deleted file mode 100644 index e69de29..0000000 --- a/billing/app/views/customers/_transaction.html.haml +++ /dev/null diff --git a/billing/app/views/customers/confirm.html.haml b/billing/app/views/customers/confirm.html.haml deleted file mode 100644 index 975d1ad..0000000 --- a/billing/app/views/customers/confirm.html.haml +++ /dev/null @@ -1,14 +0,0 @@ -%h1 Payment Info Confirmation -%p Your payment information was successfully saved. -%dl - %dt First Name - %dd= @result.customer.first_name - %dt Last Name - %dd= @result.customer.last_name - %dt Phone - %dd= @result.customer.phone - %dt Credit Card - - @result.customer.credit_cards.each do |cc| - %dd= cc.masked_number -- customer = Customer.find_by_user_id(current_user.id) -= link_to 'View Customer Info', customer_path(customer.braintree_customer_id), :class=> :btn
\ No newline at end of file diff --git a/billing/app/views/customers/edit.html.haml b/billing/app/views/customers/edit.html.haml deleted file mode 100644 index bea3211..0000000 --- a/billing/app/views/customers/edit.html.haml +++ /dev/null @@ -1,22 +0,0 @@ -- if @result - #total-errors{:style => "color:red;"} - = h(@result.errors.size) - error(s) -= form_for :customer, :url => Braintree::TransparentRedirect.url, :params => @result && @result.params[:customer],:existing => @braintree_data, :builder => BraintreeFormHelper::BraintreeFormBuilder, :errors => @result && @result.errors.for(:customer) do |f| | - = field_set_tag "Customer" do - %dl - %dt= f.label :first_name, 'First Name' - %dd= f.text_field :first_name - %dt= f.label :last_name, 'Last Name' - %dd= f.text_field :last_name - %dt= f.label :phone, 'Phone' - %dd= f.text_field :phone - - if @default_cc - = # todo, as they will need a credit card, so not sure about conditional? - %dt Stored Credit Card - %dd - = @default_cc.masked_number - = link_to 'Change credit card', edit_credit_card_info_path(:id => @default_cc.token), :class => :btn - = hidden_field_tag :tr_data, @tr_data - = f.submit 'Save Customer Info', :class => :btn -= link_to 'Cancel', customer_path(@braintree_data.id), :class=> :btn
\ No newline at end of file diff --git a/billing/app/views/customers/new.html.haml b/billing/app/views/customers/new.html.haml deleted file mode 100644 index 2ff8229..0000000 --- a/billing/app/views/customers/new.html.haml +++ /dev/null @@ -1,24 +0,0 @@ -- if @result - #total-errors{:style => "color:red;"} - = h(@result.errors.size) - error(s) -= form_for :customer, :url => Braintree::TransparentRedirect.url, :params => @result && @result.params[:customer], :builder => BraintreeFormHelper::BraintreeFormBuilder, :errors => @result && @result.errors.for(:customer) do |f| - = field_set_tag "Customer" do - %dl - %dt= f.label :first_name, 'First Name' - %dd= f.text_field :first_name - %dt= f.label :last_name, 'Last Name' - %dd= f.text_field :last_name - %dt= f.label :phone, 'Phone' - %dd= f.text_field :phone - = field_set_tag "Credit Card" do - - f.fields_for :credit_card do |cc| - %dl - %dt= cc.label :number, 'Number' - %dd= cc.text_field :number - %dt= cc.label :expiration_date, 'Exipration Date (MM/YY)' - %dd= cc.text_field :expiration_date - %dt= cc.label :cvv, 'CVV' - %dd= cc.text_field :cvv - = hidden_field_tag :tr_data, @tr_data - = f.submit 'Save Payment Info'
\ No newline at end of file diff --git a/billing/app/views/customers/show.html.haml b/billing/app/views/customers/show.html.haml deleted file mode 100644 index d385d98..0000000 --- a/billing/app/views/customers/show.html.haml +++ /dev/null @@ -1,14 +0,0 @@ -= render :partial => 'payments/customer_data' -= link_to 'Make Payment', new_payment_path, :class => :btn -%h3 Last three transactions -- counter = 0 -= # these will be ordered with most recently created first, per http://stackoverflow.com/questions/16425475/ -- @braintree_data.transactions.each do |t| - - break if counter > 2 # not ruby-like, but object is a Braintree::ResourceCollection so limited methods available - = render :partial => "payments/transaction_details", :locals => {:transaction => t} - - counter += 1 -= link_to 'Transaction History', payments_path -- if @active_subscription - %h3 Active Subscription - = render :partial => "subscriptions/subscription_details", :locals => {:subscription => @active_subscription} - = link_to 'All subscriptions', subscriptions_path
\ No newline at end of file |