solidus_backend 3.1.6 → 3.1.8

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8dc01e3b01c3876e3d6f6ba3868989c62f93183e596b459ed0e5684ac9675b80
4
- data.tar.gz: 5e331223ae29935f1faa971e3ed5576ce31e9f351e186132c9015fa6618c2457
3
+ metadata.gz: dff6dcb76e2419914cf6309bd6bc6fb3433cd757e08c43771724bd3d39bee162
4
+ data.tar.gz: 65b5260f7bc8c712e6494dc9b362cc133e22f4497cd4753f294856205284d0e5
5
5
  SHA512:
6
- metadata.gz: 7f94b557b15f599f621aa4a1258a605448b6470c4815757e2f816211921e32fe75f31e80b4d92ca5e67b51c9970e2170fb7f87399099de752b7d02179827da48
7
- data.tar.gz: fb27ed84fc99b2070b856195f81622ff4c1c64bb70f9d8fc7b3bf018fb4ff717f12d6d9e9eb8c927a39b14fc5a7f45e428ac250ecd1f3847b53322692a2343a5
6
+ metadata.gz: fc109ecd2a95f99968e4719f11fe8f70351ac1d70d9dbf73d96c3662b026ebf2df91a85c43c01980b1ce062ceefbbbf1c9f6e3da13a7e8cb4fd46d84a73c1361
7
+ data.tar.gz: 6ed6a6b85e3f135d17ad3f2743b9ce26b624f6f709ff4ee91ebbb26226a8f39fbe82fcb61f972043a308823aa2273cbf692ae26ba83268cae7f2416f488281e9
@@ -92,7 +92,7 @@ module Spree
92
92
 
93
93
  @search = super.ransack(params[:q])
94
94
  @collection = @search.result.includes(:spree_roles)
95
- @collection = @collection.includes(:spree_orders)
95
+ @collection = @collection.includes(:orders)
96
96
  @collection = @collection.page(params[:page]).per(Spree::Config[:admin_products_per_page])
97
97
  end
98
98
 
@@ -121,7 +121,7 @@ module Spree
121
121
  # handling raise from Spree::Admin::ResourceController#destroy
122
122
  def user_destroy_with_orders_error
123
123
  invoke_callbacks(:destroy, :fails)
124
- render status: :forbidden, text: t('spree.error_user_destroy_with_orders')
124
+ render status: :forbidden, plain: t("spree.error_user_destroy_with_orders")
125
125
  end
126
126
 
127
127
  def sign_in_if_change_own_password
@@ -62,8 +62,8 @@
62
62
  <%= f.field_container :cart_tax_country_iso do %>
63
63
  <%= f.label :cart_tax_country_iso %>
64
64
  <%= f.field_hint :cart_tax_country_iso %>
65
- <%= f.select :cart_tax_country_iso,
66
- Spree::Country.all.map { |c| [c.name, c.iso] },
65
+ <%= f.collection_select :cart_tax_country_iso,
66
+ available_countries(restrict_to_zone: nil), :iso, :name,
67
67
  { include_blank: t(".no_cart_tax_country") },
68
68
  { class: "custom-select fullwidth" } %>
69
69
  <%= f.error_message_on :cart_tax_country_iso %>
@@ -40,6 +40,7 @@
40
40
  <%= label_tag nil, plural_resource_name(Spree::StockLocation) %>
41
41
  <ul>
42
42
  <% if can?(:manage, Spree::UserStockLocation) %>
43
+ <%= hidden_field_tag('user[stock_location_ids][]', nil) %>
43
44
  <% @stock_locations.each do |stock_location| %>
44
45
  <li>
45
46
  <label>
@@ -89,7 +89,7 @@
89
89
  <% if can?(:edit, user) %>
90
90
  <%= link_to_edit user, no_text: true %>
91
91
  <% end %>
92
- <% if can?(:destroy, user) && user.orders.count.zero? %>
92
+ <% if can?(:destroy, user) && user.can_be_deleted? %>
93
93
  <%= link_to_delete user, no_text: true %>
94
94
  <% end %>
95
95
  </td>
@@ -3,10 +3,9 @@
3
3
  <table class="index sortable" data-sortable-link="<%= update_positions_admin_product_variants_path(@product) %>">
4
4
  <colgroup>
5
5
  <col style="width: 5%" />
6
- <col style="width: 25%" />
7
- <col style="width: 20%" />
6
+ <col style="width: 35%" />
8
7
  <col style="width: 20%" />
