Skip to content

Commit

Permalink
Permite rehace importancion pero en valores ignora comas (que separan…
Browse files Browse the repository at this point in the history
… miles en csv) pero deja punto para separar decimales
  • Loading branch information
vtamara committed May 1, 2024
1 parent 9fe6cae commit 0421bb1
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions lib/guiones/importa-donantes-2.rb
Original file line number Diff line number Diff line change
Expand Up @@ -531,7 +531,7 @@
anio = mad[1].to_i + 2000
valor = 0
if r[ma]
valor = r[ma].gsub(/[^0-9]/, '')
valor = r[ma].gsub(/[^0-9.]/, '')
end
#debugger

Expand All @@ -542,8 +542,12 @@
valor: valor.to_i
}
if Aporte.where(ra).count == 0
if Aporte.where(ra.select {|l,v| l != :valor}).count > 0
preg << "Exisitía aporte para el mes #{anio}-#{mes} por valor diferente #{valor.to_i} --manteniendolo"
bo = Aporte.where(ra.select {|l,v| l != :valor})
if bo.count > 0
aporte = bo.take
preg << "Exisitía aporte para el mes #{anio}-#{mes} por valor #{aporte.valor} diferente al del csv #{valor.to_i} --reemplazando"
aporte.valor = valor.to_i
aporte.save
else
aporte = Aporte.create(ra)
numap += 1
Expand All @@ -565,6 +569,8 @@
numerr += 1

end

STDERR.puts preg
end
end #csvprob

Expand Down

0 comments on commit 0421bb1

Please sign in to comment.