Commit 2d7aa1429c1e0224cfcc4dea2a8d9f0002059533

Authored by Jose Pinto
1 parent 75673aac7e
Exists in master

codigo y nombre vendedor al seleccionarlo

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
src/js/controller.js
... ... @@ -452,7 +452,7 @@ angular.module('focaCrearNotaPedido') .controller('notaPedidoCtrl',
452 452 function(vendedor) {
453 453 $scope.$broadcast('addCabecera', {
454 454 label: 'Vendedor:',
455   - valor: vendedor.NomVen
  455 + valor: vendedor.CodVen + ' - ' + vendedor.NomVen
456 456 });
457 457 $scope.notaPedido.vendedor = vendedor;
458 458 }, function() {