ish_manager 0.1.8.460 → 0.1.8.462

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (39) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/stylesheets/ish_manager/application.scss +2 -0
  3. data/app/assets/stylesheets/ish_manager/products.scss +9 -0
  4. data/app/assets/stylesheets/ish_manager/subscriptions.scss +6 -0
  5. data/app/controllers/ish_manager/application_controller.rb +20 -0
  6. data/app/controllers/ish_manager/invoices_controller.rb +57 -5
  7. data/app/controllers/ish_manager/iro_option_gets_controller.rb +100 -57
  8. data/app/controllers/ish_manager/leadsets_controller.rb +3 -1
  9. data/app/controllers/ish_manager/prices_controller.rb +15 -0
  10. data/app/controllers/ish_manager/products_controller.rb +54 -26
  11. data/app/controllers/ish_manager/subscriptions_controller.rb +51 -22
  12. data/app/views/ish_manager/appliances/_index.haml +2 -1
  13. data/app/views/ish_manager/application/_alerts_notices.haml +12 -2
  14. data/app/views/ish_manager/application/_main_header_admin.haml +2 -1
  15. data/app/views/ish_manager/application/home.haml +8 -0
  16. data/app/views/ish_manager/galleries/index_titles.haml +1 -1
  17. data/app/views/ish_manager/invoices/_index_list.haml +6 -0
  18. data/app/views/ish_manager/invoices/_index_table.haml +20 -0
  19. data/app/views/ish_manager/invoices/index.haml +1 -29
  20. data/app/views/ish_manager/invoices/new_pdf.haml +4 -1
  21. data/app/views/ish_manager/invoices/new_stripe.haml +31 -28
  22. data/app/views/ish_manager/iro_watches/max_pain.haml +11 -15
  23. data/app/views/ish_manager/leads/show.haml +2 -1
  24. data/app/views/ish_manager/leadsets/show.haml +28 -6
  25. data/app/views/ish_manager/meetings/index.haml +1 -1
  26. data/app/views/ish_manager/payments/index.haml +1 -1
  27. data/app/views/ish_manager/products/_form.haml +4 -4
  28. data/app/views/ish_manager/products/_index_list.haml +10 -0
  29. data/app/views/ish_manager/products/_index_table.haml +20 -0
  30. data/app/views/ish_manager/products/index.haml +19 -15
  31. data/app/views/ish_manager/serverhosts/_index.haml +1 -2
  32. data/app/views/ish_manager/subscriptions/_form.haml +10 -2
  33. data/app/views/ish_manager/subscriptions/index.haml +15 -3
  34. data/app/views/ish_manager/subscriptions/new.haml +1 -1
  35. data/app/views/ish_manager/subscriptions/new_stripe.haml +4 -0
  36. data/app/views/ish_manager/subscriptions/new_wco.haml +4 -0
  37. data/app/views/ish_manager/subscriptions/show.haml +4 -0
  38. data/config/routes.rb +10 -5
  39. metadata +25 -2
@@ -1,7 +1,7 @@
1
1
 
2
2
  = render 'ish_manager/galleries/menu', count: @galleries.count
3
3
 
4
- %table#dataTable
4
+ %table.bordered.data-table
5
5
  %thead
6
6
  %tr
7
7
  %th Public?
@@ -0,0 +1,6 @@
1
+
2
+ .invoices--list
3
+ %ul
4
+ - invoices.each do |i|
5
+ %li
6
+ = i.inspect
@@ -0,0 +1,20 @@
1
+
2
+ .invoices--index-table
3
+ %table.bordered.data-table
4
+ %thead
5
+ %tr
6
+ %th
7
+ %th Email
8
+ %th Number
9
+ %th Amount
10
+ %th Amount Paid
11
+ %th Created At
12
+ %tbody
13
+ - invoices.each do |i|
14
+ %tr
15
+ %td= link_to "View", invoice_path( i )
16
+ %td= i.email
17
+ %td= i.number
18
+ %td= i.amount_cents
19
+ %td= i.paid_amount_cents
20
+ %td= i.created_at.to_s[0..10]
@@ -1,31 +1,3 @@
1
1
 
