correios-ws 2.0.0 → 3
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.
- data/lib/correios-ws.rb +1 -1
- data/lib/correios-ws/version.rb +1 -1
- metadata +1 -1
data/lib/correios-ws.rb
CHANGED
@@ -188,7 +188,7 @@ module Correios
|
|
188
188
|
@soap_result.calcPrecoPrazoResult['Servicos']['cServico'].each do |cservico|
|
189
189
|
results[cservico['Codigo'].to_s] = Service.new do |s|
|
190
190
|
s.codigo = cservico['Codigo']
|
191
|
-
s.descricao = Correios::
|
191
|
+
s.descricao = Correios::Servicos::DESCRIPTIONS[s.codigo]
|
192
192
|
s.valor = cservico['Valor']
|
193
193
|
s.prazo_entrega = cservico['PrazoEntrega']
|
194
194
|
#Dados adicionais Valor
|
data/lib/correios-ws/version.rb
CHANGED