Commit a3085807c9fa81226a44c19555c24ec57bd02b6c

Authored by Nicolás Guarnieri
1 parent bbd0c77ce8
Exists in master and in 1 other branch develop

cantidad

Showing 1 changed file with 4 additions and 1 deletions   Show diff stats
src/js/osm-directive.js
... ... @@ -77,8 +77,11 @@ angular.module('focaAdminSeguimiento').directive('osm', function() {
77 77 if ($scope.parametros.individual) {
78 78 if (marcador.distancia) {
79 79 observacion += '<br/>Distancia a casa central: ' +
80   - marcador.distancia + 'km';
  80 + marcador.distancia + 'km' + '<br/>';
81 81 }
  82 + } else {
  83 + observacion += 'Cantidad de cobranzas: ' +
  84 + marcador.cantidad;
82 85 }
83 86 }
84 87