2
2
  .invoices-index.max-width
3
-
4
-
5
- %h5
6
- Invoices
7
- -# = link_to '[+]', new_invoice_path
8
-
9
- -# .row
10
- -# .col.s12.col.m6.col-md-offset-3
11
- -# = render 'form', :invoice => @new_invoice
12
- %hr
13
-
14
- %table#dataTable
15
- %thead
16
- %tr
17
- %th
18
- %th Email
19
- %th Number
20
- %th Amount
21
- %th Amount Paid
22
- %th Created At
23
- %tbody
24
- - @invoices.each do |i|
25
- %tr
26
- %td= link_to "View", invoice_path( i )
27
- %td= i.email
28
- %td= i.number
29
- %td= i.amount_cents
30
- %td= i.paid_amount_cents
31
- %td= i.created_at.to_s[0..10]
3
+ = render 'index_table', invoices: @invoices
@@ -3,9 +3,12 @@
3
3
 
4
4
  .row
5
5
  .col.s12.col.m6.col-md-offset-3
6
+
6
7
  %h5 New PDF Invoice for `#{link_to @leadset&.name, leadset_path(@leadset)}`:
7
8
  = form_for @new_invoice, as: :invoice, url: create_invoice_pdf_path do |f|
8
- = f.text_field :email
9
+ .input-field
10
+ %label Email
11
+ = f.text_field :email
9
12
  .input-field
10
13
  invoice month, description
11
14
  .input-field
@@ -1,7 +1,7 @@
1
1
 
2
-
3
- - url = invoice.persisted? ? invoice_path( invoice.id ) : invoices_path
4
2
  - invoice = @new_invoice
3
+ - url = invoice.persisted? ? invoice_path( invoice.id ) : create_invoice_stripe_path
4
+
5
5
 
6
6
  .invoices-new.max-width
7
7
 
@@ -9,30 +9,33 @@
9
9
  .col.s12.col.m6.col-md-offset-3
10
10
  %h5 New Stripe Invoice for `#{link_to @leadset&.name, leadset_path(@leadset)}`:
11
11
 
12
- = form_for invoice, :as => :invoice, :url => url do |f|
13
- = hidden_field_tag 'invoice[leadset_id]', @leadset.id
14
-
15
- .input-field
16
- %label Email
17
- = @leadset.email
18
- -# - if @leadset.email
19
- -# = f.text_field :email, value: @leadset.email
20
- -# - elsif @leadset.employees.length == 1
21
- -# = f.text_field :email, value: @leadset.employees[0].email
22
- -# - else
23
- -# = f.select :email, options_for_select([[nil,nil]] + @leadset.employees.map { |i| [ i.email, i.email ] } )
24
-
25
- .input-field
26
- %label item
27
- = select_tag 'invoice[items][]', options_for_select( @products_list )
28
-
29
- -# .input-field
30
- -# %label number
31
- -# = f.number_field :number
32
-
33
- -# .input-field
34
- -# %label Description
35
- -# = f.text_area :description
36
-
37
- = f.submit 'Save'
12
+ = form_for invoice, :as => :invoice, :url => url do |f|
13
+ = hidden_field_tag 'invoice[leadset_id]', @leadset.id
14
+
15
+ .input-field
16
+ %label Email
17
+ = @leadset.email
18
+ -# - if @leadset.email
19
+ -# = f.text_field :email, value: @leadset.email
20
+ -# - elsif @leadset.employees.length == 1
21
+ -# = f.text_field :email, value: @leadset.employees[0].email
22
+ -# - else
23
+ -# = f.select :email, options_for_select([[nil,nil]] + @leadset.employees.map { |i| [ i.email, i.email ] } )
24
+
25
+ .input-field
26
+ %label item
27
+ = select_tag 'invoice[items][][product_id]', options_for_select( @products_list )
28
+ .input-field
29
+ %label quantity
30
+ = number_field_tag 'invoice[items][][quantity]'
31
+
32
+ -# .input-field
33
+ -# %label number
34
+ -# = f.number_field :number
35
+
36
+ -# .input-field
37
+ -# %label Description
38
+ -# = f.text_area :description
39
+
40
+ = f.submit 'Save'
38
41
 
