(function () { 'use strict'; angular .module('codeAPLEBOX.client.user.customer.detailstatus.overstoredstatus.detailofoverstoredstatus') .config(detailofoverstoredstatusConfig); /* @ngInject */ function detailofoverstoredstatusConfig($stateProvider) { $stateProvider // 로그인 안된 상태 .state('customer.detailofoverstoredstatus', { url: '/customer/detailofoverstoredstatus', views: { 'content': { templateUrl: 'app/layout/user/customer/detailstatus/overstoredstatus/detailofoverstoredstatus/detailofoverstoredstatus.tmpl.html', controller: 'detailofoverstoredstatusController', controllerAs: 'vm' } }, params: { checkDetailViewOverstoredstatus: null, receiptId: null } }); } })();