controller.js
816 Bytes
angular.module('focaAbmCliente')
.controller('focaAbmClienteController', [
'$scope', 'focaAbmClienteService', '$location', '$uibModal',
'focaModalService', 'focaBotoneraLateralService', '$timeout', '$localStorage',
'$routeParams', '$filter',
function($scope, focaAbmClienteService, $location, $uibModal, focaModalService,
focaBotoneraLateralService, $timeout, $localStorage, $routeParams, $filter) {
//SETEO BOTONERA LATERAL
$timeout(function() {
focaBotoneraLateralService.showSalir(false);
focaBotoneraLateralService.showPausar(false);
focaBotoneraLateralService.showCancelar(false);
focaBotoneraLateralService.showGuardar(true);
});
}
]);