solidus_backend 2.11.1 → 2.11.6
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of solidus_backend might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/app/assets/javascripts/spree/backend/views/tables/return_items.js +5 -0
- data/app/assets/javascripts/spree/backend/views/tables/selectable_table/sum_return_item_amount.js +10 -3
- data/app/assets/stylesheets/spree/backend/_bootstrap_custom.scss +1 -1
- data/app/assets/stylesheets/spree/backend/components/_actions.scss +62 -0
- data/app/assets/stylesheets/spree/backend/components/_messages.scss +6 -6
- data/app/assets/stylesheets/spree/backend/globals/_deprecation.scss +1 -1
- data/app/assets/stylesheets/spree/backend/globals/_variables.scss +3 -28
- data/app/controllers/spree/admin/products_controller.rb +5 -0
- data/app/controllers/spree/admin/refunds_controller.rb +3 -2
- data/app/views/spree/admin/orders/customer_details/show.html.erb +1 -1
- data/app/views/spree/admin/products/_form.html.erb +1 -1
- data/app/views/spree/admin/products/index.html.erb +1 -1
- data/app/views/spree/admin/shared/_settings_sub_menu.html.erb +5 -5
- data/app/views/spree/admin/store_credits/index.html.erb +1 -1
- data/app/views/spree/admin/style_guide/topics/typography/_colors.html.erb +3 -3
- data/app/views/spree/admin/taxons/_form.html.erb +18 -1
- data/app/views/spree/admin/taxons/attachment_forms/_paperclip.html.erb +8 -1
- data/lib/spree/backend_configuration.rb +11 -11
- data/vendor/assets/javascripts/solidus_admin/select2_locales/select2_locale_en-AU.js +10 -0
- data/vendor/assets/javascripts/solidus_admin/select2_locales/select2_locale_en-GB.js +10 -0
- data/vendor/assets/javascripts/solidus_admin/select2_locales/select2_locale_en-IN.js +10 -0
- data/vendor/assets/javascripts/solidus_admin/select2_locales/select2_locale_en-NZ.js +10 -0
- metadata +10 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c1b58601ef7b61261811b03984aa63749a174d5efc135e2cfca62163f6667e1a
|
4
|
+
data.tar.gz: bdb3ac45f4eae916f9960f76f2833b7d33900786515bf01e4979caa0c021b423
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 483807d22e4eb7999550d9871762165e19e46671019a97b6376fcb0740edd63a70160b7d2af742e17d863b42cff40005bd17ec513a45cad105b64500f130e605
|
7
|
+
data.tar.gz: 798f80886650797f53a705c9ee0029e8234f3360a62434fbd82115ba88bfd680a4079e4bc9e67d9feb66870fd897a29a1a2cc25bfe43dbb5474b5f3ab3d28be3
|
@@ -4,6 +4,11 @@ Spree.Views.Tables.ReturnItems = Backbone.View.extend({
|
|
4
4
|
var tfoot = document.createElement('tfoot')
|
5
5
|
new Spree.Views.Tables.SelectableTable.SumReturnItemAmount({el: tfoot, model: this.model});
|
6
6
|
this.$el.append(tfoot);
|
7
|
+
|
8
|
+
this.$el.find('input, select').not('.add-item').on('change', function(e) {
|
9
|
+
$(this).closest('tr').find('input.add-item').prop('checked', true)
|
10
|
+
.change();
|
11
|
+
});
|
7
12
|
}
|
8
13
|
},
|
9
14
|
})
|
data/app/assets/javascripts/spree/backend/views/tables/selectable_table/sum_return_item_amount.js
CHANGED
@@ -15,8 +15,11 @@ Spree.Views.Tables.SelectableTable.SumReturnItemAmount = Backbone.View.extend({
|
|
15
15
|
},
|
16
16
|
|
17
17
|
totalSelectedReturnItemAmount: function () {
|
18
|
-
var totalAmount = 0
|
18
|
+
var totalAmount = 0;
|
19
19
|
var selectedItems = [];
|
20
|
+
var decimals = 0;
|
21
|
+
var separator = Spree.t('currency_separator');
|
22
|
+
var amount, decimalAmount;
|
20
23
|
|
21
24
|
if(this.model.get('allSelected')) {
|
22
25
|
selectedItems = $('.selectable');
|
@@ -24,9 +27,13 @@ Spree.Views.Tables.SelectableTable.SumReturnItemAmount = Backbone.View.extend({
|
|
24
27
|
selectedItems = $(this.model.attributes.selectedItems);
|
25
28
|
}
|
26
29
|
selectedItems.each(function(_, selectedItem){
|
27
|
-
|
30
|
+
amount = $(selectedItem).data('price');
|
31
|
+
decimalAmount = amount.toString().split(separator)[1] || '';
|
32
|
+
decimals = Math.max(decimals, decimalAmount.length);
|
33
|
+
|
34
|
+
totalAmount += parseFloat(amount);
|
28
35
|
})
|
29
36
|
|
30
|
-
return totalAmount;
|
37
|
+
return accounting.formatNumber(totalAmount, decimals, Spree.t('currency_delimiter'), separator);
|
31
38
|
},
|
32
39
|
});
|
@@ -1,3 +1,65 @@
|
|
1
|
+
$color-action-success-bg: theme-color-level(success, -10) !default;
|
2
|
+
$color-action-success-brd: theme-color-level(success, -9) !default;
|
3
|
+
$color-action-warning-bg: theme-color-level(warning, -10) !default;
|
4
|
+
$color-action-warning-brd: theme-color-level(warning, -9) !default;
|
5
|
+
$color-action-danger-bg: theme-color-level(danger, -10) !default;
|
6
|
+
$color-action-danger-brd: theme-color-level(danger, -9) !default;
|
7
|
+
|
8
|
+
$color-action-edit-bg: $color-action-success-bg !default;
|
9
|
+
$color-action-edit-brd: $color-action-success-brd !default;
|
10
|
+
$color-action-clone-bg: $color-action-warning-bg !default;
|
11
|
+
$color-action-clone-brd: $color-action-warning-brd !default;
|
12
|
+
$color-action-remove-bg: $color-action-danger-bg !default;
|
13
|
+
$color-action-remove-brd: $color-action-danger-brd !default;
|
14
|
+
$color-action-void-bg: $color-action-danger-bg !default;
|
15
|
+
$color-action-void-brd: $color-action-danger-brd !default;
|
16
|
+
$color-action-cancel-bg: $color-action-warning-bg !default;
|
17
|
+
$color-action-cancel-brd: $color-action-warning-brd !default;
|
18
|
+
$color-action-capture-bg: $color-action-success-bg !default;
|
19
|
+
$color-action-capture-brd: $color-action-success-brd !default;
|
20
|
+
$color-action-save-bg: $color-action-success-bg !default;
|
21
|
+
$color-action-save-brd: $color-action-success-brd !default;
|
22
|
+
$color-action-mail-bg: $color-action-success-bg !default;
|
23
|
+
$color-action-mail-brd: $color-action-success-brd !default;
|
24
|
+
$color-action-failure-bg: $color-action-danger-bg !default;
|
25
|
+
$color-action-failure-brd: $color-action-danger-brd !default;
|
26
|
+
|
27
|
+
$actions: (
|
28
|
+
edit,
|
29
|
+
clone,
|
30
|
+
remove,
|
31
|
+
void,
|
32
|
+
capture,
|
33
|
+
save,
|
34
|
+
cancel,
|
35
|
+
mail,
|
36
|
+
failure
|
37
|
+
) !default;
|
38
|
+
|
39
|
+
$actions-bg-colors: (
|
40
|
+
$color-action-edit-bg,
|
41
|
+
$color-action-clone-bg,
|
42
|
+
$color-action-remove-bg,
|
43
|
+
$color-action-void-bg,
|
44
|
+
$color-action-capture-bg,
|
45
|
+
$color-action-save-bg,
|
46
|
+
$color-action-cancel-bg,
|
47
|
+
$color-action-mail-bg,
|
48
|
+
$color-action-failure-bg
|
49
|
+
) !default;
|
50
|
+
|
51
|
+
$actions-brd-colors: (
|
52
|
+
$color-action-edit-brd,
|
53
|
+
$color-action-clone-brd,
|
54
|
+
$color-action-remove-brd,
|
55
|
+
$color-action-void-brd,
|
56
|
+
$color-action-capture-brd,
|
57
|
+
$color-action-save-brd,
|
58
|
+
$color-action-cancel-brd,
|
59
|
+
$color-action-mail-brd,
|
60
|
+
$color-action-failure-brd
|
61
|
+
) !default;
|
62
|
+
|
1
63
|
table tbody tr {
|
2
64
|
&.highlight {
|
3
65
|
|
@@ -44,16 +44,16 @@
|
|
44
44
|
color: $body-color;
|
45
45
|
|
46
46
|
&.notice {
|
47
|
-
background-color: rgba(
|
48
|
-
border-top-color:
|
47
|
+
background-color: rgba(theme-color-level(warning, -8), .95);
|
48
|
+
border-top-color: theme-color(warning);
|
49
49
|
}
|
50
50
|
&.success {
|
51
|
-
background-color: rgba(
|
52
|
-
border-top-color:
|
51
|
+
background-color: rgba(theme-color-level(success, -10), .95);
|
52
|
+
border-top-color: theme-color(success);
|
53
53
|
}
|
54
54
|
&.error {
|
55
|
-
background-color: rgba(
|
56
|
-
border-top-color:
|
55
|
+
background-color: rgba(theme-color-level(danger, -8), .95);
|
56
|
+
border-top-color: theme-color(danger);
|
57
57
|
}
|
58
58
|
}
|
59
59
|
|
@@ -11,7 +11,7 @@ $output-solidus-deprecation-warnings: true !default;
|
|
11
11
|
@if $output-solidus-deprecation-warnings == true {
|
12
12
|
@if global-variable-exists($variable) {
|
13
13
|
@warn "[Solidus] [Deprecation] `$#{$variable}` is deprecated and will be " +
|
14
|
-
"removed in 3.0.0. Please use Bootstraps
|
14
|
+
"removed in 3.0.0. Please use Bootstraps #{$replacement} instead";
|
15
15
|
}
|
16
16
|
}
|
17
17
|
}
|
@@ -62,11 +62,11 @@ $color-tab-active-bg: $color-white !default;
|
|
62
62
|
$color-tab-active-border: $color-white !default;
|
63
63
|
|
64
64
|
// Basic flash colors
|
65
|
-
@include bs-deprecated-variable("color-success", "
|
65
|
+
@include bs-deprecated-variable("color-success", "theme-color(success)");
|
66
66
|
$color-success: $color-green !default;
|
67
|
-
@include bs-deprecated-variable("color-notice", "
|
67
|
+
@include bs-deprecated-variable("color-notice", "theme-color(warning)");
|
68
68
|
$color-notice: $color-yellow !default;
|
69
|
-
@include bs-deprecated-variable("color-error", "
|
69
|
+
@include bs-deprecated-variable("color-error", "theme-color(danger)");
|
70
70
|
$color-error: $color-red !default;
|
71
71
|
|
72
72
|
// Breadcrumb custom variable
|
@@ -113,26 +113,6 @@ $color-pill-warning-text: $color-pill-text;
|
|
113
113
|
$color-pill-error: #ff967b;
|
114
114
|
$color-pill-error-text: $color-pill-text;
|
115
115
|
|
116
|
-
// Actions colors
|
117
|
-
$color-action-edit-bg: lighten($color-success, (5 * 5) ) !default;
|
118
|
-
$color-action-edit-brd: lighten($color-success, (20 * 5) ) !default;
|
119
|
-
$color-action-clone-bg: lighten($color-notice, (5 * 5) ) !default;
|
120
|
-
$color-action-clone-brd: lighten($color-notice, (15 * 5) ) !default;
|
121
|
-
$color-action-remove-bg: lighten($color-error, (5 * 5) ) !default;
|
122
|
-
$color-action-remove-brd: lighten($color-error, (10 * 5) ) !default;
|
123
|
-
$color-action-void-bg: lighten($color-error, (10 * 5) ) !default;
|
124
|
-
$color-action-void-brd: lighten($color-error, (20 * 5) ) !default;
|
125
|
-
$color-action-cancel-bg: lighten($color-notice, (10 * 5) ) !default;
|
126
|
-
$color-action-cancel-brd: lighten($color-notice, (20 * 5) ) !default;
|
127
|
-
$color-action-capture-bg: lighten($color-success, (5 * 5) ) !default;
|
128
|
-
$color-action-capture-brd: lighten($color-success, (20 * 5) ) !default;
|
129
|
-
$color-action-save-bg: lighten($color-success, (5 * 5) ) !default;
|
130
|
-
$color-action-save-brd: lighten($color-success, (20 * 5) ) !default;
|
131
|
-
$color-action-mail-bg: lighten($color-success, (5 * 5) ) !default;
|
132
|
-
$color-action-mail-brd: lighten($color-success, (20 * 5) ) !default;
|
133
|
-
$color-action-failure-bg: lighten($color-error, (10 * 5) ) !default;
|
134
|
-
$color-action-failure-brd: lighten($color-error, (20 * 5) ) !default;
|
135
|
-
|
136
116
|
// Available states
|
137
117
|
$states: (
|
138
118
|
active,
|
@@ -160,11 +140,6 @@ $states: (
|
|
160
140
|
void
|
161
141
|
) !default;
|
162
142
|
|
163
|
-
// Available actions
|
164
|
-
$actions: edit, clone, remove, void, capture, save, cancel, mail, failure !default;
|
165
|
-
$actions-bg-colors: $color-action-edit-bg, $color-action-clone-bg, $color-action-remove-bg, $color-action-void-bg, $color-action-capture-bg, $color-action-save-bg, $color-action-cancel-bg, $color-action-mail-bg, $color-action-failure-bg !default;
|
166
|
-
$actions-brd-colors: $color-action-edit-brd, $color-action-clone-brd, $color-action-remove-brd, $color-action-void-brd, $color-action-capture-brd, $color-action-save-brd, $color-action-cancel-brd, $color-action-mail-brd, $color-action-failure-brd !default;
|
167
|
-
|
168
143
|
// Sidebar
|
169
144
|
//--------------------------------------------------------------
|
170
145
|
$width-sidebar: 200px !default;
|
@@ -10,6 +10,7 @@ module Spree
|
|
10
10
|
helper_method :clone_object_url
|
11
11
|
before_action :split_params, only: [:create, :update]
|
12
12
|
before_action :normalize_variant_property_rules, only: [:update]
|
13
|
+
before_action :set_default_tax_category, only: [:new, :edit]
|
13
14
|
|
14
15
|
def show
|
15
16
|
redirect_to action: :edit
|
@@ -46,6 +47,10 @@ module Spree
|
|
46
47
|
|
47
48
|
private
|
48
49
|
|
50
|
+
def set_default_tax_category
|
51
|
+
@product.tax_category_id ||= @default_tax_category&.id
|
52
|
+
end
|
53
|
+
|
49
54
|
def split_params
|
50
55
|
if params[:product][:taxon_ids].present?
|
51
56
|
params[:product][:taxon_ids] = params[:product][:taxon_ids].split(',')
|
@@ -11,8 +11,9 @@ module Spree
|
|
11
11
|
rescue_from Spree::Core::GatewayError, with: :spree_core_gateway_error
|
12
12
|
|
13
13
|
def create
|
14
|
-
@refund.attributes = refund_params
|
15
|
-
|
14
|
+
@refund.attributes = refund_params
|
15
|
+
|
16
|
+
if @refund.valid? && @refund.perform!
|
16
17
|
flash[:success] = flash_message_for(@refund, :successfully_created)
|
17
18
|
respond_with(@refund) do |format|
|
18
19
|
format.html { redirect_to location_after_save }
|
@@ -12,7 +12,7 @@
|
|
12
12
|
<section>
|
13
13
|
<%= content_tag :h4, t('spree.account') %>
|
14
14
|
<%= t('spree.email') %>: <%= @order.email %><br>
|
15
|
-
<%= t('spree.guest_checkout') %>: <%= @order.user ? t('spree.yes') : t('spree.no') %>
|
15
|
+
<%= t('spree.guest_checkout') %>: <%= @order.user.nil? ? t('spree.yes') : t('spree.no') %>
|
16
16
|
</section>
|
17
17
|
|
18
18
|
<section>
|
@@ -158,7 +158,7 @@
|
|
158
158
|
<%= f.field_container :tax_category do %>
|
159
159
|
<%= f.label :tax_category_id, Spree::TaxCategory.model_name.human %>
|
160
160
|
<%= f.field_hint :tax_category, default_tax_category: @default_tax_category&.name %>
|
161
|
-
<%= f.collection_select(:tax_category_id, @tax_categories, :id, :name, { include_blank: t('spree.match_choices.none')
|
161
|
+
<%= f.collection_select(:tax_category_id, @tax_categories, :id, :name, { include_blank: t('spree.match_choices.none') }, { class: 'custom-select' }) %>
|
162
162
|
<%= f.error_message_on :tax_category %>
|
163
163
|
<% end %>
|
164
164
|
</div>
|
@@ -84,7 +84,7 @@
|
|
84
84
|
|
85
85
|
<%= link_to_clone product, no_text: true, class: 'clone' if can?(:clone, product) %>
|
86
86
|
|
87
|
-
<%= link_to_delete product, no_text: true if can?(:
|
87
|
+
<%= link_to_delete product, no_text: true if can?(:destroy, product) && !product.deleted? %>
|
88
88
|
</td>
|
89
89
|
</tr>
|
90
90
|
<% end %>
|
@@ -3,24 +3,24 @@
|
|
3
3
|
<%= tab :stores, label: :stores, url: spree.admin_stores_path %>
|
4
4
|
<% end %>
|
5
5
|
|
6
|
-
<% if can?(:
|
6
|
+
<% if can?(:admin, Spree::PaymentMethod) %>
|
7
7
|
<%= tab :payments, url: spree.admin_payment_methods_path %>
|
8
8
|
<% end %>
|
9
9
|
|
10
|
-
<% if can?(:
|
10
|
+
<% if can?(:admin, Spree::TaxCategory) || can?(:admin, Spree::TaxRate) %>
|
11
11
|
<%= tab :taxes, url: spree.admin_tax_categories_path, match_path: %r(tax_categories|tax_rates) %>
|
12
12
|
<% end %>
|
13
13
|
|
14
|
-
<% if can?(:
|
14
|
+
<% if can?(:admin, Spree::RefundReason) || can?(:admin, Spree::ReimbursementType) ||
|
15
15
|
can?(:show, Spree::ReturnReason) || can?(:show, Spree::AdjustmentReason) %>
|
16
16
|
<%= tab :checkout, url: spree.admin_refund_reasons_path, match_path: %r(refund_reasons|reimbursement_types|return_reasons|adjustment_reasons|store_credit_reasons) %>
|
17
17
|
<% end %>
|
18
18
|
|
19
|
-
<% if can?(:
|
19
|
+
<% if can?(:admin, Spree::ShippingMethod) || can?(:admin, Spree::ShippingCategory) || can?(:admin, Spree::StockLocation) %>
|
20
20
|
<%= tab :shipping, url: spree.admin_shipping_methods_path, match_path: %r(shipping_methods|shipping_categories|stock_locations) %>
|
21
21
|
<% end %>
|
22
22
|
|
23
|
-
<% if can?(:
|
23
|
+
<% if can?(:admin, Spree::Zone) %>
|
24
24
|
<%= tab :zones, url: spree.admin_zones_path %>
|
25
25
|
<% end %>
|
26
26
|
</ul>
|
@@ -56,7 +56,7 @@
|
|
56
56
|
<span><%= t store_credit.invalidated? ? 'spree.say_yes' : 'spree.say_no' %></span>
|
57
57
|
</td>
|
58
58
|
<td class="actions" data-hook="admin_store_credits_index_row_actions">
|
59
|
-
<% if can?(:
|
59
|
+
<% if can?(:edit, store_credit) %>
|
60
60
|
<%= link_to_edit_url admin_user_store_credit_path(@user, store_credit), { no_text: true, class: 'edit' } %>
|
61
61
|
<% end %>
|
62
62
|
</td>
|
@@ -39,17 +39,17 @@ colors = [
|
|
39
39
|
used_for: 'Buttons primary actions, links, active states.'
|
40
40
|
},
|
41
41
|
{
|
42
|
-
name: '
|
42
|
+
name: 'theme-color(success)',
|
43
43
|
value: '#52B73B',
|
44
44
|
used_for: 'Success actions.'
|
45
45
|
},
|
46
46
|
{
|
47
|
-
name: '
|
47
|
+
name: 'theme-color(danger)',
|
48
48
|
value: '#CE452A',
|
49
49
|
used_for: 'Errors, destructive action warnings.'
|
50
50
|
},
|
51
51
|
{
|
52
|
-
name: '
|
52
|
+
name: 'theme-color(warning)',
|
53
53
|
value: '#FFDD59',
|
54
54
|
used_for: 'Warnings actions.'
|
55
55
|
}
|
@@ -20,7 +20,24 @@
|
|
20
20
|
</div>
|
21
21
|
<% end %>
|
22
22
|
|
23
|
-
|
23
|
+
<% if f.object.class.attachment_definitions.size > 1 %>
|
24
|
+
<%= render "spree/admin/taxons/attachment_forms/#{f.object.attachment_partial_name}", f: f %>
|
25
|
+
<% else %>
|
26
|
+
<%= f.field_container :icon do %>
|
27
|
+
<%= f.label :icon %><br>
|
28
|
+
<%= f.file_field :icon %>
|
29
|
+
<% if f.object.icon_present? %>
|
30
|
+
<%= image_tag f.object.icon(:mini) %>
|
31
|
+
<%= link_to t('spree.actions.remove'),
|
32
|
+
admin_taxonomy_taxon_attachment_path(@taxonomy,
|
33
|
+
@taxon.id,
|
34
|
+
attachment_definition: :icon,
|
35
|
+
authenticity_token: form_authenticity_token),
|
36
|
+
method: :delete,
|
37
|
+
class: 'btn btn-sm btn-danger' %>
|
38
|
+
<% end %>
|
39
|
+
<% end %>
|
40
|
+
<% end %>
|
24
41
|
</div>
|
25
42
|
|
26
43
|
<div class="col-5">
|
@@ -1,8 +1,15 @@
|
|
1
|
+
<%
|
2
|
+
Spree::Deprecation.warn(
|
3
|
+
"This partial with its support for multiple Spree::Taxon attachments is deprecated and will be removed in a future " \
|
4
|
+
"version of Solidus, please overwrite the standard view if you need to support custom attachments."
|
5
|
+
)
|
6
|
+
%>
|
7
|
+
|
1
8
|
<% f.object.class.attachment_definitions.each do |attachment, definition| %>
|
2
9
|
<%= f.field_container attachment do %>
|
3
10
|
<%= f.label attachment %><br>
|
4
11
|
<%= f.file_field attachment %>
|
5
|
-
<% if f.object.send(attachment)
|
12
|
+
<% if f.object.send(:"#{attachment}_present?") %>
|
6
13
|
<%= image_tag f.object.send(attachment, definition[:default_style]) %>
|
7
14
|
<%= link_to t('spree.actions.remove'),
|
8
15
|
admin_taxonomy_taxon_attachment_path(@taxonomy,
|
@@ -133,17 +133,17 @@ module Spree
|
|
133
133
|
'wrench',
|
134
134
|
condition: -> {
|
135
135
|
can?(:admin, Spree::Store) ||
|
136
|
-
can?(:
|
137
|
-
can?(:
|
138
|
-
can?(:
|
139
|
-
can?(:
|
140
|
-
can?(:
|
141
|
-
can?(:
|
142
|
-
can?(:
|
143
|
-
can?(:
|
144
|
-
can?(:
|
145
|
-
can?(:
|
146
|
-
can?(:
|
136
|
+
can?(:admin, Spree::AdjustmentReason) ||
|
137
|
+
can?(:admin, Spree::PaymentMethod) ||
|
138
|
+
can?(:admin, Spree::RefundReason) ||
|
139
|
+
can?(:admin, Spree::ReimbursementType) ||
|
140
|
+
can?(:admin, Spree::ShippingCategory) ||
|
141
|
+
can?(:admin, Spree::ShippingMethod) ||
|
142
|
+
can?(:admin, Spree::StockLocation) ||
|
143
|
+
can?(:admin, Spree::TaxCategory) ||
|
144
|
+
can?(:admin, Spree::TaxRate) ||
|
145
|
+
can?(:admin, Spree::ReturnReason) ||
|
146
|
+
can?(:admin, Spree::Zone)
|
147
147
|
},
|
148
148
|
label: :settings,
|
149
149
|
partial: 'spree/admin/shared/settings_sub_menu',
|
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: 2.11.
|
4
|
+
version: 2.11.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Solidus Team
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-03-18 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: 2.11.
|
19
|
+
version: 2.11.6
|
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: 2.11.
|
26
|
+
version: 2.11.6
|
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: 2.11.
|
33
|
+
version: 2.11.6
|
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: 2.11.
|
40
|
+
version: 2.11.6
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: coffee-rails
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -770,6 +770,10 @@ files:
|
|
770
770
|
- vendor/assets/javascripts/solidus_admin/select2_locales/select2_locale_da.js
|
771
771
|
- vendor/assets/javascripts/solidus_admin/select2_locales/select2_locale_de.js
|
772
772
|
- vendor/assets/javascripts/solidus_admin/select2_locales/select2_locale_el.js
|
773
|
+
- vendor/assets/javascripts/solidus_admin/select2_locales/select2_locale_en-AU.js
|
774
|
+
- vendor/assets/javascripts/solidus_admin/select2_locales/select2_locale_en-GB.js
|
775
|
+
- vendor/assets/javascripts/solidus_admin/select2_locales/select2_locale_en-IN.js
|
776
|
+
- vendor/assets/javascripts/solidus_admin/select2_locales/select2_locale_en-NZ.js
|
773
777
|
- vendor/assets/javascripts/solidus_admin/select2_locales/select2_locale_en-US.js
|
774
778
|
- vendor/assets/javascripts/solidus_admin/select2_locales/select2_locale_es-MX.js
|
775
779
|
- vendor/assets/javascripts/solidus_admin/select2_locales/select2_locale_es.js
|