summaryrefslogtreecommitdiff
path: root/billing/app/views/customer
diff options
context:
space:
mode:
authorjessib <jessib@leap.se>2013-04-30 13:54:46 -0700
committerAzul <azul@leap.se>2013-07-17 10:47:13 +0200
commit5442da999c8398b1e84162996f1e944c6496b095 (patch)
treece4bca037d95d98e8cdbb6aa1e867159f6eab0fa /billing/app/views/customer
parent1e557522fafc26829b8e9a873da28b7082d4df42 (diff)
Changing customers route to be plural.
Diffstat (limited to 'billing/app/views/customer')
-rw-r--r--billing/app/views/customer/_subscription.html.haml1
-rw-r--r--billing/app/views/customer/_transaction.html.haml15
-rw-r--r--billing/app/views/customer/confirm.html.haml12
-rw-r--r--billing/app/views/customer/edit.html.haml22
-rw-r--r--billing/app/views/customer/new.html.haml24
-rw-r--r--billing/app/views/customer/show.html.haml8
6 files changed, 0 insertions, 82 deletions
diff --git a/billing/app/views/customer/_subscription.html.haml b/billing/app/views/customer/_subscription.html.haml
deleted file mode 100644
index a57f6e9..0000000
--- a/billing/app/views/customer/_subscription.html.haml
+++ /dev/null
@@ -1 +0,0 @@
-= render :partial => "subscriptions/subscription_details", :locals => {:subscription => subscription}
diff --git a/billing/app/views/customer/_transaction.html.haml b/billing/app/views/customer/_transaction.html.haml
deleted file mode 100644
index 53483d9..0000000
--- a/billing/app/views/customer/_transaction.html.haml
+++ /dev/null
@@ -1,15 +0,0 @@
-%p
- = transaction.id
- Type:
- = transaction.type
- Amount:
- = number_to_currency(transaction.amount)
- Status:
- = transaction.status
- Date
- = transaction.created_at
- - if sub_start = transaction.subscription_details.billing_period_start_date
- From subscription which started
- = sub_start
- - else
- Not paid as part of subscription \ No newline at end of file
diff --git a/billing/app/views/customer/confirm.html.haml b/billing/app/views/customer/confirm.html.haml
deleted file mode 100644
index cfe127e..0000000
--- a/billing/app/views/customer/confirm.html.haml
+++ /dev/null
@@ -1,12 +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 \ No newline at end of file
diff --git a/billing/app/views/customer/edit.html.haml b/billing/app/views/customer/edit.html.haml
deleted file mode 100644
index bea3211..0000000
--- a/billing/app/views/customer/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/customer/new.html.haml b/billing/app/views/customer/new.html.haml
deleted file mode 100644
index 2ff8229..0000000
--- a/billing/app/views/customer/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/customer/show.html.haml b/billing/app/views/customer/show.html.haml
deleted file mode 100644
index 7416682..0000000
--- a/billing/app/views/customer/show.html.haml
+++ /dev/null
@@ -1,8 +0,0 @@
-= render :partial => 'payments/customer_data'
-= link_to 'Make Payment', new_payment_path, :class => :btn
-%h3 Transaction History
-= render(:partial => "transaction", :collection => @transactions) # show subset with link to see more
-- if @subscriptions.any?
- %h3 Active Subscriptions
- = # todo: won't really have multiple subscriptions
- = render(:partial => "subscription", :collection => @subscriptions) \ No newline at end of file