solidus_bling 2.0.1 → 2.0.2
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.
- checksums.yaml +4 -4
- data/app/controllers/spree/admin/accounts_controller.rb +4 -4
- data/app/models/solidus_bling/contact.rb +1 -1
- data/app/models/solidus_bling/product.rb +2 -2
- data/db/migrate/20230918141505_add_bling_order_id_to_spree_orders.rb +1 -1
- data/lib/solidus_bling/engine.rb +1 -1
- data/lib/solidus_bling/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cb30252c0e9c0cc28db34354c406558e6bd5c0287814985022f831d1e843a763
|
4
|
+
data.tar.gz: 4dffc04c53547441ea2100979aaba16a212a5dca7abbeae89939e99bd591bbd4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 54da612e78e3aaffadf4fd10a128cc1618cf07239a7f98a40709cc5643c7f33a2f59d432e36305874d91a4f79519f54862f836851f0eeae182d0334e117fe160
|
7
|
+
data.tar.gz: e9c62701428a91238bd1d9789d00e6190f6fe42385d63c8fd7fd8e1653b1a6948431c7d6e380322ca3f1f387d8645293830b9748dfbbbcc776df04ebc27fcd22
|
@@ -10,8 +10,8 @@ module Spree
|
|
10
10
|
|
11
11
|
def new
|
12
12
|
@bling_account = SolidusBling::Account.new
|
13
|
-
@payment_methods = Spree::PaymentMethod.all.pluck(:name, :id)
|
14
|
-
@shipping_methods = Spree::ShippingMethod.all.pluck(:name, :id)
|
13
|
+
@payment_methods = ::Spree::PaymentMethod.all.pluck(:name, :id)
|
14
|
+
@shipping_methods = ::Spree::ShippingMethod.all.pluck(:name, :id)
|
15
15
|
@bling_account.payment_methods.build
|
16
16
|
@bling_account.shipping_methods.build
|
17
17
|
@bling_account.sellers.build
|
@@ -24,8 +24,8 @@ module Spree
|
|
24
24
|
|
25
25
|
def edit
|
26
26
|
@bling_account = SolidusBling::Account.find(params[:id])
|
27
|
-
@payment_methods = Spree::PaymentMethod.all.pluck(:name, :id)
|
28
|
-
@shipping_methods = Spree::ShippingMethod.all.pluck(:name, :id)
|
27
|
+
@payment_methods = ::Spree::PaymentMethod.all.pluck(:name, :id)
|
28
|
+
@shipping_methods = ::Spree::ShippingMethod.all.pluck(:name, :id)
|
29
29
|
end
|
30
30
|
|
31
31
|
def update
|
@@ -39,7 +39,7 @@ module SolidusBling
|
|
39
39
|
ensure
|
40
40
|
json = JSON.parse(req.body)
|
41
41
|
response_has_error?(json)
|
42
|
-
Spree::Bus.publish :bling_contact_created, args: {order: order, contato: json}
|
42
|
+
::Spree::Bus.publish :bling_contact_created, args: {order: order, contato: json}
|
43
43
|
return json.dig("data", "id")
|
44
44
|
end
|
45
45
|
end
|
@@ -4,7 +4,7 @@ module SolidusBling
|
|
4
4
|
|
5
5
|
def self.update bling_account
|
6
6
|
bling_api = SolidusBling::Api.new(bling_account)
|
7
|
-
skus = Spree::Variant.pluck(:sku)
|
7
|
+
skus = ::Spree::Variant.pluck(:sku)
|
8
8
|
hash_products = {}
|
9
9
|
products = skus.map do |sku|
|
10
10
|
begin
|
@@ -29,7 +29,7 @@ module SolidusBling
|
|
29
29
|
end
|
30
30
|
end.compact.uniq
|
31
31
|
SolidusBling::Product.upsert_all(products, unique_by: :sku)
|
32
|
-
Spree::Bus.publish :bling_products_updated, products: hash_products
|
32
|
+
::Spree::Bus.publish :bling_products_updated, products: hash_products
|
33
33
|
end
|
34
34
|
|
35
35
|
end
|
data/lib/solidus_bling/engine.rb
CHANGED