solidus_backend 3.1.7 → 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: 8903b91d3f4fae6507dfe625e8f9b24874d0dca1112326f34a59d2248ebdc710
4
- data.tar.gz: 41efa75c338489bf545c78dbe068a790a2ff65921e3eeaea269f6a35c4c32a78
3
+ metadata.gz: dff6dcb76e2419914cf6309bd6bc6fb3433cd757e08c43771724bd3d39bee162
4
+ data.tar.gz: 65b5260f7bc8c712e6494dc9b362cc133e22f4497cd4753f294856205284d0e5
5
5
  SHA512:
6
- metadata.gz: 6392976b28c3318b3e6cac80eed33e2cbcc9ac6e9b502aab43d0214bb6926fe9e2b683b56234aee11f47045f8dbcf192283c5e2eeed4d2eed28790605af43577
7
- data.tar.gz: d91c2ec5947013f55f8fa6b5abed42fc7ae9f11bb86cce6f424f63ee4c775da71253bd2d9b2b96269de3ff47448aa82864407e349b8a27bae02659fc3a41f2e0
6
+ metadata.gz: fc109ecd2a95f99968e4719f11fe8f70351ac1d70d9dbf73d96c3662b026ebf2df91a85c43c01980b1ce062ceefbbbf1c9f6e3da13a7e8cb4fd46d84a73c1361
7
+ data.tar.gz: 6ed6a6b85e3f135d17ad3f2743b9ce26b624f6f709ff4ee91ebbb26226a8f39fbe82fcb61f972043a308823aa2273cbf692ae26ba83268cae7f2416f488281e9
@@ -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 %>
@@ -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.none? %>
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.7
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-07-15 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.7
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.7
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.7
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.7
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.1.2
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: []