Commit e8faf1a5e1ee21e5d19ec329da24189f778195dd
Exists in
master
and in
1 other branch
Merge branch 'master' into 'master'
Master See merge request modulos-npm/foca-admin-seguimiento!17
Showing
1 changed file
Show diff stats
src/js/osm-directive.js
... | ... | @@ -33,6 +33,8 @@ angular.module('focaAdminSeguimiento').directive('osm', function() { |
33 | 33 | marcador.notaPedido[0].sucursal, |
34 | 34 | marcador.notaPedido[0].numeroNotaPedido |
35 | 35 | ]) + '<br/>'; |
36 | + observacion += 'Cliente: ' + | |
37 | + marcador.notaPedido[0].cliente[0].NOM + '<br/>'; | |
36 | 38 | if ($scope.parametros.individual) { |
37 | 39 | observacion += |
38 | 40 | 'Total: ' + $filter('currency')(marcador.notaPedido[0].total, '$'); |
... | ... | @@ -56,7 +58,8 @@ angular.module('focaAdminSeguimiento').directive('osm', function() { |
56 | 58 | marcador.remito[0].sucursal, |
57 | 59 | marcador.remito[0].numeroRemito |
58 | 60 | ]) + '<br/>'; |
59 | - | |
61 | + observacion += 'Cliente: ' + | |
62 | + marcador.remito[0].cliente[0].NOM + '<br/>'; | |
60 | 63 | if ($scope.parametros.individual) { |
61 | 64 | observacion += 'Producto: ' + |
62 | 65 | marcador.remito[0].articuloRemito[0].descripcion + '<br/>'; |