solidus_tec_estimator 1.0.4 → 1.0.5

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: 3cea9190ff9059d6ba553fcac90d0452323a87f8df52c96b06101717516c95a7
4
- data.tar.gz: 2bcd8fcdaeeda88b8b83b1dbbad6c1742492884b7d82045447effc37aef92c60
3
+ metadata.gz: 6c6cd4f4ae5132949061a5e6fc1e5a7f454623e3cf5afc9618fd08c2c8f413a6
4
+ data.tar.gz: b3e71b92b291a2ed5bc8d2a10210d1185de0601b0d5ab8b2a421b91487d9fb03
5
5
  SHA512:
6
- metadata.gz: 5fcc90dbeed6618efceee3c250d6d65c5367452dc9f6802ff1645b3294658e418ca5c8ba2893af0455857e15d69a1b666e6a5a9257b6c3a69af182d596421104
7
- data.tar.gz: 3b016c9cdb534fec3c2a8d82d529b13b7b8967ee7e1c62a7c0c3e52e487de52a27874f87556eaa3104c19c37b1e4a5a3b8646e98ad7e110c7c043f4bb81a23a1
6
+ metadata.gz: cceb0966d0b47f28e7a342536fd43b7394a38349d070adca7087f1e67a6a548d11f4af73435904b99e2a64a752f4da912ab7f2d0bcc0409d10837daee693d810
7
+ data.tar.gz: 84cb73efd1f1c1f770243a16f0abc0cdc50b3ad4c36f87dd2212264381a995a90b24e3f224caf3737d9b4dd26dbe828d7d8c85cc3ec46ba44cf80c32c1d5680d
@@ -22,7 +22,7 @@ module SolidusTecEstimator
22
22
 
23
23
  def shipping_rates
24
24
  shipping_rates = []
25
- if ship_address_city == "São João da Boa Vista" && tem_estoque_na_f1? && package.weight <= 10000
25
+ if cep_de_sjbv? && tem_estoque_na_f1? && package.weight <= 10000
26
26
  shipping_rates << build_shipping_rate(package)
27
27
  end
28
28
  shipping_rates.select { |rate| shipping_methods.include?(rate.shipping_method) }
@@ -62,8 +62,10 @@ module SolidusTecEstimator
62
62
  )
63
63
  end
64
64
 
65
- def ship_address_city
66
- Cep.find_by(codigo_postal: package.order.ship_address&.zipcode).try(:localidade) || package.order.ship_address.city
65
+ def cep_de_sjbv?
66
+ sjbv_ceps = Cep.where(localidade: "São João da Boa Vista").pluck(:codigo_postal).map(&:to_i)
67
+ zipcode = package.order.ship_address.zipcode.gsub(/\D/, "").to_i
68
+ zipcode >= sjbv_ceps.min && zipcode <= sjbv_ceps.max
67
69
  end
68
70
 
69
71
  def self.calculate_delivery_time rate
@@ -1,3 +1,3 @@
1
1
  module SolidusTecEstimator
2
- VERSION = '1.0.4'
2
+ VERSION = '1.0.5'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: solidus_tec_estimator
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.4
4
+ version: 1.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - ulysses