Commit e86e11d0c7041ec18576a2a2b37209d6481a4483

Authored by Eric
1 parent ee56d2f579
Exists in master and in 1 other branch develop

fix cabecera

Showing 1 changed file with 8 additions and 0 deletions   Show diff stats
src/js/controller.js
... ... @@ -731,6 +731,14 @@ angular.module('focaParametros')
731 731 });
732 732 }
733 733  
  734 + if ($scope[entidad.modulo].transportista) {
  735 + cabeceras.push({
  736 + label: 'Transportista',
  737 + valor: $filter('rellenarDigitos')($scope[entidad.modulo].transportista.COD,
  738 + 5) + ' - ' + $scope[entidad.modulo].transportista.NOM
  739 + });
  740 + }
  741 +
734 742 addArrayCabecera(cabeceras, entidad.modulo);
735 743  
736 744 }