Commit 2cd6217a01ca2fcb50e65578935631779cf37eb8
1 parent
94f8479014
Exists in
master
and in
1 other branch
cliente
Showing
1 changed file
with
4 additions
and
1 deletions
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/>'; |