9
- <col style="width: 15%" />
8
+ <col style="width: 25%" />
10
9
  <col style="width: 15%" />
11
10
  </colgroup>
12
11
  <thead data-hook="variants_header">
@@ -40,9 +39,11 @@
40
39
  </td>
41
40
  </tr>
42
41
  <% end %>
43
- <% if variants.empty? %>
44
- <tr><td colspan="4"><%= t('spree.none') %></td></tr>
45
- <% end %>
46
42
  </tbody>
47
43
  </table>
44
+ <% if variants.empty? %>
45
+ <div class="alert alert-warning">
46
+ <%= t('.no_variants_found', term: params[:variant_search_term]) %>
47
+ </div>
48
+ <% end %>
48
49
  <%= paginate variants, theme: "solidus_admin" %>
@@ -4,14 +4,13 @@
4
4
 
5
5
  <% content_for :table_filter do %>
6
6
  <%= form_for :variant_search, url: spree.admin_product_variants_path(product), method: :get do |f| %>
7
- <div class="col-10">
8
- <div data-hook="admin_variants_index_search" class="field">
9
- <%= f.label :variant_search_term, t('spree.variant_search_placeholder') %>
10
- <%= text_field_tag :variant_search_term, params[:variant_search_term], class: "fullwidth", placeholder: t('spree.variant_search_placeholder') %>
7
+ <div class="row">
8
+ <div class="col-10">
9
+ <div data-hook="admin_variants_index_search" class="field">
10
+ <%= f.label :variant_search_term, t('spree.variant_search_placeholder') %>
11
+ <%= text_field_tag :variant_search_term, params[:variant_search_term], class: "fullwidth", placeholder: t('spree.variant_search_placeholder') %>
12
+ </div>
11
13
  </div>
12
- </div>
13
-
14
- <% if product.variants.with_discarded.discarded.any? %>
15
14
  <div class="col-2">
16
15
  <div class="field checkbox">
17
16
  <label>
@@ -20,10 +19,10 @@
20
19
  </label>
21
20
  </div>
22
21
  </div>
23
- <% end %>
22
+ </div>
24
23
 
25
24
  <div class="actions filter-actions">
26
- <%= f.button :search %>
25
+ <%= button_tag t('spree.filter_results'), class: 'btn btn-primary' %>
27
26
  </div>
28
27
  <% end %>
29
28
  <% end %>
@@ -14,7 +14,7 @@
14
14
  <% end %>
15
15
  <% end %>
16
16
 
17
- <% if @product.variants.with_discarded.any? %>
17
+ <% if @product.variants.with_discarded.any? || params[:variant_search_term].present? %>
18
18
  <%= render "table_filter", product: @product %>
19
19
  <%= render "table", variants: @variants %>
20
20
  <% else %>
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: solidus_backend
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.1.6
4
+ version: 3.1.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Solidus Team
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-06-01 00:00:00.000000000 Z
11
+ date: 2022-09-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: solidus_api
@@ -16,28 +16,28 @@ dependencies:
16
16
  requirements:
17
17
  - - '='
18
18
  - !ruby/object:Gem::Version
19
- version: 3.1.6
19
+ version: 3.1.8
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - '='
25
25
  - !ruby/object:Gem::Version
26
- version: 3.1.6
26
+ version: 3.1.8
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: solidus_core
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
31
  - - '='
32
32
  - !ruby/object:Gem::Version
33
- version: 3.1.6
33
+ version: 3.1.8
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - '='
39
39
  - !ruby/object:Gem::Version
40
- version: 3.1.6
40
+ version: 3.1.8
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: coffee-rails
43
43
  requirement: !ruby/object:Gem::Requirement
@@ -905,7 +905,7 @@ homepage: http://solidus.io
905
905
  licenses:
906
906
  - BSD-3-Clause
907
907
  metadata: {}
908
- post_install_message:
908
+ post_install_message:
909
909
  rdoc_options: []
910
910
  require_paths:
911
911
  - lib
@@ -920,8 +920,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
920
920
  - !ruby/object:Gem::Version
921
921
  version: 1.8.23
922
922
  requirements: []
923
- rubygems_version: 3.2.31
924
- signing_key:
923
+ rubygems_version: 3.3.7
924
+ signing_key:
925
925
  specification_version: 4
926
926
  summary: Admin interface for the Solidus e-commerce framework.
927
927
  test_files: []