Commit 960bd05b6b3c650d732a56f8479737f5fe4dd83a
1 parent
ce06ed3998
Exists in
master
espacios
Showing
1 changed file
with
3 additions
and
3 deletions
Show diff stats
src/js/osm-directive.js
... | ... | @@ -33,16 +33,16 @@ angular.module('focaLogisticaPedidoRuta').directive('foca', function() { |
33 | 33 | observacion += 'Cliente: ' + |
34 | 34 | marcador.notaPedido.cliente.NOM + '<br/>'; |
35 | 35 | |
36 | - if ($scope.parametros.individual) { | |
36 | + if($scope.parametros.individual) { | |
37 | 37 | observacion += |
38 | 38 | 'Total: ' + $filter('currency')(marcador.notaPedido.total, '$'); |
39 | 39 | observacion = 'Orden: ' + marcador.orden + '<br/>' + observacion; |
40 | 40 | |
41 | - if (marcador.distancia) { | |
41 | + if(marcador.distancia) { | |
42 | 42 | observacion += '<br/>Distancia a casa central: ' + |
43 | 43 | marcador.distancia + 'km'; |
44 | 44 | } |
45 | - } else { | |
45 | + }else { | |
46 | 46 | observacion += 'Cantidad de nota de pedido: ' + |
47 | 47 | marcador.cantidad + '<br/>'; |
48 | 48 | observacion += 'Total Vendido: ' + |