@@ -3,21 +3,17 @@
3
3
  .header
4
4
  %h2.title max pain for #{@ticker} on #{params[:date]}
5
5
 
6
- -# = @all_items.inspect
7
-
6
+ - flag = false
8
7
  %ul
9
- - flag = false
10
- - @calls_items.each do |_t|
11
- - item = @all_items[_t[:strikePrice]]
12
- - if !flag && item[:puts_subtotal] < item[:calls_subtotal]
13
- %hr
14
- - flag = true
8
+ - @all_items.each do |strike_price, item|
9
+ - item.delete( :strike_price )
15
10
  %li
16
- -# = item.inspect
17
- = item[:strikePrice]
18
- %ul
19
- %li calls oi: #{item[:calls_oi]}
20
- %li Call pain: #{number_to_currency item[:calls_subtotal], precision: 0}
21
- %li puts oi: #{item[:puts_oi]}
22
- %li Put pain: #{number_to_currency item[:puts_subtotal], precision: 0}
11
+ - if item[:call_max_pain] > item[:put_max_pain] && !flag
12
+ - flag = true
13
+ %hr
14
+
15
+ <b>#{strike_price}</b>
16
+ = item.inspect
17
+
18
+ -# %li Call pain: #{number_to_currency item[:calls_subtotal], precision: 0}
23
19
 
@@ -62,7 +62,8 @@
62
62
  %hr
63
63
  %h5
64
64
  Invoices (?)
65
- = link_to '[+]', new_invoice_path({ leadset_id: @lead.m3_leadset_id })
65
+ = link_to '[+stripe]', new_invoice_stripe_path({ leadset_id: @lead.m3_leadset_id })
66
+ = link_to '[+pdf]', new_invoice_pdf_path({ leadset_id: @lead.m3_leadset_id })
66
67
  %ul
67
68
  %li None?
68
69
 
@@ -9,14 +9,11 @@
9
9
  %li <b>Email:</b> #{@leadset.email}
10
10
  %li <b>company_url</b>: #{@leadset.company_url}
11
11
  %li <b>customer_id</b>: #{@leadset.customer_id}
