GITLAB

Eric Fernandez / foca-informes

Sign in
  • Sign in
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • foca-informes
  • src
  • js
  • service.js
  • 17f57ee95   agrego informe choferes Browse Code ยป
    Jose Pinto
    2019-01-31 17:00:29 -0300  
service.js 564 Bytes
edit raw blame history
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
angular.module('focaInformes')
    .factory('focaInformesService', ['$http', 'API_ENDPOINT', function($http, API_ENDPOINT) {
        return {
            getBotonera: function() {
                var result = [
                    {
                        label: 'Hojas de ruta',
                        image: 'cliente.png'
                    },
                    {
                        label: 'Choferes',
                        image: 'chofer.png'
                    }
                ];
                return result;
            }
        };
    }]);