(function () { 'use strict'; angular .module( 'codeAPLEBOX.client', [ 'ui.router', // Route 모듈 'ui.router.state.events', 'codeAPLEBOX.client.constant', // Constant 모듈 - 서버 shared 환경 변수로 자동 생성 모듈 'codeAPLEBOX.client.models.webAPI_employee', // web_employee 모듈 'codeAPLEBOX.client.models.webAPI_customer', // web_customer 모듈 'codeAPLEBOX.client.models.auth', //auth employee 모듈 'codeNongHyup.client.models.webAPI_admin', //auth admin 모듈 'codeAPLEBOX.client.user.home', 'codeAPLEBOX.client.user.employeeLogin', // 직원 로그인 'codeAPLEBOX.client.user.employeeLogin.findpassword', // 직원 로그인 --> 패스워드 찾기 'codeAPLEBOX.client.user.customerLogin', // 고객 로그인 'codeAPLEBOX.client.user.customerLogin.customerjoinstep1', // 고객 로그인-step1 'codeAPLEBOX.client.user.customerLogin.customerjoinstep2', // 고객 로그인-step2 'codeAPLEBOX.client.user.customerLogin.findpassword', // 고객 로그인-패스워드찾기 /*직원*/ // 재고 'codeAPLEBOX.client.user.employee.stock.stockstatus',// 직원 -> 재고 -> 재고현황 'codeAPLEBOX.client.user.employee.stock.releasestatus',// 직원 -> 재고 -> 출고내역 'codeAPLEBOX.client.user.employee.stock.storedstatus',// 직원 -> 재고 -> 입고내역 // 고객 'codeAPLEBOX.client.user.employee.customer.monthlystatus', // 고객 --> 월별현황 'codeAPLEBOX.client.user.employee.customer.monthlystatus.detailmonthlystatus', // 고객 --> 월별현황 --> 상세 'codeAPLEBOX.client.user.employee.customer.customerlist', // 고객 --> 고객 목록, 가입승인관리 'codeAPLEBOX.client.user.employee.customer.depositmanagement', // 고객 --> 보증금 관리 'codeAPLEBOX.client.user.employee.customer.depositmanagement.detaildepositmanagement', // 고객 --> 보증금 관리 --> 상세 'codeAPLEBOX.client.user.employee.customer.transferstatus', // 고객 --> 이관/수관 내역 // 시스템 'codeAPLEBOX.client.user.employee.system.employeelist', // 시스템 --> 직원 관리 'codeAPLEBOX.client.user.employee.system.settingauthority', // 시스템 --> 권한 설정 'codeAPLEBOX.client.user.employee.system.settingfee', // 시스템 --> 요금 설정 'codeAPLEBOX.client.user.employee.system.serviceaggrements', // 시스템 --> 서비스 약관 /*고객*/ // 홈 'codeAPLEBOX.client.user.customer.home', // 홈 'codeAPLEBOX.client.user.customer.home.rentpermonth', //홈 --> 월별 대여 내역 'codeAPLEBOX.client.user.customer.home.rentpermonth.detailrentpermonth', //홈 --> 월별 대여 내역 --> 상세 'codeAPLEBOX.client.user.customer.home.rents', //홈 --> 대여현황 'codeAPLEBOX.client.user.customer.home.rents.detailrents', //홈 --> 대여현황 --> 상세내역 // 상세내역 'codeAPLEBOX.client.user.customer.detailstatus.rentstatus', // 상세내역 --> 대여내역 'codeAPLEBOX.client.user.customer.detailstatus.rentstatus.detailofrentstatus', // 상세내역 --> 대여내역 --> 상세 'codeAPLEBOX.client.user.customer.detailstatus.returnstatus', // 상세내역 --> 반납내역 'codeAPLEBOX.client.user.customer.detailstatus.returnstatus.detailofreturnstatus', // 상세내역 --> 반납내역 --> 상세 'codeAPLEBOX.client.user.customer.detailstatus.overstoredstatus', // 상세내역 --> 오버입고 'codeAPLEBOX.client.user.customer.detailstatus.overstoredstatus.detailofoverstoredstatus', // 상세내역 --> 오버입고 --> 상세 /*이관 / 수관*/ 'codeAPLEBOX.client.user.customer.transfer', // 이관/수관 'codeAPLEBOX.client.user.customer.transfer.detailtransfer', // 이관/수관 --> 상세 'codeAPLEBOX.client.user.customer.transfer.customersearch', // 이관/수관 --> 고객검색 'codeAPLEBOX.client.user.customer.transfer.customersearch.requesttransfer', // 이관/수관 --> 고객검색 --> 이관요청 /* 설정 */ 'codeAPLEBOX.client.user.customer.setting', // 설정 'codeAPLEBOX.client.user.customer.setting.modifymyinfo', // 설정 --> 내정보수정 'codeAPLEBOX.client.user.customer.setting.mydeposit', // 설정 --> 내 보증금 'codeAPLEBOX.client.user.customer.setting.viewterms', // 설정 --> 약관보기 'codeAPLEBOX.client.user.customer.setting.membershipwithdrawal', // 설정 --> 회원탈퇴 'ngCookies', 'ng-currency', 'angularMoment', 'textAngular', 'ngSanitize', 'ngFileUpload' ]) })();