12
- %li
13
- = link_to invoices_path({ leadset_id: @leadset.id }) do
14
- Invoices
15
- (#{@leadset.invoices.length})
16
- = link_to '[+stripe]', new_invoice_stripe_path({ leadset_id: @leadset.id })
17
- = link_to '[+pdf]', new_invoice_pdf_path({ leadset_id: @leadset.id })
18
12
 
13
+
14
+ %h5.collapse-expand#leads Leads
19
15
  = render 'ish_manager/leads/index', leads: @employees
16
+ %hr
20
17
 
21
18
  .row
22
19
  .col-md-6
@@ -24,3 +21,28 @@
24
21
 
25
22
  .col-md-6
26
23
  = render 'ish_manager/appliances/index', appliances: @leadset.appliances
24
+
25
+ .row
26
+ .col-md-6
27
+ %h5.collapse-expand#invoicesList
28
+ Invoices (#{@leadset.invoices.length})
29
+ = link_to '[+stripe]', new_invoice_stripe_path({ leadset_id: @leadset.id })
30
+ = link_to '[+pdf]', new_invoice_pdf_path({ leadset_id: @leadset.id })
31
+ = render 'ish_manager/invoices/index_list', invoices: @invoices
32
+ %hr
33
+
34
+ .col-md-6
35
+ %h5.collapse-expand#subscriptionsList
36
+ Subscriptions (#{@subscriptions.length})
37
+ = link_to '[+wco]', new_wco_subscription_path({ customer_id: @leadset.customer_id })
38
+ %table.bordered
39
+ %thead
40
+ %tr
41
+ %th Name
42
+ %th Price
43
+ - @subscriptions.each do |i|
44
+ %tr
45
+ %td= i.product.name
46
+ %td= i.price
47
+ %hr
48
+
@@ -1,7 +1,7 @@
1
1
 
2
2
  .manager-meeetings-index
3
3
 
4
- %table#dataTable.display.compact
4
+ %table.data-table.display.compact
5
5
  %thead
6
6
  %tr
7
7
  %th Invitee
@@ -5,7 +5,7 @@
5
5
 
6
6
  %h1 Payments
7
7
 
8
- %table#dataTable
8
+ %table.bordered.data-table
9
9
  %thead
10
10
  %tr
11
11
  %th Amount
@@ -2,19 +2,19 @@
2
2
  - url = product.new_record? ? products_path : product_path( product )
3
3
 
4
4
  .products--form
5
- = form_for product, as: :product, url: url do |f|
5
+ = form_for product, url: url do |f|
6
6
 
7
7
  .form-field
8
8
  %label Name
9
- = f.text_field :name
9
+ = text_field_tag 'product[name]'
10
10
 
11
11
  .form-field
12
12
  %label Price in cents
13
- = f.text_field :price_cents
13
+ = text_field_tag 'price[amount_cents]'
14
14
 
15
15
  .form-field
16
16
  %label Recurring?
17
- = f.select :interval, options_for_select(Wco::Product::INTERVALS)
17
+ = select_tag 'price[interval]', options_for_select(Wco::Price::INTERVALS)
18
18
 
19
19
  -# .form-field
20
20
  -# %label Stripe product_id
@@ -0,0 +1,10 @@
1
+
2
+ %ol
3
+ - products.each do |product|
4
+ %li
5
+ = link_to '[~]', edit_product_path( product )
6
+ #{product.name} // $#{product.price_cents.to_f/100}/#{product.interval.presence || 'onetime'}
7
+ - if product.product_id
8
+ .ml-5 <b>product_id:</b> #{product.product_id}
9
+ - if product.price_id
10
+ .ml-5 <b>price_id:</b> #{product.price_id}
@@ -0,0 +1,20 @@
1
+
2
+ .products--index-table
3
+ %table.bordered.data-table
4
+ %thead
5
+ %tr
6
+ %th.name Name
7
+ %th.prices Prices
8
+
9
+ - products.each do |product|
10
+ %tr
11
+ %td.p-2
12
+ = link_to '[~]', edit_product_path( product )
13
+ = product.name
14
+ .gray= product.product_id
15
+ %td.p-2
16
+ %ul
17
+ - product.prices.each do |price|
18
+ %li
19
+ $#{ price.amount_cents.to_f/100 } / #{price.interval}
20
+ .gray= price.price_id
@@ -1,7 +1,12 @@
1
1
 
2
2
  .products-index.max-width
3
3
 
4
- %h5
4
+ .a
5
+ %h5 New Product:
6
+ = render 'ish_manager/products/form', product: Wco::Product.new
7
+ %hr
8
+
9
+ %h5.collapse-expand#stripeProducts
5
10
  Stripe Products (#{@stripe_products.length}):
6
11
  -# = link_to '[+]', new_product_path
7
12
  %ol
@@ -10,24 +15,23 @@
10
15
  = link_to '[~]', edit_product_path( product.id )
11
16
  .inline-block= button_to '[x]', product_path( product.id ), :method => :delete, :data => { :confirm => 'Are you sure?' }
12
17
  %span.gray= product.id
13
- = product.name
18
+ - if product[:wco_product]
19
+ = link_to product.name, product_path( product )
20
+ - else
21
+ = product.name
14
22
  %ul
15
23
  - product[:prices].each do |price_id, price|
16
24
  %li
17
25
  %span.gray= price.id
18
- $#{price[:unit_amount].to_f/100}/#{(price[:recurring]||{})[:interval]||'onetime'}
19
- -# = price.inspect
20
-
26
+ - price_str = "$#{ price[:unit_amount].to_f/100 }/#{ (price[:recurring]||{})[:interval]||'onetime' }"
27
+ - if @wco_prices_hash[price.id]
28
+ = link_to price_str, price_path( @wco_prices_hash[price.id] )
29
+ - else
30
+ = price_str
21
31
  %hr
22
32
 
23
- %h5 New Product:
24
- = render 'ish_manager/products/form', product: Wco::Product.new
33
+ %h5.collapse-expand#wcoProducts
34
+ Wco::Products (#{@wco_products.length}):
35
+ = render 'index_table', products: @wco_products
36
+ -# = render 'index_list', products: @wco_products
25
37
 
26
- %hr
27
- %h5 Wco::Product's (#{@products.length})
28
- %ul
29
- - @products.each do |product|
30
- %li
31
- = link_to '[~]', edit_product_path( product )
32
- #{product.name} // $#{product.price_cents.to_f/100}/#{product.interval.presence || 'onetime'}
33
- [ #{product.product_id}, #{product.price_id} ]
@@ -1,7 +1,6 @@
1
1
 
2
2
  .serverhosts--index
3
3
  %h5 Serverhosts (#{serverhosts.length})
4
- %hr
5
4
 
6
5
  %ul.items
7
6
  - serverhosts.each do |i|
@@ -18,4 +17,4 @@
18
17
  %li.nginx_root <b>nginx_root:</b> #{i.nginx_root}
19
18
  %li.appliances
20
19
  = render 'ish_manager/appliances/index', appliances: i.appliances
21
-
20
+ %hr
@@ -8,9 +8,17 @@
8
8
  %label Product (price):
9
9
  = f.select :price_id, options_for_select(@price_ids_list, selected: subscription.price_id), {}, class: :select2
10
10
 
11
+ .input-group
12
+ %label Quantity:
13
+ = f.number_field :quantity
14
+
11
15
  .input-group
12
16
  %label Customer/Leadset
13
- = f.select :customer_id, options_for_select(@customer_ids_list, selected: subscription.customer_id), {}, class: :select2
17
+ = f.select :customer_id, options_for_select(@customer_ids_list, selected: params[:customer_id] || subscription.customer_id), {}, class: :select2
18
+
19
+ .input-group
20
+ %label Create a stripe subscription?
21
+ = check_box_tag :is_stripe
14
22
 
15
23
  .actions
16
- = f.submit 'Submit'
24
+ = f.submit 'Submit', data: { confirm: 'Are you sure?' }
@@ -1,7 +1,7 @@
1
1
 
2
2
  .container.subscriptions-index.padded
3
+ %p.collapse-expand#rowStripe Stripe
3
4
  .row
4
-
5
5
  .col-md-6
6
6
  %h5 Stripe Customers
7
7
  %ul
@@ -16,11 +16,10 @@
16
16
  - @stripe_subscriptions.each do |sub|
17
17
  - if sub.customer == customer.id
18
18
  %li= sub.items.data[0].plan.product
19
-
20
19
  .col-md-6
21
20
  %h5
22
21
  Stripe Subscriptions
23
- = link_to '[+]', new_subscription_path
22
+ = link_to '[+]', new_stripe_subscription_path
24
23
  %ul
25
24
  - @stripe_subscriptions.each do |sub|
26
25
  %li
@@ -33,4 +32,17 @@
33
32
  %li leadsets: #{ @customers[sub[:customer]][:leadsets]&.map { |i| "#{i[:id]} - #{i[:email]}" } }
34
33
  - if @customers[sub[:customer]] && @customers[sub[:customer]][:profiles]
35
34
  %li profiles: #{ @customers[sub[:customer]][:profiles]&.map { |i| "#{i[:id]} - #{i[:email]}" } }
35
+ %hr
36
+
37
+ %p.collapse-expand#rowWco WasyaCo
38
+ .row
39
+ .col-md-6
40
+ Customers (leadsets)
41
+ .col-md-6
42
+ %h5
43
+ Subscriptions
44
+ = link_to '[+]', new_wco_subscription_path
45
+ %ul
46
+ - @wco_subscriptions.each do |item|
47
+ %li= item.inspect
36
48
 
@@ -1,4 +1,4 @@
1
1
 
2
2
  .subscriptions-new.max-width
3
- %h5 New Subscription
3
+ %h5 New ^^ generic ^^ Subscription
4
4
  = render 'form', subscription: @subscription
@@ -0,0 +1,4 @@
1
+
2
+ .subscriptions-new.max-width
3
+ %h5 New Stripe Subscription
4
+ = render 'form', subscription: @subscription
@@ -0,0 +1,4 @@
1
+
2
+ .subscriptions-new.max-width
3
+ %h5 New Wco Subscription
4
+ = render 'form', subscription: @subscription
@@ -1,4 +1,8 @@
1
1
 
2
2
  .subscriptions-show.max-width
3
3
  %h5 Subscription
4
+ %ul
5
+ %li
6
+ <b>Leadset:</b>
7
+ = link_to @subscription.leadset.company_url, leadset_path( @subscription.leadset )
4
8
  = @subscription.inspect
data/config/routes.rb CHANGED
@@ -25,9 +25,10 @@ IshManager::Engine.routes.draw do
25
25
 
26
26
  get 'image_assets', to: 'image_assets#index', as: :image_assets
27
27
 
28
- post 'invoices/create-pdf', to: 'invoices#create_pdf', as: :create_invoice_pdf
29
- get 'invoices/new_pdf', to: 'invoices#new_pdf', as: :new_invoice_pdf
30
- get 'invoices/new_stripe', to: 'invoices#new_stripe', as: :new_invoice_stripe
28
+ post 'invoices/create-pdf', to: 'invoices#create_pdf', as: :create_invoice_pdf
29
+ post 'invoices/create-stripe', to: 'invoices#create_stripe', as: :create_invoice_stripe
30
+ get 'invoices/new_pdf', to: 'invoices#new_pdf', as: :new_invoice_pdf
31
+ get 'invoices/new_stripe', to: 'invoices#new_stripe', as: :new_invoice_stripe
31
32
  resources :invoices
32
33
 
33
34
  get 'iro_positins/roll_prep/:id', to: 'iro_purses#roll_prep', as: :iro_roll_prep
@@ -37,8 +38,8 @@ IshManager::Engine.routes.draw do
37
38
  resources :iro_option_gets
38
39
 
39
40
  patch 'iro_purses/:id/show', to: 'iro_purses#update'
40
- get 'iro_purses/:id/edit', to: 'iro_purses#edit', as: :edit_iro_purse
41
- get 'iro_purses/:id/:kind', to: 'iro_purses#show', as: :iro_purse, defaults: { kind: 'show' } # kind: show_gameui
41
+ get 'iro_purses/:id/edit', to: 'iro_purses#edit', as: :edit_iro_purse
42
+ get 'iro_purses/:id/:kind', to: 'iro_purses#show', as: :iro_purse, defaults: { kind: 'show' } # kind: show_gameui
42
43
  resources :iro_purses
43
44
 
44
45
  resources :iro_strategies
@@ -121,12 +122,16 @@ IshManager::Engine.routes.draw do
121
122
 
122
123
  resources :photos
123
124
  resources :payments
125
+ resources :prices
124
126
  resources :products
125
127
 
126
128
  resources :reports
127
129
 
128
130
  resources :serverhosts
129
131
  resources :scheduled_email_actions
132
+
133
+ get 'subscriptions/new_stripe', to: 'subscriptions#new_stripe', as: :new_stripe_subscription
134
+ get 'subscriptions/new_wco', to: 'subscriptions#new_wco', as: :new_wco_subscription
130
135
  resources :subscriptions
131
136
 
132
137
  resources :user_profiles do
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ish_manager
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.8.460
4
+ version: 0.1.8.462
5
5
  platform: ruby
6
6
  authors:
7
7
  - piousbox
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-09-01 00:00:00.000000000 Z
11
+ date: 2023-09-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -234,6 +234,20 @@ dependencies:
234
234
  - - "~>"
235
235
  - !ruby/object:Gem::Version
236
236
  version: 2.4.0
237
+ - !ruby/object:Gem::Dependency
238
+ name: prawn-table
239
+ requirement: !ruby/object:Gem::Requirement
240
+ requirements:
241
+ - - "~>"
242
+ - !ruby/object:Gem::Version
243
+ version: 0.2.1
244
+ type: :runtime
245
+ prerelease: false
246
+ version_requirements: !ruby/object:Gem::Requirement
247
+ requirements:
248
+ - - "~>"
249
+ - !ruby/object:Gem::Version
250
+ version: 0.2.1
237
251
  description: Description of IshManager.
238
252
  email:
239
253
  - piousbox@gmail.com
@@ -456,7 +470,9 @@ files:
456
470
  - app/assets/stylesheets/ish_manager/office.scss
457
471
  - app/assets/stylesheets/ish_manager/pagination.scss
458
472
  - app/assets/stylesheets/ish_manager/photos.scss
473
+ - app/assets/stylesheets/ish_manager/products.scss
459
474
  - app/assets/stylesheets/ish_manager/scheduled_email_actions.scss
475
+ - app/assets/stylesheets/ish_manager/subscriptions.scss
460
476
  - app/assets/stylesheets/ish_manager/tags.scss
461
477
  - app/assets/stylesheets/ish_manager/trash/pagination.scss
462
478
  - app/assets/stylesheets/ish_manager/user_profiles.scss
@@ -495,6 +511,7 @@ files:
495
511
  - app/controllers/ish_manager/office_actions_controller.rb
496
512
  - app/controllers/ish_manager/payments_controller.rb
497
513
  - app/controllers/ish_manager/photos_controller.rb
514
+ - app/controllers/ish_manager/prices_controller.rb
498
515
  - app/controllers/ish_manager/products_controller.rb
499
516
  - app/controllers/ish_manager/reports_controller.rb
500
517
  - app/controllers/ish_manager/scheduled_email_actions_controller.rb
@@ -665,6 +682,8 @@ files:
665
682
  - app/views/ish_manager/galleries/show.haml
666
683
  - app/views/ish_manager/image_assets/index.haml
667
684
  - app/views/ish_manager/invoices/_form.haml-trash
685
+ - app/views/ish_manager/invoices/_index_list.haml
686
+ - app/views/ish_manager/invoices/_index_table.haml
668
687
  - app/views/ish_manager/invoices/index.haml
669
688
  - app/views/ish_manager/invoices/new_pdf.haml
670
689
  - app/views/ish_manager/invoices/new_stripe.haml
@@ -758,6 +777,8 @@ files:
758
777
  - app/views/ish_manager/photos/show.haml
759
778
  - app/views/ish_manager/photos/without_gallery.haml
760
779
  - app/views/ish_manager/products/_form.haml
780
+ - app/views/ish_manager/products/_index_list.haml
781
+ - app/views/ish_manager/products/_index_table.haml
761
782
  - app/views/ish_manager/products/edit.haml
762
783
  - app/views/ish_manager/products/index.haml
763
784
  - app/views/ish_manager/products/show.haml
@@ -782,6 +803,8 @@ files:
782
803
  - app/views/ish_manager/subscriptions/_form.haml
783
804
  - app/views/ish_manager/subscriptions/index.haml
784
805
  - app/views/ish_manager/subscriptions/new.haml
806
+ - app/views/ish_manager/subscriptions/new_stripe.haml
807
+ - app/views/ish_manager/subscriptions/new_wco.haml
785
808
  - app/views/ish_manager/subscriptions/show.haml
786
809
  - app/views/ish_manager/trash/email_campaigns-trash/_form.haml
787
810
  - app/views/ish_manager/trash/email_campaigns-trash/edit.haml