solidus_me 2.1.1 → 2.2.0

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: 7484e033983b5cb4df982a16bf4170f371d85ee52147b7430837f86928870556
4
- data.tar.gz: e636ef95f9df52b4859096b15281bd79b9e9bfe6d2c96f22052f8fe37a696ab6
3
+ metadata.gz: d2e9f293638ff0c3b7d0c57b87aeec56046f7f846cea50a1b6b3fef334df7a44
4
+ data.tar.gz: 5100ecb5e3b430fdb67ba3d76ae28eb1f96cbb092b8f966660134203da115a9b
5
5
  SHA512:
6
- metadata.gz: 84723d7436b065f29f403b3b3fd54a00d7b5d7a9ba2de8c9eb8110006d413536ceee1dc59c16a8f1edb63bbfda5d3765bc82f595b70a3ced74bce4409b69c713
7
- data.tar.gz: 2129ee7f79aef74cbe78f341458bd798b6f06aab88b7e5b48e1e35598e2dc2a443e04c5dff856e39a99a481cfb941c24c65a1da6f0a91b68f4bb61ab9dfa644f
6
+ metadata.gz: 17401a6ce413265b73362cae515fca208b9f811eac36e50abe8b415996fa224547ee371607515ffefc3fb6e62f2a771dd8afd682903552f21b50febc71abf018
7
+ data.tar.gz: 8045ae66d039acc94ddfea8ff8261019657b1b31eb41fa2cad26b92fbe29676d806bb546add6433c8465cb113bbec1607a811b01ddcfa8272e8c30c3107e82da
data/Rakefile CHANGED
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require "bundler/gem_tasks"
4
- require "solidus_dev_support/rake_tasks"
5
- SolidusDevSupport::RakeTasks.install
4
+ # require "solidus_dev_support/rake_tasks"
5
+ # SolidusDevSupport::RakeTasks.install
6
6
 
7
7
  task default: "extension:specs"
@@ -23,15 +23,24 @@ module SolidusMe
23
23
  private
24
24
 
25
25
  def get_rates_from_melhor_envio(package)
26
- weight = package.contents.map { |content| content.weight }.sum
27
26
  price = package.contents.map { |content| content.price }.sum
27
+ weight = package.weight
28
+
29
+ variants = package.contents.map { |content| content.variant }
30
+ height_cm = height(variants)
31
+ width_cm = width(variants)
32
+ length_cm = length(variants)
33
+
28
34
  zipcode = package.order.ship_address.zipcode
29
35
  services = @me_account.services.blank? ? ["SEDEX", "PAC", "Mini Envios", ".Package", ".Com"] : @me_account.services
30
36
 
31
37
  rates = @me_client.rates(
32
38
  from: @me_account.postal_code_from,
33
39
  to: zipcode,
34
- weight_kg: (weight / 1000),
40
+ weight_kg: (weight / 1000.00),
41
+ height_cm: height_cm,
42
+ width_cm: width_cm,
43
+ length_cm: length_cm,
35
44
  contents_value_brl: price
36
45
  )
37
46
  rates.select { |rate| rate.price > 0 && services.include?(rate.service_name) }
@@ -67,5 +76,17 @@ module SolidusMe
67
76
  delivery_range: {"min" => 5, "max" => 5}
68
77
  )
69
78
  end
79
+
80
+ def height variants
81
+ variants.pluck(:height, :width, :depth).map(&:max).compact.max
82
+ end
83
+
84
+ def width variants
85
+ variants.pluck(:height, :width, :depth).map { |dimensions| dimensions.sort[1] }.compact.max
86
+ end
87
+
88
+ def length variants
89
+ variants.pluck(:height, :width, :depth).map(&:min).compact.sum
90
+ end
70
91
  end
71
92
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module SolidusMe
4
- VERSION = "2.1.1"
4
+ VERSION = "2.2.0"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: solidus_me
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.1
4
+ version: 2.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hamilton Tumenas Borges
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-12-06 00:00:00.000000000 Z
11
+ date: 2024-05-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: solidus_core
@@ -157,7 +157,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
157
157
  - !ruby/object:Gem::Version
158
158
  version: '0'
159
159
  requirements: []
160
- rubygems_version: 3.4.19
160
+ rubygems_version: 3.5.3
161
161
  signing_key:
162
162
  specification_version: 4
163
163
  summary: Gem para integração com a API do Melhor Envio