Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
e3522021e7
@ -758,6 +758,7 @@ public class MjonKakaoATController {
|
||||
String profileId = resultChannelList.get(i).getProfileId();
|
||||
String deleteYn = resultChannelList.get(i).getDeleteYn();
|
||||
String userId = resultChannelList.get(i).getUserId();
|
||||
String lastUpdtPnttm = resultChannelList.get(i).getLastUpdtPnttm();
|
||||
kakaoProfileVO.setSenderKey(senderKey);
|
||||
kakaoProfileVO.setProfileId(profileId);
|
||||
|
||||
@ -774,6 +775,7 @@ public class MjonKakaoATController {
|
||||
returnChannelVO.setModifiedAt(tmpProfileVO.getModifiedAt());
|
||||
returnChannelVO.setDeleteYn(deleteYn);
|
||||
returnChannelVO.setUserId(userId);
|
||||
returnChannelVO.setLastUpdtPnttm(lastUpdtPnttm);
|
||||
|
||||
resultApiProfileList.add(returnChannelVO);
|
||||
|
||||
|
||||
@ -577,7 +577,7 @@ public class ApiKeyMngController {
|
||||
*/
|
||||
@RequestMapping(value = {"/uss/ion/apikey/UserAPIInsertAPIKEYAjax.do"})
|
||||
public ModelAndView UserAPIInsertAPIKEYAjax(
|
||||
//@RequestParam("mberId") String p_mberId,
|
||||
@RequestParam("mberId") String p_mberId,
|
||||
Model model) throws Exception {
|
||||
|
||||
ModelAndView modelAndView = new ModelAndView();
|
||||
@ -588,13 +588,12 @@ public class ApiKeyMngController {
|
||||
String userId = loginVO == null ? "" : EgovStringUtil.isNullToString(loginVO.getId());
|
||||
System.out.println("1111111111112");
|
||||
ApiKeyVO apiKeyVO = new ApiKeyVO();
|
||||
apiKeyVO.setMberId(userId);
|
||||
apiKeyVO.setMberId(p_mberId);
|
||||
apiKeyVO.setUseYn("A");
|
||||
apiKeyVO.setAccessKey("");
|
||||
|
||||
//키 생성 없이 신청서만 생성한다.
|
||||
//난수
|
||||
/*
|
||||
//난수
|
||||
String p_make_apikey;
|
||||
List<ApiKeyVO> resultList = new ArrayList<ApiKeyVO>();
|
||||
do {
|
||||
@ -605,8 +604,7 @@ public class ApiKeyMngController {
|
||||
apiKeyVO.setAccessKey(p_make_apikey);
|
||||
resultList = apiKeyMngService.selectCheckApiKeyDup(apiKeyVO);
|
||||
|
||||
}while(resultList.size()>=1);
|
||||
*/
|
||||
}while(resultList.size()>=1);
|
||||
|
||||
//step3.create user and api key
|
||||
apiKeyVO.setLastUpdusrId(userId);
|
||||
|
||||
@ -124,35 +124,46 @@ public class MjonEventController {
|
||||
return modelAndView;
|
||||
|
||||
}
|
||||
|
||||
// Step 0. B선 전송사 이용고객 => 이벤트대상 제외처리
|
||||
MberManageVO mberManageVO = new MberManageVO();
|
||||
mberManageVO.setMberId(loginVO.getId());
|
||||
String blineCode = mberManageService.selectBlineCodeByMberId(mberManageVO);
|
||||
if (blineCode != null && blineCode.equals("N")) {
|
||||
|
||||
//이벤트 회원 정보 조회
|
||||
MjonEventVO eventMberInfo = selectEventMsgMberDefaultInfo(mjonEventVO, resultEvent.getNttId(), bbsId, loginVO.getId(), loginVO.getName());
|
||||
|
||||
int resultCnt = 0;
|
||||
|
||||
if(eventMberInfo == null) {//등록된 회원정보가 없으면 정보 입력
|
||||
mjonEventVO.setEventStatus("N");
|
||||
resultCnt = mjonEventService.insertEventMsgMberDefaultInfo(mjonEventVO);
|
||||
}else {//등록된 회원정보가 있으면 화면 이동 및 메세지 처리
|
||||
//이벤트 회원 정보 조회
|
||||
MjonEventVO eventMberInfo = selectEventMsgMberDefaultInfo(mjonEventVO, resultEvent.getNttId(), bbsId, loginVO.getId(), loginVO.getName());
|
||||
|
||||
String status = eventMberInfo.getEventStatus();
|
||||
int resultCnt = 0;
|
||||
|
||||
if(status.equals("Y")) {//이벤트가 진행중인 경우
|
||||
if(eventMberInfo == null) {//등록된 회원정보가 없으면 정보 입력
|
||||
mjonEventVO.setEventStatus("N");
|
||||
resultCnt = mjonEventService.insertEventMsgMberDefaultInfo(mjonEventVO);
|
||||
}else {//등록된 회원정보가 있으면 화면 이동 및 메세지 처리
|
||||
|
||||
modelAndView.addObject("resultSts", "eventJoined");
|
||||
String status = eventMberInfo.getEventStatus();
|
||||
|
||||
}else if(status.equals("E")) {//이벤트가 종료된 경우
|
||||
|
||||
modelAndView.addObject("resultSts", "eventEnded");
|
||||
|
||||
}else {//이벤트 미진행인 경우 성공으로 결제페이지로 이동되도록 한다.
|
||||
|
||||
modelAndView.addObject("resultSts", "success");
|
||||
if(status.equals("Y")) {//이벤트가 진행중인 경우
|
||||
|
||||
modelAndView.addObject("resultSts", "eventJoined");
|
||||
|
||||
}else if(status.equals("E")) {//이벤트가 종료된 경우
|
||||
|
||||
modelAndView.addObject("resultSts", "eventEnded");
|
||||
|
||||
}else {//이벤트 미진행인 경우 성공으로 결제페이지로 이동되도록 한다.
|
||||
|
||||
modelAndView.addObject("resultSts", "success");
|
||||
|
||||
}
|
||||
|
||||
return modelAndView;
|
||||
}
|
||||
}
|
||||
else {
|
||||
modelAndView.addObject("resultSts", "eventBline");
|
||||
|
||||
return modelAndView;
|
||||
|
||||
return modelAndView;
|
||||
}
|
||||
|
||||
modelAndView.addObject("resultSts", "success");
|
||||
@ -270,31 +281,42 @@ public class MjonEventController {
|
||||
|
||||
if(resultEvent != null) {//진행중 이벤트 이면 이벤트 게시글 번호 셋팅
|
||||
|
||||
//이벤트 회원 정보 조회
|
||||
MjonEventVO mjonEventVO = new MjonEventVO();
|
||||
MjonEventVO eventMberInfo = selectEventMsgMberDefaultInfo(mjonEventVO, resultEvent.getNttId(), bbsId, loginVO.getId(), loginVO.getName());
|
||||
|
||||
int resultCnt = 0;
|
||||
|
||||
if(eventMberInfo == null) {//등록된 회원정보가 없으면 정보 입력
|
||||
mjonEventVO.setEventStatus("N");
|
||||
resultCnt = mjonEventService.insertEventMsgMberDefaultInfo(mjonEventVO);
|
||||
}else {//등록된 회원정보가 있으면 화면 이동 및 메세지 처리
|
||||
// Step 0. B선 전송사 이용고객 => 이벤트대상 제외처리
|
||||
MberManageVO mberManageVO = new MberManageVO();
|
||||
mberManageVO.setMberId(userId);
|
||||
String blineCode = mberManageService.selectBlineCodeByMberId(mberManageVO);
|
||||
if (blineCode != null && blineCode.equals("N")) {
|
||||
|
||||
String status = eventMberInfo.getEventStatus();
|
||||
//이벤트 회원 정보 조회
|
||||
MjonEventVO mjonEventVO = new MjonEventVO();
|
||||
MjonEventVO eventMberInfo = selectEventMsgMberDefaultInfo(mjonEventVO, resultEvent.getNttId(), bbsId, loginVO.getId(), loginVO.getName());
|
||||
|
||||
if(status.equals("Y")) {//이벤트가 진행중인 경우
|
||||
|
||||
redirectAttributes.addFlashAttribute("message", "현재 첫 결제 이벤트를 진행중입니다.");
|
||||
return "redirect:/web/main/mainPage.do";
|
||||
|
||||
}else if(status.equals("E")) {//이벤트가 종료된 경우
|
||||
|
||||
redirectAttributes.addFlashAttribute("message", "현재 첫 결제 이벤트를 완료 하였습니다.");
|
||||
return "redirect:/web/main/mainPage.do";
|
||||
|
||||
}
|
||||
int resultCnt = 0;
|
||||
|
||||
if(eventMberInfo == null) {//등록된 회원정보가 없으면 정보 입력
|
||||
mjonEventVO.setEventStatus("N");
|
||||
resultCnt = mjonEventService.insertEventMsgMberDefaultInfo(mjonEventVO);
|
||||
}else {//등록된 회원정보가 있으면 화면 이동 및 메세지 처리
|
||||
|
||||
String status = eventMberInfo.getEventStatus();
|
||||
|
||||
if(status.equals("Y")) {//이벤트가 진행중인 경우
|
||||
|
||||
redirectAttributes.addFlashAttribute("message", "현재 첫 결제 이벤트를 진행중입니다.");
|
||||
return "redirect:/web/main/mainPage.do";
|
||||
|
||||
}else if(status.equals("E")) {//이벤트가 종료된 경우
|
||||
|
||||
redirectAttributes.addFlashAttribute("message", "현재 첫 결제 이벤트를 완료 하였습니다.");
|
||||
return "redirect:/web/main/mainPage.do";
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
else {
|
||||
redirectAttributes.addFlashAttribute("message", "이벤트 대상자가 아닙니다.");
|
||||
return "redirect:/web/main/mainPage.do";
|
||||
}
|
||||
|
||||
}else {//이벤트 게시글 정보가 없으면 0으로 셋팅.
|
||||
|
||||
@ -77,10 +77,8 @@ public class MjonEventPayV2Controller {
|
||||
}
|
||||
|
||||
// 하드코딩
|
||||
if(!userId.equals("nobledeco")) {
|
||||
if(!userId.equals("nopay")) {
|
||||
return "redirect:/web/main/mainPage.do";
|
||||
}
|
||||
if(!userId.equals("nobledeco") && !userId.equals("nobledeco2") && !userId.equals("nopay")) {
|
||||
return "redirect:/web/main/mainPage.do";
|
||||
}
|
||||
|
||||
//기존 결제 내역이 있는 회원인지 확인
|
||||
@ -103,31 +101,41 @@ public class MjonEventPayV2Controller {
|
||||
|
||||
if(resultEvent != null) {//진행중 이벤트 이면 이벤트 게시글 번호 셋팅
|
||||
|
||||
//이벤트 회원 정보 조회
|
||||
MjonEventVO mjonEventVO = new MjonEventVO();
|
||||
MjonEventVO eventMberInfo = selectEventMsgMberDefaultInfo(mjonEventVO, resultEvent.getNttId(), bbsId, loginVO.getId(), loginVO.getName());
|
||||
|
||||
int resultCnt = 0;
|
||||
|
||||
if(eventMberInfo == null) {//등록된 회원정보가 없으면 정보 입력
|
||||
mjonEventVO.setEventStatus("N");
|
||||
resultCnt = mjonEventService.insertEventMsgMberDefaultInfo(mjonEventVO);
|
||||
}else {//등록된 회원정보가 있으면 화면 이동 및 메세지 처리
|
||||
// Step 0. B선 전송사 이용고객 => 이벤트대상 제외처리
|
||||
MberManageVO mberManageVO = new MberManageVO();
|
||||
mberManageVO.setMberId(userId);
|
||||
String blineCode = mberManageService.selectBlineCodeByMberId(mberManageVO);
|
||||
if (blineCode != null && blineCode.equals("N")) {
|
||||
//이벤트 회원 정보 조회
|
||||
MjonEventVO mjonEventVO = new MjonEventVO();
|
||||
MjonEventVO eventMberInfo = selectEventMsgMberDefaultInfo(mjonEventVO, resultEvent.getNttId(), bbsId, loginVO.getId(), loginVO.getName());
|
||||
|
||||
String status = eventMberInfo.getEventStatus();
|
||||
int resultCnt = 0;
|
||||
|
||||
if(status.equals("Y")) {//이벤트가 진행중인 경우
|
||||
if(eventMberInfo == null) {//등록된 회원정보가 없으면 정보 입력
|
||||
mjonEventVO.setEventStatus("N");
|
||||
resultCnt = mjonEventService.insertEventMsgMberDefaultInfo(mjonEventVO);
|
||||
}else {//등록된 회원정보가 있으면 화면 이동 및 메세지 처리
|
||||
|
||||
redirectAttributes.addFlashAttribute("message", "현재 첫 결제 이벤트를 진행중입니다.");
|
||||
return "redirect:/web/main/mainPage.do";
|
||||
String status = eventMberInfo.getEventStatus();
|
||||
|
||||
}else if(status.equals("E")) {//이벤트가 종료된 경우
|
||||
if(status.equals("Y")) {//이벤트가 진행중인 경우
|
||||
|
||||
redirectAttributes.addFlashAttribute("message", "현재 첫 결제 이벤트를 진행중입니다.");
|
||||
return "redirect:/web/main/mainPage.do";
|
||||
|
||||
}else if(status.equals("E")) {//이벤트가 종료된 경우
|
||||
|
||||
redirectAttributes.addFlashAttribute("message", "현재 첫 결제 이벤트를 완료 하였습니다.");
|
||||
return "redirect:/web/main/mainPage.do";
|
||||
|
||||
}
|
||||
|
||||
redirectAttributes.addFlashAttribute("message", "현재 첫 결제 이벤트를 완료 하였습니다.");
|
||||
return "redirect:/web/main/mainPage.do";
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
else {
|
||||
redirectAttributes.addFlashAttribute("message", "이벤트 대상자가 아닙니다.");
|
||||
return "redirect:/web/main/mainPage.do";
|
||||
}
|
||||
|
||||
}else {//이벤트 게시글 정보가 없으면 0으로 셋팅.
|
||||
|
||||
@ -1841,6 +1841,7 @@ public class MjonPayController {
|
||||
"/web/member/pay/PayListCardAjax.do",
|
||||
"/web/member/pay/PayListVBankAjax.do",
|
||||
"/web/member/pay/PayListBankAjax.do",
|
||||
"/web/member/pay/PayListSPayAjax.do",
|
||||
"/web/member/pay/PayListOfflineAjax.do",
|
||||
"/web/member/pay/PayListRefundAjax.do"
|
||||
})
|
||||
@ -1894,6 +1895,7 @@ public class MjonPayController {
|
||||
|| pattern.equals("/web/member/pay/PayListCardAjax.do")
|
||||
|| pattern.equals("/web/member/pay/PayListVBankAjax.do")
|
||||
|| pattern.equals("/web/member/pay/PayListBankAjax.do")
|
||||
|| pattern.equals("/web/member/pay/PayListSPayAjax.do")
|
||||
|| pattern.equals("/web/member/pay/PayListOfflineAjax.do")
|
||||
|| pattern.equals("/web/member/pay/PayListRefundAjax.do")
|
||||
) { //전체 , 모바일, 신용카드
|
||||
@ -2024,6 +2026,11 @@ public class MjonPayController {
|
||||
mjonPayVO.setPayMethod("BANK");
|
||||
mjonPayVO.setPageType("bank");
|
||||
}
|
||||
if(pattern.equals("/web/member/pay/PayListSPayAjax.do")) { //즉시이체
|
||||
mjonPayVO.setSearchCondition2("SPAY");
|
||||
mjonPayVO.setPayMethod("SPAY");
|
||||
mjonPayVO.setPageType("SPAY");
|
||||
}
|
||||
if(pattern.equals("/web/member/pay/PayListOfflineAjax.do")) { //무통장
|
||||
mjonPayVO.setSearchCondition2("OFFLINE");
|
||||
mjonPayVO.setPayMethod("OFFLINE");
|
||||
|
||||
@ -946,7 +946,7 @@ public class MjonPayV2Controller {
|
||||
UserManageVO userManageVO = new UserManageVO();
|
||||
userManageVO.setSmishingYn("Y");
|
||||
userManageVO.setMberId(Userid);
|
||||
userManageService.updateOneUserSmishingYn(userManageVO);
|
||||
userManageService.updateOneUserSmishingYnNotAlert(userManageVO);
|
||||
}
|
||||
else {
|
||||
// 대상 : 휴대폰결제, 즉시이체, 전용계좌
|
||||
@ -977,7 +977,7 @@ public class MjonPayV2Controller {
|
||||
UserManageVO userManageVO = new UserManageVO();
|
||||
userManageVO.setSmishingYn("Y");
|
||||
userManageVO.setMberId(Userid);
|
||||
userManageService.updateOneUserSmishingYn(userManageVO);
|
||||
userManageService.updateOneUserSmishingYnNotAlert(userManageVO);
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -1376,7 +1376,7 @@ public class MjonPayV2Controller {
|
||||
UserManageVO userManageVO = new UserManageVO();
|
||||
userManageVO.setSmishingYn("Y");
|
||||
userManageVO.setMberId(Userid);
|
||||
userManageService.updateOneUserSmishingYn(userManageVO);
|
||||
userManageService.updateOneUserSmishingYnNotAlert(userManageVO);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -929,13 +929,25 @@ public class RefundController {
|
||||
* 결제취소 등록
|
||||
* @param RefundVO
|
||||
* @param model
|
||||
* @return "/uss/ion/pay/RefundRegist"
|
||||
* @return "/uss/ion/pay/cancelRegist"
|
||||
* @throws Exception
|
||||
*/
|
||||
@RequestMapping(value="/uss/ion/pay/cancelRegist.do")
|
||||
public String cancelRegist(@ModelAttribute("refundVO") RefundVO refundVO) throws Exception{
|
||||
return "/uss/ion/pay/cancelRegist";
|
||||
}
|
||||
|
||||
/**
|
||||
* 환불 등록
|
||||
* @param RefundVO
|
||||
* @param model
|
||||
* @return "/uss/ion/pay/RefundRegist"
|
||||
* @throws Exception
|
||||
*/
|
||||
@RequestMapping(value="/uss/ion/pay/refundRegist.do")
|
||||
public String refundRegist(@ModelAttribute("refundVO") RefundVO refundVO) throws Exception{
|
||||
return "/uss/ion/pay/RefundRegist";
|
||||
}
|
||||
|
||||
/**
|
||||
* 결제취소 페이지
|
||||
@ -1000,6 +1012,86 @@ public class RefundController {
|
||||
return ResponseEntity.ok().body(refundService.insertPayCanAjax(userInfoAdd(refundVO)));
|
||||
}
|
||||
|
||||
|
||||
@RequestMapping(value = {"/uss/ion/msg/refMonInsAjax.do"})
|
||||
public ModelAndView refMonInsAjax(final MultipartHttpServletRequest multiRequest
|
||||
, RefundVO refundVO , HttpServletRequest request) throws Exception {
|
||||
|
||||
ModelAndView modelAndView = new ModelAndView();
|
||||
modelAndView.setViewName("jsonView");
|
||||
|
||||
try {
|
||||
String atchFileId = "";
|
||||
final Map<String, MultipartFile> files = multiRequest.getFileMap();
|
||||
if (!files.isEmpty()) {
|
||||
if(files.containsKey("bank")){
|
||||
Map<String, MultipartFile> tmpMap = new LinkedHashMap<>();
|
||||
tmpMap.put("bank", files.get("bank"));
|
||||
List<FileVO> result = fileUtil.parseFileInf(tmpMap, "REFUND_", 0, "", "", "");
|
||||
atchFileId = fileMngService.insertFileInfs(result);
|
||||
refundVO.setBankAtchFileId(atchFileId);
|
||||
}
|
||||
if(files.containsKey("docu")){
|
||||
Map<String, MultipartFile> tmpMap = new LinkedHashMap<>();
|
||||
tmpMap.put("docu", files.get("docu"));
|
||||
List<FileVO> result = fileUtil.parseFileInf(tmpMap, "REFUND_", 0, "", "", "");
|
||||
atchFileId = fileMngService.insertFileInfs(result);
|
||||
refundVO.setDocuAtchFileId(atchFileId);
|
||||
}
|
||||
}
|
||||
|
||||
refundVO.setFrstRegisterId(refundVO.getMberId());
|
||||
refundVO.setRefundStatus("1");
|
||||
refundService.insertRefund(refundVO);
|
||||
|
||||
modelAndView.addObject("status", "success");
|
||||
}catch (Exception e) {
|
||||
System.out.println("REFUND ERROR : " + e.getMessage());
|
||||
|
||||
modelAndView.addObject("status", "fail");
|
||||
}
|
||||
|
||||
return modelAndView;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 환불신청금액(환불요청 상태) Ajax
|
||||
* @param RefundVO
|
||||
* @param model
|
||||
* @return modelAndView
|
||||
* @throws Exception
|
||||
*/
|
||||
@RequestMapping(value = {"/uss/ion/pay/refMonSumAjax.do"})
|
||||
public ModelAndView refMonSumAjax(RefundVO refundVO, HttpServletRequest request) throws Exception {
|
||||
|
||||
ModelAndView modelAndView = new ModelAndView();
|
||||
modelAndView.setViewName("jsonView");
|
||||
|
||||
boolean isSuccess = true;
|
||||
String msg = "";
|
||||
int refundMoneySum = 0;
|
||||
int userMoney = 0;
|
||||
|
||||
try {
|
||||
refundVO = refundService.selectRefundMberInfo(refundVO);
|
||||
userMoney = (int)Double.parseDouble(refundVO.getMberMoney()); // 보유Cash
|
||||
|
||||
refundMoneySum = refundService.selectRefundMoneySum(refundVO); // 환불신청금액(환불요청 상태)
|
||||
|
||||
} catch (Exception e) {
|
||||
isSuccess = false;
|
||||
msg = e.getMessage();
|
||||
}
|
||||
|
||||
modelAndView.addObject("isSuccess", isSuccess);
|
||||
modelAndView.addObject("msg", msg);
|
||||
modelAndView.addObject("userMoney", userMoney);
|
||||
modelAndView.addObject("refundMoneySum", refundMoneySum);
|
||||
|
||||
return modelAndView;
|
||||
}
|
||||
|
||||
/**
|
||||
* 캐쉬 환불 처리
|
||||
* @param refundVO
|
||||
|
||||
@ -19,6 +19,7 @@ import itn.com.cmm.service.EgovFileMngService;
|
||||
import itn.com.cmm.service.impl.FileManageDAO;
|
||||
import itn.let.fax.user.service.impl.FaxDAO;
|
||||
import itn.let.kakao.user.kakaoAt.service.KakaoAlimTalkService;
|
||||
import itn.let.mjo.mjocommon.MjonCommon;
|
||||
import itn.let.mjo.msgdata.service.MjonMsgDataService;
|
||||
import itn.let.mjo.pay.service.MjonPayService;
|
||||
import itn.let.mjo.pay.service.StVcVO;
|
||||
@ -26,6 +27,9 @@ import itn.let.mjo.payva.service.VacsAhstService;
|
||||
import itn.let.mjo.payva.service.VacsAhstVO;
|
||||
import itn.let.schdlr.service.SchdlrManageService;
|
||||
import itn.let.schdlr.service.SchdlrVO;
|
||||
import itn.let.sym.site.service.EgovSiteManagerService;
|
||||
import itn.let.uss.umt.service.EgovUserManageService;
|
||||
import itn.let.utl.user.service.MjonNoticeSendUtil;
|
||||
|
||||
@Service("SchdlrManageService")
|
||||
public class SchdlrManageServiceImpl extends EgovAbstractServiceImpl implements SchdlrManageService {
|
||||
@ -73,6 +77,21 @@ public class SchdlrManageServiceImpl extends EgovAbstractServiceImpl implements
|
||||
@Resource(name = "mjonPayService")
|
||||
private MjonPayService mjonPayService;
|
||||
|
||||
/** userManageService */
|
||||
@Resource(name = "userManageService")
|
||||
private EgovUserManageService userManageService;
|
||||
|
||||
/** 사이트 설정 */
|
||||
@Resource(name = "egovSiteManagerService")
|
||||
EgovSiteManagerService egovSiteManagerService;
|
||||
|
||||
/** 알림전송 Util */
|
||||
@Resource(name = "mjonNoticeSendUtil")
|
||||
private MjonNoticeSendUtil mjonNoticeSendUtil;
|
||||
|
||||
@Resource(name="MjonCommon")
|
||||
private MjonCommon mjonCommon;
|
||||
|
||||
@Resource(name = "faxDAO")
|
||||
public FaxDAO faxDao;
|
||||
|
||||
@ -343,6 +362,53 @@ public class SchdlrManageServiceImpl extends EgovAbstractServiceImpl implements
|
||||
//세틀뱅크 입금 내역 원장에 처리 완료 내용 입력해 주기
|
||||
vacsAhstService.updateVacsAhstCashComplete(temp);
|
||||
|
||||
/*
|
||||
try {
|
||||
String Userid = temp.getMberId();
|
||||
String mberNm = "";
|
||||
|
||||
// 대상 : 휴대폰결제, 즉시이체, 전용계좌
|
||||
// Step 1. 스미싱의심 지정 여부
|
||||
JoinSettingVO joinSettingVO = new JoinSettingVO();
|
||||
joinSettingVO = egovSiteManagerService.selectAdminNotiDetail();
|
||||
if (joinSettingVO != null && joinSettingVO.getSmishingNoti().equals("Y")) {
|
||||
// Step 1. 개인회원 여부 체크
|
||||
int isPersnalMemberCnt = egovSiteManagerService.selectPersnalMemberCnt(Userid);
|
||||
if (isPersnalMemberCnt == 1) {
|
||||
// Step 2. 첫결제 여부 체크
|
||||
int isFirstPayCnt = egovSiteManagerService.selectFirstPayCnt(Userid);
|
||||
if (isFirstPayCnt == 1) {
|
||||
// SMS 체크
|
||||
if (joinSettingVO != null && joinSettingVO.getSmsNoti().equals("Y")) {
|
||||
// 스미싱의심 SMS 알림전송
|
||||
mjonNoticeSendUtil.smishingSmsNoticeSend("스미싱의심/전용계좌 첫결제", Userid, mberNm);
|
||||
}
|
||||
|
||||
// SLACK 체크
|
||||
if (joinSettingVO != null && joinSettingVO.getSlackNoti().equals("Y")) {
|
||||
// Slack 메시지 발송(단순본문)
|
||||
String msg = "[문자온] 스미싱의심/전용계좌 첫결제 - " + mberNm +"("+ Userid + ")";
|
||||
mjonCommon.sendSimpleSlackMsg(msg);
|
||||
}
|
||||
|
||||
// 스미싱 의심회원으로 변경
|
||||
UserManageVO userManageVO = new UserManageVO();
|
||||
userManageVO.setSmishingYn("Y");
|
||||
userManageVO.setMberId(Userid);
|
||||
userManageService.updateOneUserSmishingYnNotAlert(userManageVO);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
catch (Exception e) {
|
||||
System.out.println("#############################################################");
|
||||
System.out.println("전용계좌 슬랙알림 & 스미싱의심 처리 Error");
|
||||
System.out.println("전용계좌 TrNo : " + temp.getTrNo());
|
||||
System.out.println("전용계좌 e.getMessage() : " + e.getMessage());
|
||||
}
|
||||
*/
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@ -0,0 +1,9 @@
|
||||
package itn.let.sym.grd.service;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public interface MberGrdService {
|
||||
|
||||
List<MberGrdVO> selectMberGrdSettingList(MberGrdVO mberGrdVO) throws Exception ;
|
||||
|
||||
}
|
||||
151
src/main/java/itn/let/sym/grd/service/MberGrdVO.java
Normal file
151
src/main/java/itn/let/sym/grd/service/MberGrdVO.java
Normal file
@ -0,0 +1,151 @@
|
||||
package itn.let.sym.grd.service;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public class MberGrdVO {
|
||||
|
||||
private int grdSetNo; // 등급설정번호
|
||||
private String grdSetNm; // 등급설정명
|
||||
private long totAmt; // 누적결제액
|
||||
private String totAmtComma; // 누적결제액(콤마)
|
||||
private float shortPrice; // 단문 단가
|
||||
private float longPrice; //장문 단가
|
||||
private float picturePrice; // 그림 단가
|
||||
private float picture2Price; // 그림 2장단가
|
||||
private float picture3Price; // 그림 3장단가
|
||||
private String regId; // 최초등록자 아이디
|
||||
private String regDate; // 최초등록 일자
|
||||
private String editId; // 수정등록자 아이디
|
||||
private String editDate; // 수정등록 일자
|
||||
|
||||
private List<String> grdSetNos;
|
||||
private List<String> totAmts;
|
||||
private List<String> shortPrices;
|
||||
private List<String> longPrices;
|
||||
private List<String> picturePrices;
|
||||
private List<String> picture2Prices;
|
||||
private List<String> picture3Prices;
|
||||
|
||||
public int getGrdSetNo() {
|
||||
return grdSetNo;
|
||||
}
|
||||
public void setGrdSetNo(int grdSetNo) {
|
||||
this.grdSetNo = grdSetNo;
|
||||
}
|
||||
public String getGrdSetNm() {
|
||||
return grdSetNm;
|
||||
}
|
||||
public void setGrdSetNm(String grdSetNm) {
|
||||
this.grdSetNm = grdSetNm;
|
||||
}
|
||||
public long getTotAmt() {
|
||||
return totAmt;
|
||||
}
|
||||
public void setTotAmt(long totAmt) {
|
||||
this.totAmt = totAmt;
|
||||
}
|
||||
public String getTotAmtComma() {
|
||||
return totAmtComma;
|
||||
}
|
||||
public void setTotAmtComma(String totAmtComma) {
|
||||
this.totAmtComma = totAmtComma;
|
||||
}
|
||||
public float getShortPrice() {
|
||||
return shortPrice;
|
||||
}
|
||||
public void setShortPrice(float shortPrice) {
|
||||
this.shortPrice = shortPrice;
|
||||
}
|
||||
public float getLongPrice() {
|
||||
return longPrice;
|
||||
}
|
||||
public void setLongPrice(float longPrice) {
|
||||
this.longPrice = longPrice;
|
||||
}
|
||||
public float getPicturePrice() {
|
||||
return picturePrice;
|
||||
}
|
||||
public void setPicturePrice(float picturePrice) {
|
||||
this.picturePrice = picturePrice;
|
||||
}
|
||||
public float getPicture2Price() {
|
||||
return picture2Price;
|
||||
}
|
||||
public void setPicture2Price(float picture2Price) {
|
||||
this.picture2Price = picture2Price;
|
||||
}
|
||||
public float getPicture3Price() {
|
||||
return picture3Price;
|
||||
}
|
||||
public void setPicture3Price(float picture3Price) {
|
||||
this.picture3Price = picture3Price;
|
||||
}
|
||||
public String getRegId() {
|
||||
return regId;
|
||||
}
|
||||
public void setRegId(String regId) {
|
||||
this.regId = regId;
|
||||
}
|
||||
public String getRegDate() {
|
||||
return regDate;
|
||||
}
|
||||
public void setRegDate(String regDate) {
|
||||
this.regDate = regDate;
|
||||
}
|
||||
public String getEditId() {
|
||||
return editId;
|
||||
}
|
||||
public void setEditId(String editId) {
|
||||
this.editId = editId;
|
||||
}
|
||||
public String getEditDate() {
|
||||
return editDate;
|
||||
}
|
||||
public void setEditDate(String editDate) {
|
||||
this.editDate = editDate;
|
||||
}
|
||||
|
||||
public List<String> getGrdSetNos() {
|
||||
return grdSetNos;
|
||||
}
|
||||
public void setGrdSetNos(List<String> grdSetNos) {
|
||||
this.grdSetNos = grdSetNos;
|
||||
}
|
||||
public List<String> getTotAmts() {
|
||||
return totAmts;
|
||||
}
|
||||
public void setTotAmts(List<String> totAmts) {
|
||||
this.totAmts = totAmts;
|
||||
}
|
||||
public List<String> getShortPrices() {
|
||||
return shortPrices;
|
||||
}
|
||||
public void setShortPrices(List<String> shortPrices) {
|
||||
this.shortPrices = shortPrices;
|
||||
}
|
||||
public List<String> getLongPrices() {
|
||||
return longPrices;
|
||||
}
|
||||
public void setLongPrices(List<String> longPrices) {
|
||||
this.longPrices = longPrices;
|
||||
}
|
||||
public List<String> getPicturePrices() {
|
||||
return picturePrices;
|
||||
}
|
||||
public void setPicturePrices(List<String> picturePrices) {
|
||||
this.picturePrices = picturePrices;
|
||||
}
|
||||
public List<String> getPicture2Prices() {
|
||||
return picture2Prices;
|
||||
}
|
||||
public void setPicture2Prices(List<String> picture2Prices) {
|
||||
this.picture2Prices = picture2Prices;
|
||||
}
|
||||
public List<String> getPicture3Prices() {
|
||||
return picture3Prices;
|
||||
}
|
||||
public void setPicture3Prices(List<String> picture3Prices) {
|
||||
this.picture3Prices = picture3Prices;
|
||||
}
|
||||
|
||||
}
|
||||
18
src/main/java/itn/let/sym/grd/service/impl/MberGrdDAO.java
Normal file
18
src/main/java/itn/let/sym/grd/service/impl/MberGrdDAO.java
Normal file
@ -0,0 +1,18 @@
|
||||
package itn.let.sym.grd.service.impl;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import egovframework.rte.psl.dataaccess.EgovAbstractDAO;
|
||||
import itn.let.sym.grd.service.MberGrdVO;
|
||||
|
||||
@Repository("mberGrdDAO")
|
||||
public class MberGrdDAO extends EgovAbstractDAO {
|
||||
|
||||
@SuppressWarnings("unchecked")
|
||||
public List<MberGrdVO> selectMberGrdSettingList(MberGrdVO mberGrdVO) throws Exception{
|
||||
return (List<MberGrdVO>)list("mberGrdDAO.selectMberGrdSettingList", mberGrdVO);
|
||||
}
|
||||
|
||||
}
|
||||
@ -0,0 +1,24 @@
|
||||
package itn.let.sym.grd.service.impl;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import javax.annotation.Resource;
|
||||
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import egovframework.rte.fdl.cmmn.EgovAbstractServiceImpl;
|
||||
import itn.let.sym.grd.service.MberGrdService;
|
||||
import itn.let.sym.grd.service.MberGrdVO;
|
||||
|
||||
@Service("mberGrdService")
|
||||
public class MberGrdServiceImpl extends EgovAbstractServiceImpl implements MberGrdService {
|
||||
|
||||
@Resource(name="mberGrdDAO")
|
||||
MberGrdDAO mberGrdDAO;
|
||||
|
||||
@Override
|
||||
public List<MberGrdVO> selectMberGrdSettingList(MberGrdVO mberGrdVO) throws Exception {
|
||||
return mberGrdDAO.selectMberGrdSettingList(mberGrdVO);
|
||||
}
|
||||
|
||||
}
|
||||
73
src/main/java/itn/let/sym/grd/web/MberGrdController.java
Normal file
73
src/main/java/itn/let/sym/grd/web/MberGrdController.java
Normal file
@ -0,0 +1,73 @@
|
||||
package itn.let.sym.grd.web;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import javax.annotation.Resource;
|
||||
|
||||
import org.springframework.stereotype.Controller;
|
||||
import org.springframework.ui.ModelMap;
|
||||
import org.springframework.web.bind.annotation.ModelAttribute;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.servlet.ModelAndView;
|
||||
|
||||
import egovframework.rte.fdl.security.userdetails.util.EgovUserDetailsHelper;
|
||||
import itn.com.cmm.LoginVO;
|
||||
import itn.let.sym.grd.service.MberGrdService;
|
||||
import itn.let.sym.grd.service.MberGrdVO;
|
||||
|
||||
@Controller
|
||||
public class MberGrdController {
|
||||
|
||||
@Resource(name = "mberGrdService")
|
||||
MberGrdService mberGrdService;
|
||||
|
||||
/**
|
||||
* 등급제 관리 화면
|
||||
*
|
||||
* @param mberGrdVO
|
||||
* @param model
|
||||
* @return
|
||||
* @throws Exception
|
||||
*/
|
||||
@RequestMapping("/sym/grd/selectMberGrdSetting.do")
|
||||
public String selectJoinSetting(MberGrdVO mberGrdVO, ModelMap model) throws Exception {
|
||||
|
||||
List<MberGrdVO> mberGrdSettingList = mberGrdService.selectMberGrdSettingList(mberGrdVO);
|
||||
|
||||
model.addAttribute("mberGrdSettingList", mberGrdSettingList);
|
||||
|
||||
return "/sym/grd/mberGrdSetting";
|
||||
}
|
||||
|
||||
// 등급제 일괄 저장
|
||||
@RequestMapping(value = "/sym/grd/mberGrdSettingMassUpdateAjax.do")
|
||||
public ModelAndView mberGrdSettingMassUpdateAjax(
|
||||
@ModelAttribute("mberGrdVO") MberGrdVO mberGrdVO) throws Exception {
|
||||
|
||||
ModelAndView modelAndView = new ModelAndView();
|
||||
modelAndView.setViewName("jsonView");
|
||||
|
||||
boolean isSuccess = true;
|
||||
String msg = "";
|
||||
|
||||
// 로그인VO에서 사용자 정보 가져오기
|
||||
LoginVO loginVO = (LoginVO)EgovUserDetailsHelper.getAuthenticatedUser();
|
||||
String frstRegisterId = loginVO == null ? "" : loginVO.getId();
|
||||
mberGrdVO.setRegId(frstRegisterId); // 최초등록자ID
|
||||
|
||||
try{
|
||||
// 등급제 업데이트
|
||||
//mberGrdService.updateHashTagList(mberGrdVO);
|
||||
}
|
||||
catch(Exception e) {
|
||||
isSuccess = false;
|
||||
msg = e.getMessage();
|
||||
}
|
||||
|
||||
modelAndView.addObject("isSuccess", isSuccess);
|
||||
modelAndView.addObject("msg", msg);
|
||||
|
||||
return modelAndView;
|
||||
}
|
||||
|
||||
}
|
||||
@ -122,6 +122,11 @@ public class EgovMberManageServiceImpl extends EgovAbstractServiceImpl implement
|
||||
return mberManageDAO.selectMberList(userSearchVO);
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<MberManageVO> selectMberDelTypeGrpList(UserDefaultVO userSearchVO) throws Exception {
|
||||
return mberManageDAO.selectMberDelTypeGrpList(userSearchVO);
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<MberManageVO> selectMberLoginAddList(UserDefaultVO userSearchVO) throws Exception {
|
||||
return mberManageDAO.selectMberLoginAddList(userSearchVO);
|
||||
@ -345,6 +350,11 @@ public class EgovMberManageServiceImpl extends EgovAbstractServiceImpl implement
|
||||
return mberManageDAO.selectMberNmByMberId(mberManageVO);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String selectBlineCodeByMberId(MberManageVO mberManageVO) throws Exception {
|
||||
return mberManageDAO.selectBlineCodeByMberId(mberManageVO);
|
||||
}
|
||||
|
||||
//개인 문자전송 금액 수정하기
|
||||
public int updateUserPrice(MberManageVO mberManageVO) throws Exception{
|
||||
return mberManageDAO.updateUserPrice(mberManageVO);
|
||||
|
||||
@ -75,6 +75,11 @@ public class MberManageDAO extends EgovComAbstractDAO{
|
||||
return (List<MberManageVO>) list("mberManageDAO.selectMberList", userSearchVO);
|
||||
}
|
||||
|
||||
@SuppressWarnings("unchecked")
|
||||
public List<MberManageVO> selectMberDelTypeGrpList(UserDefaultVO userSearchVO){
|
||||
return (List<MberManageVO>) list("mberManageDAO.selectMberDelTypeGrpList", userSearchVO);
|
||||
}
|
||||
|
||||
@SuppressWarnings("unchecked")
|
||||
public List<MberManageVO> selectMberLoginAddList(UserDefaultVO userSearchVO){
|
||||
return (List<MberManageVO>) list("mberManageDAO.selectMberLoginAddList", userSearchVO);
|
||||
@ -181,6 +186,10 @@ public class MberManageDAO extends EgovComAbstractDAO{
|
||||
return (String) select("mberManageDAO.selectMberNmByMberId",mberManageVO);
|
||||
}
|
||||
|
||||
public String selectBlineCodeByMberId(MberManageVO mberManageVO) {
|
||||
return (String) select("mberManageDAO.selectBlineCodeByMberId",mberManageVO);
|
||||
}
|
||||
|
||||
//개인 문자전송 금액 수정하기
|
||||
public int updateUserPrice(MberManageVO mberManageVO) throws Exception{
|
||||
return update("mberManageDAO.updateUserPrice", mberManageVO);
|
||||
|
||||
@ -1726,7 +1726,7 @@ public class EgovLoginController {
|
||||
public boolean goEventPay(LoginVO loginVO) throws Exception {
|
||||
boolean goEventPay = false;
|
||||
MjonEventVO mjonEventVO = new MjonEventVO();
|
||||
|
||||
|
||||
// 이벤트 컨텐츠 정보 불러오기
|
||||
String bbsId = "BBSMSTR_000000000731"; //이벤트 게시판 번호
|
||||
String nttSj = "[첫결제 이벤트] 첫 결제 시, 누구나 조건 없이 인생 최저가!";
|
||||
@ -1742,29 +1742,34 @@ public class EgovLoginController {
|
||||
if (mberNm != null) {
|
||||
loginVO.setName(mberNm);
|
||||
}
|
||||
|
||||
// Step 1. 결제여부 체크(미결제 일때 이벤트 대상)
|
||||
int payCnt = mjonPayService.selectMemerPayCount(loginVO.getId());
|
||||
if (payCnt == 0) {
|
||||
// Step 2. 이벤트 회원 정보 조회
|
||||
MjonEventVO eventMberInfo = selectEventMsgMberDefaultInfo(mjonEventVO, resultEvent.getNttId(), bbsId, loginVO.getId(), loginVO.getName());
|
||||
if(eventMberInfo == null) {//등록된 회원정보가 없으면 정보 입력
|
||||
mjonEventVO.setEventStatus("N");
|
||||
int resultCnt = mjonEventService.insertEventMsgMberDefaultInfo(mjonEventVO);
|
||||
if (resultCnt > 0) {
|
||||
goEventPay = true;
|
||||
}
|
||||
}else {
|
||||
//등록된 회원정보가 있으면 화면 이동 및 메세지 처리
|
||||
String status = eventMberInfo.getEventStatus();
|
||||
if(status.equals("Y")) {
|
||||
//이벤트가 진행중인 경우
|
||||
}
|
||||
else if(status.equals("E")) {
|
||||
//이벤트가 종료된 경우
|
||||
|
||||
// Step 0. B선 전송사 이용고객 => 이벤트대상 제외처리
|
||||
mberManageVO.setMberId(loginVO.getId());
|
||||
String blineCode = mberManageService.selectBlineCodeByMberId(mberManageVO);
|
||||
if (blineCode != null && blineCode.equals("N")) {
|
||||
// Step 1. 결제여부 체크(미결제 일때 이벤트 대상)
|
||||
int payCnt = mjonPayService.selectMemerPayCount(loginVO.getId());
|
||||
if (payCnt == 0) {
|
||||
// Step 2. 이벤트 회원 정보 조회
|
||||
MjonEventVO eventMberInfo = selectEventMsgMberDefaultInfo(mjonEventVO, resultEvent.getNttId(), bbsId, loginVO.getId(), loginVO.getName());
|
||||
if(eventMberInfo == null) {//등록된 회원정보가 없으면 정보 입력
|
||||
mjonEventVO.setEventStatus("N");
|
||||
int resultCnt = mjonEventService.insertEventMsgMberDefaultInfo(mjonEventVO);
|
||||
if (resultCnt > 0) {
|
||||
goEventPay = true;
|
||||
}
|
||||
}else {
|
||||
//이벤트 미진행인 경우 성공으로 결제페이지로 이동되도록 한다.
|
||||
goEventPay = true;
|
||||
//등록된 회원정보가 있으면 화면 이동 및 메세지 처리
|
||||
String status = eventMberInfo.getEventStatus();
|
||||
if(status.equals("Y")) {
|
||||
//이벤트가 진행중인 경우
|
||||
}
|
||||
else if(status.equals("E")) {
|
||||
//이벤트가 종료된 경우
|
||||
}else {
|
||||
//이벤트 미진행인 경우 성공으로 결제페이지로 이동되도록 한다.
|
||||
goEventPay = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -52,6 +52,8 @@ public interface EgovMberManageService {
|
||||
*/
|
||||
public List<MberManageVO> selectMberList(UserDefaultVO userSearchVO) throws Exception;
|
||||
|
||||
public List<MberManageVO> selectMberDelTypeGrpList(UserDefaultVO userSearchVO) throws Exception;
|
||||
|
||||
public List<MberManageVO> selectMberLoginAddList(UserDefaultVO userSearchVO) throws Exception;
|
||||
|
||||
public List<MberManageVO> selectMberListNewUser(UserDefaultVO userSearchVO) throws Exception;
|
||||
@ -182,6 +184,8 @@ public interface EgovMberManageService {
|
||||
|
||||
public String selectMberNmByMberId(MberManageVO mberManageVO) throws Exception;
|
||||
|
||||
public String selectBlineCodeByMberId(MberManageVO mberManageVO) throws Exception;
|
||||
|
||||
//개인 문자전송 금액 수정하기
|
||||
public int updateUserPrice(MberManageVO mberManageVO) throws Exception;
|
||||
//개인 팩스전송 금액 수정하기
|
||||
|
||||
@ -185,6 +185,9 @@ public interface EgovUserManageService {
|
||||
// 스미싱의심 온/오프 - 상세에서 단일로
|
||||
public void updateOneUserSmishingYn(UserManageVO userManageVO) throws Exception;
|
||||
|
||||
// 스미싱의심 온/오프 - 상세에서 단일로 => 슬랙, 문자 알림 No
|
||||
public void updateOneUserSmishingYnNotAlert(UserManageVO userManageVO) throws Exception;
|
||||
|
||||
// 알림톡 스미싱의심 온/오프
|
||||
public void updateUserAtSmishingYn(UserManageVO userManageVO, String checkedIdForUpt) throws Exception;
|
||||
|
||||
|
||||
@ -488,10 +488,24 @@ public class MberManageVO extends UserDefaultVO{
|
||||
private String spamKeyword; //스팸 필터링 문자단어들
|
||||
private String spamRegistPnttm; //스팸 문자 발송 내용 등록일자
|
||||
private String exceptSpamYn; //스팸 필터링 예외 처리 여부
|
||||
|
||||
private String hotlineAgentCode; //회원 전용 전송사 코드 정보
|
||||
private String hotlineAgentName; //회원 전용 전송사 명
|
||||
private String admUserId; //관리자아이디
|
||||
private String deleteTypeName; // 탈퇴 사유 명
|
||||
private String deleteTypeCnt; // 탈퇴 사유 인원수
|
||||
|
||||
public String getDeleteTypeName() {
|
||||
return deleteTypeName;
|
||||
}
|
||||
public void setDeleteTypeName(String deleteTypeName) {
|
||||
this.deleteTypeName = deleteTypeName;
|
||||
}
|
||||
public String getDeleteTypeCnt() {
|
||||
return deleteTypeCnt;
|
||||
}
|
||||
public void setDeleteTypeCnt(String deleteTypeCnt) {
|
||||
this.deleteTypeCnt = deleteTypeCnt;
|
||||
}
|
||||
|
||||
public String getAdmUserId() {
|
||||
return admUserId;
|
||||
|
||||
@ -171,6 +171,16 @@ public class UserDefaultVO implements Serializable {
|
||||
|
||||
private String searchHotlineAgentCode;
|
||||
|
||||
private String searchDeleteType;
|
||||
|
||||
public String getSearchDeleteType() {
|
||||
return searchDeleteType;
|
||||
}
|
||||
|
||||
public void setSearchDeleteType(String searchDeleteType) {
|
||||
this.searchDeleteType = searchDeleteType;
|
||||
}
|
||||
|
||||
public String getSearchHotlineAgentCode() {
|
||||
return searchHotlineAgentCode;
|
||||
}
|
||||
|
||||
@ -539,32 +539,37 @@ public class EgovUserManageServiceImpl extends EgovAbstractServiceImpl implement
|
||||
|
||||
// 스미싱의심 온/오프 단일
|
||||
public void updateOneUserSmishingYn(UserManageVO userManageVO) throws Exception {
|
||||
// 업데이트
|
||||
userManageDAO.updateUserSmishingYn(userManageVO);
|
||||
|
||||
// 법인폰 알림문자 발송
|
||||
UserManageVO rtnVO = new UserManageVO();
|
||||
rtnVO = selectSmishingYnUserInfo(userManageVO);
|
||||
if (rtnVO.getSmishingYn().equals("Y")) {
|
||||
// 법인폰 알람여부 체크
|
||||
JoinSettingVO joinSettingVO = new JoinSettingVO();
|
||||
joinSettingVO = egovSiteManagerService.selectAdminNotiDetail();
|
||||
// SMS 체크
|
||||
if (joinSettingVO != null && joinSettingVO.getSmsNoti().equals("Y")) {
|
||||
// 스미싱의심 SMS 알림전송
|
||||
mjonNoticeSendUtil.smishingSmsNoticeSend("스미싱 의심!", rtnVO.getMberId(), rtnVO.getMberNm());
|
||||
}
|
||||
|
||||
// SLACK 체크
|
||||
if (joinSettingVO != null && joinSettingVO.getSlackNoti().equals("Y")) {
|
||||
// Slack 메시지 발송(단순본문)
|
||||
String msg = "[문자온] 스미싱 의심! - " + rtnVO.getMberNm() +"("+ rtnVO.getMberId() + ")";
|
||||
mjonCommon.sendSimpleSlackMsg(msg);
|
||||
}
|
||||
}
|
||||
// 업데이트
|
||||
userManageDAO.updateUserSmishingYn(userManageVO);
|
||||
|
||||
// 법인폰 알림문자 발송
|
||||
UserManageVO rtnVO = new UserManageVO();
|
||||
rtnVO = selectSmishingYnUserInfo(userManageVO);
|
||||
if (rtnVO.getSmishingYn().equals("Y")) {
|
||||
// 법인폰 알람여부 체크
|
||||
JoinSettingVO joinSettingVO = new JoinSettingVO();
|
||||
joinSettingVO = egovSiteManagerService.selectAdminNotiDetail();
|
||||
// SMS 체크
|
||||
if (joinSettingVO != null && joinSettingVO.getSmsNoti().equals("Y")) {
|
||||
// 스미싱의심 SMS 알림전송
|
||||
mjonNoticeSendUtil.smishingSmsNoticeSend("스미싱 의심!", rtnVO.getMberId(), rtnVO.getMberNm());
|
||||
}
|
||||
|
||||
// SLACK 체크
|
||||
if (joinSettingVO != null && joinSettingVO.getSlackNoti().equals("Y")) {
|
||||
// Slack 메시지 발송(단순본문)
|
||||
String msg = "[문자온] 스미싱 의심! - " + rtnVO.getMberNm() +"("+ rtnVO.getMberId() + ")";
|
||||
mjonCommon.sendSimpleSlackMsg(msg);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// 스미싱의심 온/오프 단일 => 슬랙, 문자 알림 No
|
||||
public void updateOneUserSmishingYnNotAlert(UserManageVO userManageVO) throws Exception {
|
||||
// 업데이트
|
||||
userManageDAO.updateUserSmishingYn(userManageVO);
|
||||
}
|
||||
|
||||
// 알림톡 스미싱의심 온/오프
|
||||
public void updateUserAtSmishingYn(UserManageVO userManageVO, String checkedIdForUpt) throws Exception {
|
||||
if(!"".equals(checkedIdForUpt)) {
|
||||
|
||||
@ -563,6 +563,9 @@ public class EgovUserManageController {
|
||||
paginationInfo.setTotalRecordCount( resultList.size()> 0 ? ((Long)((EgovMap)resultList.get(0)).get("totCnt")).intValue() : 0);
|
||||
model.addAttribute("paginationInfo", paginationInfo);
|
||||
|
||||
// 탈퇴사유별 인원수
|
||||
List<?> resultMberDelTypeGrpList = mberManageService.selectMberDelTypeGrpList(userSearchVO);
|
||||
model.addAttribute("resultMberDelTypeGrpList", resultMberDelTypeGrpList);
|
||||
|
||||
return "cmm/uss/umt/EgovDelUserManage";
|
||||
}
|
||||
|
||||
@ -34,6 +34,7 @@ import itn.com.uss.olh.hpc.service.HackIpService;
|
||||
import itn.com.uss.olh.hpc.service.HackIpVO;
|
||||
import itn.let.lett.service.LetterVO;
|
||||
import itn.let.mjo.pay.service.MjonPayVO;
|
||||
import itn.let.schdlr.service.SchdlrManageService;
|
||||
import itn.let.uss.ion.cnt.service.CntManageVO;
|
||||
import itn.let.uss.ion.cnt.service.EgovCntManageService;
|
||||
|
||||
@ -46,6 +47,9 @@ public class ContentController{
|
||||
@Resource(name = "hackIpService")
|
||||
private HackIpService hackIpService;
|
||||
|
||||
@Resource(name = "SchdlrManageService")
|
||||
private SchdlrManageService schdlrManageService;
|
||||
|
||||
/*인사말*/
|
||||
@RequestMapping(value="/web/intro/intro.do")
|
||||
public String intro(@RequestParam Map<String, Object> commandMap, Model model) throws Exception {
|
||||
@ -661,4 +665,30 @@ public class ContentController{
|
||||
return modelAndView;
|
||||
}
|
||||
|
||||
// 전용계좌 스케줄러 실행
|
||||
@RequestMapping(value= {"/web/main/vacsAutoChargeAjax.do"})
|
||||
public ModelAndView vacsAutoCharge(HttpServletRequest request,
|
||||
ModelMap model) throws Exception{
|
||||
|
||||
ModelAndView modelAndView = new ModelAndView();
|
||||
modelAndView.setViewName("jsonView");
|
||||
|
||||
boolean isSuccess = true;
|
||||
String msg = "";
|
||||
|
||||
try {
|
||||
|
||||
schdlrManageService.vacsAutoCharge();
|
||||
|
||||
}
|
||||
catch(Exception e) {
|
||||
isSuccess = false;
|
||||
msg = e.getMessage();
|
||||
}
|
||||
|
||||
modelAndView.addObject("isSuccess", isSuccess);
|
||||
modelAndView.addObject("msg", msg);
|
||||
|
||||
return modelAndView;
|
||||
}
|
||||
}
|
||||
|
||||
@ -125,7 +125,9 @@ import itn.let.sym.prm.service.ProgrmManageVO;
|
||||
import itn.let.sym.site.service.EgovSiteManagerService;
|
||||
import itn.let.sym.site.service.MetaTagVO;
|
||||
import itn.let.sym.site.service.SiteManagerVO;
|
||||
import itn.let.uss.umt.service.EgovMberManageService;
|
||||
import itn.let.uss.umt.service.EgovUserManageService;
|
||||
import itn.let.uss.umt.service.MberManageVO;
|
||||
import itn.let.uss.umt.service.UserManageVO;
|
||||
import itn.let.utl.sim.service.EgovClntInfo;
|
||||
|
||||
@ -250,6 +252,10 @@ public class MainController {
|
||||
@Resource(name = "userManageService")
|
||||
private EgovUserManageService userManageService;
|
||||
|
||||
/** mberManageService */
|
||||
@Resource(name = "mberManageService")
|
||||
private EgovMberManageService mberManageService;
|
||||
|
||||
@Value("#{globalSettings['Globals.email.host']}")
|
||||
private String Globals_email_host;
|
||||
@Value("#{globalSettings['Globals.email.port']}")
|
||||
@ -652,6 +658,14 @@ public class MainController {
|
||||
|
||||
model.addAttribute("resultEvent", resultEvent);
|
||||
|
||||
String blineCode = "N";
|
||||
if(StringUtil.isNotEmpty(userId)) {
|
||||
// B선 전송사 사용여부
|
||||
MberManageVO mberManageVO = new MberManageVO();
|
||||
mberManageVO.setMberId(userId);
|
||||
blineCode = mberManageService.selectBlineCodeByMberId(mberManageVO);
|
||||
}
|
||||
model.addAttribute("blineCode", blineCode);
|
||||
}
|
||||
|
||||
return "web/main/mainPage";
|
||||
|
||||
@ -99,7 +99,7 @@ Globals.pay.kgm.card.cnSvcid=191017078687
|
||||
Globals.pay.kgm.card.payMode=10
|
||||
#BANK
|
||||
Globals.pay.kgm.bank.raSvcid=230510133362
|
||||
Globals.pay.kgm.bank.payMode=00
|
||||
Globals.pay.kgm.bank.payMode=10
|
||||
#MOBILE
|
||||
Globals.pay.kgm.mobile.mcSvcid=170622040674
|
||||
Globals.pay.kgm.mobile.payMode=00
|
||||
Globals.pay.kgm.mobile.mcSvcid=220613125202
|
||||
Globals.pay.kgm.mobile.payMode=10
|
||||
|
||||
@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN"
|
||||
"http://www.ibatis.com/dtd/sql-map-config-2.dtd">
|
||||
|
||||
<sqlMapConfig>
|
||||
<sqlMap resource="egovframework/sqlmap/let/sym/grd/MberGrd_SQL_Mysql.xml"/>
|
||||
</sqlMapConfig>
|
||||
@ -64,6 +64,10 @@
|
||||
THEN 'S'
|
||||
WHEN A.AGENT_CODE = '07' AND (A.RSLT_CODE = '6' OR A.RSLT_CODE = '1000')
|
||||
THEN 'S'
|
||||
WHEN A.AGENT_CODE = '08' AND (A.RSLT_CODE = '1000' OR A.RSLT_CODE = '1001')
|
||||
THEN 'S'
|
||||
WHEN A.AGENT_CODE = '09' AND (A.RSLT_CODE = '1000' OR A.RSLT_CODE = '1001')
|
||||
THEN 'S'
|
||||
WHEN (
|
||||
A.RSLT_CODE IS NULL
|
||||
AND A.RSLT_CODE2 IS NULL
|
||||
@ -404,7 +408,13 @@
|
||||
THEN 'S'
|
||||
WHEN AGENT_CODE = '07'
|
||||
AND (RSLT_CODE = '6' OR RSLT_CODE = '1000')
|
||||
THEN 'S'
|
||||
THEN 'S'
|
||||
WHEN AGENT_CODE = '08'
|
||||
AND (RSLT_CODE = '1000' OR RSLT_CODE = '1001')
|
||||
THEN 'S'
|
||||
WHEN AGENT_CODE = '09'
|
||||
AND (RSLT_CODE = '1000' OR RSLT_CODE = '1001')
|
||||
THEN 'S'
|
||||
WHEN (
|
||||
RSLT_CODE IS NULL
|
||||
AND RSLT_CODE2 IS NULL
|
||||
|
||||
@ -54,6 +54,10 @@
|
||||
THEN 'S'
|
||||
WHEN A.AGENT_CODE = '07' AND (A.RSLT_CODE = '6' OR A.RSLT_CODE = '1000')
|
||||
THEN 'S'
|
||||
WHEN A.AGENT_CODE = '08' AND (A.RSLT_CODE = '1000' OR A.RSLT_CODE = '1001')
|
||||
THEN 'S'
|
||||
WHEN A.AGENT_CODE = '09' AND (A.RSLT_CODE = '1000' OR A.RSLT_CODE = '1001')
|
||||
THEN 'S'
|
||||
WHEN (
|
||||
A.RSLT_CODE IS NULL
|
||||
AND A.RSLT_CODE2 IS NULL
|
||||
@ -139,6 +143,10 @@
|
||||
THEN 'S'
|
||||
WHEN A.AGENT_CODE = '07' AND (A.RSLT_CODE = '6' OR A.RSLT_CODE = '1000')
|
||||
THEN 'S'
|
||||
WHEN A.AGENT_CODE = '08' AND (A.RSLT_CODE = '1000' OR A.RSLT_CODE = '1001')
|
||||
THEN 'S'
|
||||
WHEN A.AGENT_CODE = '09' AND (A.RSLT_CODE = '1000' OR A.RSLT_CODE = '1001')
|
||||
THEN 'S'
|
||||
WHEN (
|
||||
A.RSLT_CODE IS NULL
|
||||
AND A.RSLT_CODE2 IS NULL
|
||||
@ -201,7 +209,11 @@
|
||||
WHEN A.AGENT_CODE = '05' AND(A.RSLT_CODE = '1000' OR A.RSLT_CODE = '1001')
|
||||
THEN 'S'
|
||||
WHEN A.AGENT_CODE = '07' AND (A.RSLT_CODE = '6' OR A.RSLT_CODE = '1000')
|
||||
THEN 'S'
|
||||
THEN 'S'
|
||||
WHEN A.AGENT_CODE = '08' AND(A.RSLT_CODE = '1000' OR A.RSLT_CODE = '1001')
|
||||
THEN 'S'
|
||||
WHEN A.AGENT_CODE = '09' AND(A.RSLT_CODE = '1000' OR A.RSLT_CODE = '1001')
|
||||
THEN 'S'
|
||||
WHEN (
|
||||
A.RSLT_CODE IS NULL
|
||||
AND A.RSLT_CODE2 IS NULL
|
||||
@ -257,7 +269,11 @@
|
||||
WHEN A.AGENT_CODE = '05' AND (A.RSLT_CODE = '1000' OR A.RSLT_CODE = '1001')
|
||||
THEN 'S'
|
||||
WHEN A.AGENT_CODE = '07' AND (A.RSLT_CODE = '6' OR A.RSLT_CODE = '1000')
|
||||
THEN 'S'
|
||||
THEN 'S'
|
||||
WHEN A.AGENT_CODE = '08' AND (A.RSLT_CODE = '1000' OR A.RSLT_CODE = '1001')
|
||||
THEN 'S'
|
||||
WHEN A.AGENT_CODE = '09' AND (A.RSLT_CODE = '1000' OR A.RSLT_CODE = '1001')
|
||||
THEN 'S'
|
||||
WHEN (A.RSLT_CODE IS NULL AND A.RSLT_CODE2 IS NULL AND A.SENT_DATE IS NULL AND A.RSLT_DATE IS NULL)
|
||||
THEN 'W'
|
||||
ELSE 'F'
|
||||
|
||||
@ -0,0 +1,28 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE sqlMap PUBLIC "-//iBATIS.com//DTD SQL Map 2.0//EN" "http://www.ibatis.com/dtd/sql-map-config-2.dtd">
|
||||
|
||||
<sqlMap namespace="SiteManager">
|
||||
|
||||
<typeAlias alias="mberGrdVO" type = "itn.let.sym.grd.service.MberGrdVO"/>
|
||||
|
||||
<select id="mberGrdDAO.selectMberGrdSettingList" parameterClass="mberGrdVO" resultClass="mberGrdVO">
|
||||
SELECT
|
||||
A.GRD_SET_NO AS grdSetNo
|
||||
, A.GRD_SET_NM AS grdSetNm
|
||||
, FLOOR(A.TOT_AMT) AS totAmt
|
||||
, FORMAT(FLOOR(A.TOT_AMT),0) AS totAmtComma
|
||||
, A.SHORT_PRICE AS shortPrice
|
||||
, A.LONG_PRICE AS longPrice
|
||||
, A.PICTURE_PRICE AS picturePrice
|
||||
, A.PICTURE2_PRICE AS picture2Price
|
||||
, A.PICTURE3_PRICE AS picture3Price
|
||||
, A.REG_ID AS regId
|
||||
, A.REG_DATE AS regDate
|
||||
, A.EDIT_ID AS editId
|
||||
, A.EDIT_DATE AS editDate
|
||||
FROM mj_mber_grd_setting A
|
||||
ORDER BY A.GRD_SET_NO ASC
|
||||
|
||||
</select>
|
||||
|
||||
</sqlMap>
|
||||
@ -229,6 +229,7 @@
|
||||
<!-- 관리자 대쉬보드 접속 리스트 -->
|
||||
<select id="LoginLogDAO.selectAmdinLog" parameterClass="loginLog" resultClass="loginLog">
|
||||
SELECT
|
||||
COUNT(1) OVER() AS totCnt ,
|
||||
a.ADMINLOG_ID logId ,
|
||||
b.USER_NM loginNm,
|
||||
DATE_FORMAT(a.CREAT_DT, '%Y-%m-%d %H:%i' ) creatDt,
|
||||
@ -256,6 +257,7 @@
|
||||
a.URL LIKE CONCAT('%' , #searchKeyword#, '%')
|
||||
</isEqual>
|
||||
</isNotEmpty>
|
||||
|
||||
ORDER BY 1=1
|
||||
<isNotEmpty property="searchSortCnd">
|
||||
,$searchSortCnd$
|
||||
|
||||
@ -184,6 +184,10 @@
|
||||
adminSmsNoticeYn = #searchAdminSmsNoticeYn#
|
||||
</isNotEmpty>
|
||||
|
||||
<isNotEmpty prepend="AND" property="searchDeleteType">
|
||||
deleteType = #searchDeleteType#
|
||||
</isNotEmpty>
|
||||
|
||||
<isNotEmpty property="searchSmsSalePrice">
|
||||
<isEqual prepend="AND" property="searchSmsSalePrice" compareValue="Y">
|
||||
(shortPrice > 0 AND (18.00 > shortPrice OR 50.00 > longPrice OR 90.00 > picturePrice OR 110.00 > picture2Price OR 130.00 > picture3Price))
|
||||
@ -633,6 +637,30 @@
|
||||
</isNotEmpty>
|
||||
</select>
|
||||
|
||||
<select id="mberManageDAO.selectMberDelTypeGrpList" parameterClass="userSearchVO" resultClass="egovMap" remapResults="true">
|
||||
SELECT
|
||||
M.deleteType
|
||||
, CASE
|
||||
WHEN M.deleteType = '01' THEN '기업회원 전환'
|
||||
WHEN M.deleteType = '02' THEN '사용할 일이 없어서'
|
||||
WHEN M.deleteType = '03' THEN '문자 단가 높음'
|
||||
WHEN M.deleteType = '04' THEN '사이트 이용 불만'
|
||||
WHEN M.deleteType = '05' THEN '개인정보 유출 우려'
|
||||
WHEN M.deleteType = '06' THEN '다른 사이트 이용'
|
||||
ELSE '기타(직접 입력)'
|
||||
END deleteTypeName
|
||||
, M.deleteTypeCnt
|
||||
FROM (
|
||||
SELECT
|
||||
DELETE_TYPE AS deleteType
|
||||
, COUNT(0) deleteTypeCnt
|
||||
FROM lettngnrlmber
|
||||
WHERE MBER_STTUS = 'N'
|
||||
GROUP BY DELETE_TYPE
|
||||
) M
|
||||
ORDER BY M.deleteTypeCnt DESC
|
||||
</select>
|
||||
|
||||
<select id="mberManageDAO.selectEmailSendMberList" parameterClass="userSearchVO" resultClass="egovMap" remapResults="true">
|
||||
SELECT
|
||||
MBER_ID userId
|
||||
@ -1168,6 +1196,13 @@
|
||||
WHERE A.MBER_ID= #mberId#
|
||||
</select>
|
||||
|
||||
<select id="mberManageDAO.selectBlineCodeByMberId" parameterClass="mberVO" resultClass="String">
|
||||
SELECT
|
||||
IFNULL(A.BLINE_CODE, 'N') AS blineCode
|
||||
FROM LETTNGNRLMBER A
|
||||
WHERE A.MBER_ID= #mberId#
|
||||
</select>
|
||||
|
||||
<update id="mberManageDAO.updateUserPrice" parameterClass="mberVO">
|
||||
|
||||
UPDATE
|
||||
|
||||
@ -79,6 +79,9 @@ function fn_search2(){
|
||||
}
|
||||
}
|
||||
|
||||
// 초기화
|
||||
$("#searchDeleteType").val('');
|
||||
|
||||
linkPage(1);
|
||||
}
|
||||
</script>
|
||||
@ -86,6 +89,7 @@ function fn_search2(){
|
||||
<body>
|
||||
<form name="listForm" action="<c:url value='/uss/umt/user/EgovDelUserManage.do'/>" method="post">
|
||||
<input name="pageIndex" type="hidden" value="<c:out value='${userSearchVO.pageIndex}'/>"/>
|
||||
<input name="searchDeleteType" id="searchDeleteType" type="hidden" value="<c:out value='${userSearchVO.searchDeleteType}'/>"/>
|
||||
|
||||
<double-submit:preventer tokenKey="someKey" />
|
||||
<!-- cont -->
|
||||
@ -132,6 +136,39 @@ function fn_search2(){
|
||||
<input type="button" class="btnType1" onclick="fn_search2(); return false;" value="검색">
|
||||
<input type="button" class="btnType1" onclick="fn_searchReset2(); return false;" value="초기화">
|
||||
</div>
|
||||
|
||||
<div class="tableWrap">
|
||||
<table class="tbType4">
|
||||
<colgroup>
|
||||
<col style="width:6%">
|
||||
<c:forEach var="item" items="${resultMberDelTypeGrpList}" varStatus="status">
|
||||
<col style="width:12.5%">
|
||||
</c:forEach>
|
||||
<col style="width:*%">
|
||||
</colgroup>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>구분</th>
|
||||
<c:forEach var="item" items="${resultMberDelTypeGrpList}" varStatus="status">
|
||||
<th>${item.deleteTypeName}</th>
|
||||
</c:forEach>
|
||||
<th>계</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>인원</td>
|
||||
<c:set var="deleteTypeSum" value="0" />
|
||||
<c:forEach var="item" items="${resultMberDelTypeGrpList}" varStatus="status">
|
||||
<c:set var="deleteTypeSum" value="${deleteTypeSum + item.deleteTypeCnt}" />
|
||||
<td><a href="/uss/umt/user/EgovDelUserManage.do?searchDeleteType=${item.deleteType}">${item.deleteTypeCnt}</a></td>
|
||||
</c:forEach>
|
||||
<td><a href="/uss/umt/user/EgovDelUserManage.do"><fmt:formatNumber value="${deleteTypeSum}" pattern="#,###" /></a></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<div class="listTop">
|
||||
<p class="tType5">총 <span class="tType4 c_456ded fwBold"><fmt:formatNumber value="${paginationInfo.totalRecordCount}" pattern="#,###" /></span>건</p>
|
||||
<div class="rightWrap">
|
||||
@ -192,7 +229,7 @@ function fn_search2(){
|
||||
<td>
|
||||
<c:choose>
|
||||
<c:when test="${result.deleteType eq '01'}">
|
||||
기업회원으로 다시 가입
|
||||
기업회원 전환
|
||||
</c:when>
|
||||
<c:when test="${result.deleteType eq '02'}">
|
||||
사용할 일이 없어서
|
||||
@ -210,7 +247,7 @@ function fn_search2(){
|
||||
다른 사이트이용
|
||||
</c:when>
|
||||
<c:otherwise>
|
||||
해지사유 직접 입력
|
||||
기타(직접 입력)
|
||||
</c:otherwise>
|
||||
</c:choose>
|
||||
</td>
|
||||
|
||||
@ -112,7 +112,8 @@ function setMberCmpHstStatusSave(p_index) {
|
||||
|
||||
function biznoPop() {
|
||||
var p_bizno = $('#bizNo').val();
|
||||
window.open('https://www.bizno.net/article/'+p_bizno);
|
||||
//window.open('https://www.bizno.net/article/'+p_bizno);
|
||||
window.open('https://moneypin.biz/bizno/detail/'+p_bizno);
|
||||
}
|
||||
|
||||
// 기업회원 상세정보
|
||||
@ -279,7 +280,7 @@ $(function(){
|
||||
|
||||
<td class="left">
|
||||
<%-- <c:if test="${result.hstSttus eq '01'}">--%>
|
||||
<button class="btnType btnType20" onclick="biznoPop();return false;">BizNo 페이지호출</button>
|
||||
<button class="btnType btnType20" onclick="biznoPop();return false;">머니핀 페이지호출</button>
|
||||
<button class="btnType btnType20" onclick="setMberCmpHstStatusSave('${status.index}'); return false;">국세청 API호출</button>
|
||||
<%-- </c:if>--%>
|
||||
<c:if test="${result.hstSttus eq '03'}">
|
||||
|
||||
@ -9,7 +9,7 @@
|
||||
2009.03.03 JJY 최초 생성
|
||||
2011.08.31 JJY 경량환경 버전 생성
|
||||
|
||||
author : 공통서비스 개발팀 JJY
|
||||
author : 공통서비스 개발팀 WYH
|
||||
since : 2009.03.03
|
||||
--%>
|
||||
<%@ page contentType="text/html; charset=utf-8" pageEncoding="utf-8"%>
|
||||
|
||||
106
src/main/webapp/WEB-INF/jsp/sym/grd/mberGrdSetting.jsp
Normal file
106
src/main/webapp/WEB-INF/jsp/sym/grd/mberGrdSetting.jsp
Normal file
@ -0,0 +1,106 @@
|
||||
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
|
||||
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
|
||||
<%@ taglib prefix="ui" uri="http://egovframework.gov/ctl/ui"%>
|
||||
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions"%>
|
||||
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
|
||||
<!DOCTYPE html>
|
||||
<html lang="ko">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>등급제 관리</title>
|
||||
<script type="text/javascript">
|
||||
|
||||
function doUpdate() {
|
||||
|
||||
}
|
||||
|
||||
// 등급제 일괄변경
|
||||
function setMassEdit() {
|
||||
if(!confirm("등급별 단가를 변경 하시겠습니까?")) {
|
||||
return;
|
||||
}
|
||||
|
||||
// 콤마 제거
|
||||
$('input[name=totAmt]').each(function(index,item){
|
||||
$(this).val($(this).val().replace(/,/gi, ""));
|
||||
});
|
||||
|
||||
$.ajax({
|
||||
type: "POST",
|
||||
url: "/sym/grd/mberGrdSettingMassUpdateAjax.do",
|
||||
data: $("#listForm").serialize(),
|
||||
dataType:'json',
|
||||
async: false,
|
||||
success: function (data) {
|
||||
console.log(data);
|
||||
if (data.isSuccess) {
|
||||
alert("저장 완료했습니다.");
|
||||
location.reload();
|
||||
}
|
||||
else {
|
||||
alert("Msg : " + data.msg);
|
||||
}
|
||||
},
|
||||
error: function (e) {
|
||||
alert("ERROR : " + JSON.stringify(e));
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="contWrap">
|
||||
<div class="pageTitle">
|
||||
<div class="pageIcon"><img src="/pb/img/pageTitIcon4.png" alt=""></div>
|
||||
<h2 class="titType1 c_222222 fwBold">등급제 관리</h2>
|
||||
<p class="tType6 c_999999">등급제 관리 페이지 입니다.</p>
|
||||
</div>
|
||||
<div class="pageCont">
|
||||
<form id="listForm" name="listForm" method="post">
|
||||
<div class="tableWrap">
|
||||
<table class="tbType1">
|
||||
<colgroup>
|
||||
<col width="10%">
|
||||
<col width="*">
|
||||
<col width="13%">
|
||||
<col width="13%">
|
||||
<col width="13%">
|
||||
<col width="13%">
|
||||
<col width="13%">
|
||||
</colgroup>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>등급</th>
|
||||
<th>누적결제액</th>
|
||||
<th>단문</th>
|
||||
<th>장문</th>
|
||||
<th>그림(1장)</th>
|
||||
<th>그림(2장)</th>
|
||||
<th>그림(3장)</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<c:forEach var="result" items="${mberGrdSettingList}" varStatus="status">
|
||||
<input type="hidden" name="grdSetNo" value="${result.grdSetNo}"/>
|
||||
<tr>
|
||||
<td><c:out value="${result.grdSetNm}"/></td>
|
||||
<td><input type="text" name="totAmt" value="<c:out value="${result.totAmtComma}"/>" style="height: 20px; width: 150px; padding: 5px 5px 5px 5px;" /></td>
|
||||
<td><input type="text" name="shortPrice" value="<c:out value="${result.shortPrice}"/>" style="height: 20px; width: 100px; padding: 5px 5px 5px 5px;" /></td>
|
||||
<td><input type="text" name="longPrice" value="<c:out value="${result.longPrice}"/>" style="height: 20px; width: 100px; padding: 5px 5px 5px 5px;" /></td>
|
||||
<td><input type="text" name="picturePrice" value="<c:out value="${result.picturePrice}"/>" style="height: 20px; width: 100px; padding: 5px 5px 5px 5px;" /></td>
|
||||
<td><input type="text" name="picture2Price" value="<c:out value="${result.picture2Price}"/>" style="height: 20px; width: 100px; padding: 5px 5px 5px 5px;" /></td>
|
||||
<td><input type="text" name="picture3Price" value="<c:out value="${result.picture3Price}"/>" style="height: 20px; width: 100px; padding: 5px 5px 5px 5px;" /></td>
|
||||
</tr>
|
||||
</c:forEach>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</form>
|
||||
<div class="btnWrap">
|
||||
<input type="button" class="btnType1" value="수정" onclick="javascript:setMassEdit(); return false;">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@ -345,6 +345,7 @@ function fn_reg_user_4_apikey(){
|
||||
</form>
|
||||
<form name="modiForm" method="post" action="<c:url value='/uss/ion/apikey/UserAPIKEYModify.do'/>" >
|
||||
<input name="accessNo" type="hidden" />
|
||||
<input name="mberId" type="hidden" />
|
||||
</form>
|
||||
<form name="regForm" id="regForm" method="post">
|
||||
<input name="userId" type="hidden" />
|
||||
|
||||
@ -190,31 +190,28 @@ function fnSelectMber(mberId) {
|
||||
<colgroup>
|
||||
<col style="width: 5%">
|
||||
<col style="width: 10%">
|
||||
<col style="width: 15%">
|
||||
<col style="width: 15%">
|
||||
<col style="width: 20%">
|
||||
<col style="width: 8%">
|
||||
<col style="width: 19%">
|
||||
<col style="width: 24%">
|
||||
<col style="width: 10%">
|
||||
<col style="width: 11%">
|
||||
<col style="width: 11%">
|
||||
<col style="width: 10%">
|
||||
<col style="width: 5%">
|
||||
</colgroup>
|
||||
<thead>
|
||||
<tr>
|
||||
<!-- <th><input type="checkbox" id="chkAll" onClick="fnChkAll();"></th> -->
|
||||
<th>번호<input type="button" class="sort sortBtn" id="sort_profileId"></th>
|
||||
<th>회원ID<input type="button" class="sort sortBtn" id="sort_userId"></th>
|
||||
<th>채널ID<input type="button" class="sort sortBtn" id="sort_yellowId"></th>
|
||||
<th>채널명<input type="button" class="sort sortBtn" id="sort_yellowId"></th>
|
||||
<th>등록상태</th>
|
||||
<th>등록일</th>
|
||||
<th>채널생성일</th>
|
||||
<th>채널등록일</th>
|
||||
<th>삭제여부<input type="button" class="sort sortBtn" id="sort_deleteYn"></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<c:forEach var="result" items="${resultChannelList}" varStatus="status">
|
||||
<tr>
|
||||
<%-- <td>
|
||||
<input type="checkbox" name="chkSttusY" id="chkSttusY_${status.index}" value="${result.profileId}">
|
||||
</td> --%>
|
||||
<td>
|
||||
<c:if test="${searchVO.searchSortOrd eq 'desc' }">
|
||||
<c:out value="${ ( paginationInfo.totalRecordCount - ((paginationInfo.currentPageNo -1)*paginationInfo.recordCountPerPage) ) - status.index }"/>
|
||||
@ -257,6 +254,10 @@ function fnSelectMber(mberId) {
|
||||
<fmt:parseDate value="${result.createdAt}" var="dateValue" pattern="yyyy-MM-dd HH:mm:ss"/>
|
||||
<fmt:formatDate value="${dateValue}" pattern="yyyy-MM-dd"/>
|
||||
</td>
|
||||
<td>
|
||||
<fmt:parseDate value="${result.lastUpdtPnttm}" var="lastUpdtPnttmValue" pattern="yyyy-MM-dd"/>
|
||||
<fmt:formatDate value="${lastUpdtPnttmValue}" pattern="yyyy-MM-dd"/>
|
||||
</td>
|
||||
<td>
|
||||
<c:choose>
|
||||
<c:when test="${result.deleteYn eq 'Y'}">
|
||||
@ -310,12 +311,19 @@ function fnSelectMber(mberId) {
|
||||
</dd>
|
||||
</dl>
|
||||
<dl>
|
||||
<dt>등록일</dt>
|
||||
<dt>채널생성일</dt>
|
||||
<dd>
|
||||
<fmt:parseDate value="${result.createdAt}" var="dateValue" pattern="yyyy-MM-dd HH:mm:ss"/>
|
||||
<fmt:formatDate value="${dateValue}" pattern="yyyy-MM-dd"/>
|
||||
</dd>
|
||||
</dl>
|
||||
<dl>
|
||||
<dt>채널등록일</dt>
|
||||
<dd>
|
||||
<fmt:parseDate value="${result.lastUpdtPnttm}" var="lastUpdtPnttmValue" pattern="yyyy-MM-dd"/>
|
||||
<fmt:formatDate value="${lastUpdtPnttmValue}" pattern="yyyy-MM-dd"/>
|
||||
</dd>
|
||||
</dl>
|
||||
<dl>
|
||||
<dt>삭제여부</dt>
|
||||
<dd>
|
||||
|
||||
@ -141,6 +141,7 @@ function fnSelectMber(mberId) {
|
||||
|
||||
<form name="listForm" action="<c:url value='/uss/ion/kakaoat/SendKakaoATDetailList.do'/>" method="post">
|
||||
<input name="pageIndex" type="hidden" value="<c:out value='${searchVO.pageIndex}'/>"/>
|
||||
<input type="hidden" name="userId" value="<c:out value='${searchVO.userId}'/>"/>
|
||||
<input type="hidden" name="delFlag" value="Y" />
|
||||
<input type="hidden" name="selectedId" />
|
||||
<input type="hidden" name="msgGroupId" value="<c:out value='${searchVO.msgGroupId}'/>"/>
|
||||
|
||||
@ -326,8 +326,8 @@ function fnSmishingUpdate(flag, id) {
|
||||
<col style="width: 7%">
|
||||
<col style="width: 5%">
|
||||
<col style="width: 11%">
|
||||
<col style="width: 8%">
|
||||
<col style="width: 10%">
|
||||
<col style="width: 9%">
|
||||
<col style="width: 7%">
|
||||
<col style="width: *%">
|
||||
<col style="width: 7%">
|
||||
@ -350,7 +350,7 @@ function fnSmishingUpdate(flag, id) {
|
||||
<th>수단<input type="button" class="sort sortBtn" id="sort_payMethodTxt"></th>
|
||||
<th>결제폰번호<input type="button" class="sort sortBtn" id="sort_phone"></th>
|
||||
<th>결제상태<input type="button" class="sort sortBtn" id="sort_pgStatusTxt"></th>
|
||||
<th>결제메세지<input type="button" class="sort sortBtn" id="sort_resultMsg"></th>
|
||||
<th>결제메세지</th>
|
||||
<th>영수증<input type="button" class="sort sortBtn" id="sort_rcptTypeTxt"></th>
|
||||
<th title="스미싱의심">스미싱</th>
|
||||
<th>결제시간<input type="button" class="sort sortBtn" id="sort_regDate"></th>
|
||||
@ -432,8 +432,22 @@ function fnSmishingUpdate(flag, id) {
|
||||
|
||||
</c:otherwise>
|
||||
</c:choose>
|
||||
<%-- <c:if test="${not empty result.cardName}">(<c:out value="${result.cardName}"/>)</c:if> --%>
|
||||
</c:when>
|
||||
<c:when test="${result.payMethodTxt eq '간편결제'}">
|
||||
간편
|
||||
<c:choose>
|
||||
<c:when test="${not empty result.cardName}">
|
||||
(<c:out value="${result.cardName}"/>)
|
||||
</c:when>
|
||||
<c:when test="${result.resultCode == '9991' || result.resultCode == '9993' || result.resultCode == 'I002'}">
|
||||
<%-- 9991, 9993, I002 결과코드는 사용자가 결제 중간에 취소하여 오류가 발생한 케이스임. --%>
|
||||
(결제취소)
|
||||
</c:when>
|
||||
<c:otherwise>
|
||||
|
||||
</c:otherwise>
|
||||
</c:choose>
|
||||
</c:when>
|
||||
<c:otherwise>
|
||||
<c:out value="${result.payMethodTxt}"/>
|
||||
</c:otherwise>
|
||||
|
||||
@ -64,6 +64,14 @@ function fn_insert(){
|
||||
frm.submit();
|
||||
}
|
||||
|
||||
// 환불 등록
|
||||
function fn_refundRegist(){
|
||||
frm = document.listForm;
|
||||
frm.action = "<c:url value='/uss/ion/pay/refundRegist.do' />";
|
||||
frm.submit();
|
||||
}
|
||||
|
||||
|
||||
/* 수정 화면*/
|
||||
function fn_modify(moid){
|
||||
var frm = document.modiForm ;
|
||||
@ -314,6 +322,9 @@ function fnSelectMber(mberId) {
|
||||
</table>
|
||||
</div>
|
||||
<div class="btnWrap">
|
||||
|
||||
<input type="button" class="btnType1" value="환불 등록" onclick="fn_refundRegist(); return false;" >
|
||||
|
||||
<input type="button" class="btnType1" value="결제취소 등록" onclick="fn_insert(); return false;" >
|
||||
<input type="button" class="btnType2" value="삭제" onclick="fn_delete(); return false;">
|
||||
</div>
|
||||
|
||||
555
src/main/webapp/WEB-INF/jsp/uss/ion/pay/RefundRegist.jsp
Normal file
555
src/main/webapp/WEB-INF/jsp/uss/ion/pay/RefundRegist.jsp
Normal file
@ -0,0 +1,555 @@
|
||||
<%--
|
||||
Class Name : RefundRegist.jsp
|
||||
Description : Refund 상세 페이지
|
||||
Modification Information
|
||||
|
||||
수정일 수정자 수정내용
|
||||
------- -------- ---------------------------
|
||||
2023.06.26 박진순 최초 생성
|
||||
|
||||
author : 박진순
|
||||
since : 2023.06.26
|
||||
|
||||
--%>
|
||||
<%@ page contentType="text/html; charset=utf-8"%>
|
||||
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
|
||||
<%@ taglib prefix="ui" uri="http://egovframework.gov/ctl/ui"%>
|
||||
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions"%>
|
||||
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
|
||||
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %>
|
||||
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
|
||||
<%@ taglib prefix="ec" uri="/WEB-INF/tld/ecnet_tld.tld"%>
|
||||
<!DOCTYPE html>
|
||||
<html lang="ko">
|
||||
<head>
|
||||
<title>환불 등록</title>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
|
||||
<script type="text/javascript" src="<c:url value='/js/web_common.js' />"></script>
|
||||
<script type="text/javascript" src="<c:url value='/js/EgovMultiFile.js'/>"></script>
|
||||
<script src="/publish/js/content.js"></script>
|
||||
|
||||
<script type="text/javaScript" language="javascript">
|
||||
var mberRefundMaxMoney = 0; // 환불가능금액
|
||||
|
||||
$(document).ready(function(){
|
||||
$('#showMask').click(function(e){
|
||||
// preventDefault는 href의 링크 기본 행동을 막는 기능입니다.
|
||||
e.preventDefault();
|
||||
// 화면의 높이와 너비를 변수로 만듭니다.
|
||||
var maskHeight = $(document).height();
|
||||
var maskWidth = $(window).width();
|
||||
|
||||
// 마스크의 높이와 너비를 화면의 높이와 너비 변수로 설정합니다.
|
||||
$('.mask').css({'width':maskWidth,'height':maskHeight});
|
||||
|
||||
// fade 애니메이션 : 1초 동안 검게 됐다가 80%의 불투명으로 변합니다.
|
||||
$('.mask').fadeIn(1000);
|
||||
$('.mask').fadeTo("slow",0.8);
|
||||
|
||||
// 레이어 팝업을 가운데로 띄우기 위해 화면의 높이와 너비의 가운데 값과 스크롤 값을 더하여 변수로 만듭니다.
|
||||
var left = ( $(window).scrollLeft() + ( $(window).width() - $('.window').width()) / 2 );
|
||||
var top = ( $(window).scrollTop() + ( $(window).height() - $('.window').height()) / 2 );
|
||||
|
||||
// css 스타일을 변경합니다.
|
||||
$('.window').css({'left':left,'top':top, 'position':'absolute'});
|
||||
|
||||
// 레이어 팝업을 띄웁니다.
|
||||
$('.window').show();
|
||||
});
|
||||
|
||||
// 닫기(close)를 눌렀을 때 작동합니다.
|
||||
$('.window .close').click(function (e) {
|
||||
e.preventDefault();
|
||||
$('.mask, .window').hide();
|
||||
$("input[name=emplyrId]").val("");
|
||||
});
|
||||
});
|
||||
|
||||
//회원 조회
|
||||
function fn_refundIdChk(){
|
||||
$.ajax({
|
||||
type:"POST",
|
||||
url:"<c:url value='/uss/ion/pay/cancelRegistIdChkAjax.do' />",
|
||||
data:{
|
||||
"checkId": $("#checkIdModal").val()
|
||||
},
|
||||
dataType:'json',
|
||||
timeout:(1000*30),
|
||||
success:function(data){
|
||||
|
||||
console.log('data ', data);
|
||||
if(data.message != null)
|
||||
{
|
||||
alert(data.message);
|
||||
return false;
|
||||
}
|
||||
else
|
||||
{
|
||||
var refundVO = data.refundVO;
|
||||
|
||||
$('#mberIdTxt').text(refundVO.mberId);
|
||||
$('#mberId').val(refundVO.mberId);
|
||||
$('#mberNmTxt').text(refundVO.mberNm);
|
||||
$('#mberNm').val(refundVO.mberNm);
|
||||
$('#dpsitPhoneNo').val(refundVO.mberPhoneNo);
|
||||
$('#mberMoneyTxt').text(fn_unitChanges(refundVO.mberMoney));
|
||||
|
||||
// 환불가능금액
|
||||
mberRefundMaxMoney = refundVO.mberMoney;
|
||||
|
||||
$('.mask, .window').hide();
|
||||
}
|
||||
},
|
||||
error:function(request , status, error){
|
||||
console.log(' error ?');
|
||||
console.log('request : ', request);
|
||||
console.log('status : ', status);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
function fn_unitChanges(data){
|
||||
return data.toString()
|
||||
.replace(/\B(?<!\.\d*)(?=(\d{3})+(?!\d))/g, ",");
|
||||
}
|
||||
|
||||
function fn_goList(){
|
||||
|
||||
location.href = "<c:url value='/uss/ion/pay/RefundList.do' />";
|
||||
}
|
||||
|
||||
|
||||
|
||||
//################################################################
|
||||
var userMoney = 0; // 보유Cash
|
||||
var refundMoneySum = 0; // 환불신청금액(환불요청 상태)
|
||||
|
||||
$(document).ready(function() {
|
||||
$('#refundMoney').keyup(function(e){
|
||||
|
||||
var money = $(this).val().replace(/,/gi, "");
|
||||
$('#refundMoney').val(comma(money));
|
||||
|
||||
var moneyCommaRemove = $(this).val().replace(/,/gi, "");
|
||||
|
||||
var refundExpectMoney = 0;
|
||||
refundExpectMoney = comma(parseInt(moneyCommaRemove-(moneyCommaRemove/10)));
|
||||
|
||||
$("#refundExpectMoney").text(refundExpectMoney);
|
||||
});
|
||||
|
||||
//통장사본 파일 업로드
|
||||
$(function(){ //단일 파일업로드
|
||||
$('#bank').change(function(e){
|
||||
var objUpload = $(".upload_area");
|
||||
var files = $('#bank')[0].files;
|
||||
handleFileUpload(files,objUpload,'bank'); //파일업로드
|
||||
});
|
||||
});
|
||||
|
||||
//증빙서류 파일 업로드
|
||||
$(function(){ //단일 파일업로드
|
||||
$('#docu').change(function(e){
|
||||
var objUpload = $(".upload_area");
|
||||
var files = $('#docu')[0].files;
|
||||
handleFileUpload(files,objUpload, 'docu'); //파일업로드
|
||||
});
|
||||
});
|
||||
|
||||
$("input:radio[name=reason]").click(function(){
|
||||
|
||||
if($("input[name=reason]:checked").val() == "999"){
|
||||
$("input:text[name=reasonEtc]").attr("disabled",false);
|
||||
// radio 버튼의 value 값이 1이라면 활성화
|
||||
|
||||
}else{
|
||||
$("input:text[name=reasonEtc]").attr("disabled",true);
|
||||
// radio 버튼의 value 값이 0이라면 비활성화
|
||||
}
|
||||
});
|
||||
|
||||
$('#refundMoney').focusout(function(){
|
||||
if($(this).val() > mberRefundMaxMoney){
|
||||
alert("환불 신청 금액은 환불 가능 금액보다 작아야 합니다.");
|
||||
$(this).val('');
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
//엔터키 누르면 파일 첨부 영영기 열리는 오류 수정_220706
|
||||
document.addEventListener('keydown', function(event) {
|
||||
if (event.keyCode === 13) {
|
||||
event.preventDefault();
|
||||
};
|
||||
}, true);
|
||||
|
||||
$('#allmoney').change(function(){
|
||||
if($("#allmoney").is(":checked")){
|
||||
$('#refundMoney').val(comma(mberRefundMaxMoney));
|
||||
}else{
|
||||
$('#refundMoney').val('');
|
||||
}
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
// 환불신청금액(환불요청 상태)
|
||||
function getRefundMoneySum() {
|
||||
$.ajax({
|
||||
type: "POST",
|
||||
url: "/uss/ion/pay/refMonSumAjax.do",
|
||||
data: {"mberId" : $("#mberId").val()},
|
||||
dataType:'json',
|
||||
async: false,
|
||||
success: function (data) {
|
||||
if (data.isSuccess) {
|
||||
userMoney = data.userMoney;
|
||||
refundMoneySum = data.refundMoneySum;
|
||||
}
|
||||
else {
|
||||
//alert("Msg : " + data.msg);
|
||||
}
|
||||
},
|
||||
error: function (e) {
|
||||
console.log("ERROR : " + JSON.stringify(e));
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
function changeValue(obj){
|
||||
$('#atFileBasicWrite').val(obj.value);
|
||||
}
|
||||
function changeValue2(obj){
|
||||
$('#atFileBasicWrite2').val(obj.value);
|
||||
}
|
||||
var _fileIdx = 0;
|
||||
var _fileForm2 = new Array();
|
||||
|
||||
function fn_refund_insert() {
|
||||
|
||||
if($("input[name=reason]:checked").val() == "999"){
|
||||
document.listForm.refundReason.value = document.listForm.reason.value;
|
||||
document.listForm.refundReasonEtc.value = document.listForm.reasonEtc.value;
|
||||
}else{
|
||||
document.listForm.refundReason.value = document.listForm.reason.value;
|
||||
}
|
||||
//환불금액 컴마제거
|
||||
var refundMoney = document.listForm.refundMoney.value;
|
||||
document.listForm.refundMoney.value = refundMoney.replaceAll(",","");
|
||||
|
||||
if(fn_checkForm()){
|
||||
// 환불신청금액(환불요청 상태)
|
||||
getRefundMoneySum();
|
||||
|
||||
//if (parseInt(10000, 10) > parseInt(document.listForm.refundMoney.value, 10)) {
|
||||
// alert("10,000원 이하 환불 불가입니다.");
|
||||
// return;
|
||||
//}
|
||||
|
||||
if (parseInt(userMoney, 10) < parseInt(document.listForm.refundMoney.value, 10)) {
|
||||
alert("현재 회원의 보유금액보다 큰 금액을 환불 할 수 없습니다.");
|
||||
return;
|
||||
}
|
||||
else if ((parseInt(userMoney, 10) - parseInt(refundMoneySum, 10)) < parseInt(document.listForm.refundMoney.value, 10)) {
|
||||
alert("현재 회원의 (보유금액-환불신청금액)보다 큰 금액을 환불 할 수 없습니다.");
|
||||
return;
|
||||
}
|
||||
|
||||
if(confirm("환불신청을 하시겠습니까?")){
|
||||
|
||||
var data = new FormData(document.listForm);
|
||||
_fileForm2.forEach(function(obj, idx) {
|
||||
if(obj)
|
||||
{
|
||||
data.append(obj.name, obj.fileObj);
|
||||
}
|
||||
});
|
||||
|
||||
//for(var key of data.keys()){
|
||||
// console.log(key);
|
||||
//}
|
||||
|
||||
$.ajax({
|
||||
type: "POST",
|
||||
enctype: 'multipart/form-data',
|
||||
url: "/uss/ion/msg/refMonInsAjax.do",
|
||||
data: data,
|
||||
dataType:'json',
|
||||
async: false,
|
||||
processData: false,
|
||||
contentType: false,
|
||||
cache: false,
|
||||
//timeout: 600000,
|
||||
success: function (returnData, status) {
|
||||
if(returnData.msg != null){
|
||||
alert(returnData.msg);
|
||||
}
|
||||
else if(returnData.status == 'success'){
|
||||
alert("환불신청이 완료 되었습니다.");
|
||||
fn_goList(1);
|
||||
} else if(returnData.status == 'fail'){
|
||||
alert("환불신청이 실패하였습니다. !!");
|
||||
}
|
||||
},
|
||||
error: function (e) {
|
||||
|
||||
alert("환불신청이 실패하였습니다.");
|
||||
console.log("ERROR : ", e);
|
||||
}
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
function handleFileUpload(files,obj,pram) //업로드 function
|
||||
{
|
||||
var limitsize = 50*1024*1024; //파일 제한 체크(50개, 50MB)
|
||||
var limitcount = $("input[name=limitcount]").val()*1 ;
|
||||
if($('#tbody_fiielist').find('tr').length + files.length > limitcount ){
|
||||
alert("업로드 파일은 최대 "+limitcount+"개 입니다.");
|
||||
return ;
|
||||
}
|
||||
for (var i = 0; i < files.length; i++){
|
||||
if(files[i].size > limitsize){
|
||||
alert(files[i].name+"파일 사이즈가"+getStrFileSize(files[i].size)+"로 50MB이하만 업로드 가능합니다.");
|
||||
return ;
|
||||
}
|
||||
}
|
||||
|
||||
for (var i = 0; i < files.length; i++)
|
||||
{
|
||||
var fd = new FormData();
|
||||
fd.append('file', files[i]);
|
||||
var tmpObj = new Object();
|
||||
tmpObj.name = pram;
|
||||
tmpObj.fileObj = files[i];
|
||||
_fileForm2.push(tmpObj);
|
||||
sendFileToServer(fd, obj, files[i], _fileIdx);
|
||||
_fileIdx++;
|
||||
|
||||
var totalfileSize = 0;
|
||||
$('.totalfileCount').text($('.item_file_size').length) ;
|
||||
$('.item_file_size').each(function(){
|
||||
totalfileSize += $(this).val()*1 ;
|
||||
});
|
||||
$('.totalfileSize').text(getStrFileSize(totalfileSize)) ;
|
||||
}
|
||||
}
|
||||
|
||||
function sendFileToServer(formData, obj , fileObj, _fileIdx)
|
||||
{
|
||||
$('.no_img_box').hide(); //list 박스 형식 변경
|
||||
$('.file_list_div').show();
|
||||
var list_html = "";
|
||||
var tt = "";
|
||||
list_html += '<tr class="item_'+tt+' uploaded_obj">';
|
||||
|
||||
list_html += '<td class="file_name"><img src="'+getfile_img(fileObj.name)+'" alt=""><span class="file_name_text">'+fileObj.name+'</span></td>';
|
||||
list_html += '<td class="file_size"><span class="file_size_text" value='+fileObj.size+'>'+getStrFileSize(fileObj.size)+'</span></td>';
|
||||
list_html += '<td class="file_date">'+getDate()+'</td>';
|
||||
list_html += '<td class="file_del"><input type="button" class="delBtn" alt="" onclick="delete_item(this, '+_fileIdx+')" ></td>';
|
||||
list_html += '<input type="hidden" name="fileSize" class="item_file_size" value="'+fileObj.size+'">';
|
||||
list_html += '<input type="hidden" name="atchFileIds" class="imsi" value="'+tt+'">';
|
||||
list_html += '</tr>';
|
||||
$('#tbody_fiielist').append(list_html);
|
||||
}
|
||||
|
||||
/* 등록시 값 확인 */
|
||||
function fn_checkForm() {
|
||||
var formchk = document.listForm;
|
||||
|
||||
|
||||
if(formchk.refundMoney.value == '') {
|
||||
alert("환불 신청 금액을 입력해 주세요");
|
||||
return false;
|
||||
}
|
||||
|
||||
if($("input[name=reason]:checked").val() == "5" && formchk.reasonEtc.value == '') {
|
||||
alert("환불사유를 입력해 주세요");
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
function comma(num){
|
||||
var len, point, str;
|
||||
num = num + "";
|
||||
point = num.length % 3;
|
||||
len = num.length;
|
||||
str = num.substring(0, point);
|
||||
while (point < len) {
|
||||
if (str != "") str += ",";
|
||||
str += num.substring(point, point + 3);
|
||||
point += 3;
|
||||
}
|
||||
return str;
|
||||
}
|
||||
</script>
|
||||
|
||||
<style>
|
||||
.refund_reason {overflow:hidden;}
|
||||
.refund_reason > div {float:left;margin:0 0 10px;}
|
||||
|
||||
.tbType2_title {font-size: 20px; font-weight: 600; position: relative; height: 40px;}
|
||||
.tbType2_title button {position: absolute;top: 22%; right: 0; transform: translateY(-50%); background-color: #002c9a; height: 40px; padding: 0 15px; color: #fff;}
|
||||
.tbType2_title>span {font-size: 16px; font-weight: 300; color: #666;}
|
||||
|
||||
.calBtn {
|
||||
border: none;
|
||||
background-color: transparent !important;
|
||||
background-image: url(/pb/img/common/calendarIcon.png);
|
||||
background-repeat: no-repeat;
|
||||
width: 25px;
|
||||
height: 25px !important;
|
||||
vertical-align: middle;
|
||||
margin-left: -38px !important;
|
||||
margin-top: -2px !important;
|
||||
cursor: pointer;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<form name="listForm" id="listForm" method="post">
|
||||
<input type="hideen" name="mberId" id="mberId" value=""/> <!-- 회원 ID -->
|
||||
<input type="hideen" name="mberNm" id="mberNm" value=""/> <!-- 회원 이름 -->
|
||||
<input type="hidden" name="refundDivision" value="1"/>
|
||||
<input type="hidden" name="limitcount" value="<c:out value='3'/>" />
|
||||
<input type="hidden" name="atchFileNece" id="atchFileNece" value="N" /> <!-- 첨부파일 필수체크 -->
|
||||
<input type="hidden" name="refundReason" id="refundReason" value=""/>
|
||||
<input type="hidden" name="refundReasonEtc" id="refundReasonEtc" value=""/>
|
||||
|
||||
<div class="contWrap">
|
||||
<div class="pageTitle">
|
||||
<div class="pageIcon"><img src="/pb/img/pageTitIcon4.png" alt=""></div>
|
||||
<h2 class="titType1 c_222222 fwBold">환불 등록</h2>
|
||||
<p class="tType6 c_999999">환불등록 페이지 입니다.</p>
|
||||
</div>
|
||||
<div class="pageCont">
|
||||
<p class="tbType2_title">환불 금액 입력</p>
|
||||
<table class="tbType2">
|
||||
<colgroup>
|
||||
<col style="width: 20%">
|
||||
<col style="width: 80%">
|
||||
</colgroup>
|
||||
<tbody>
|
||||
<tr>
|
||||
<th>
|
||||
<span>회원 아이디
|
||||
<input type="button" id="showMask" class="btnType1 bg_456ded" value="조회" style="float: right;" />
|
||||
</span>
|
||||
</th>
|
||||
<td id="mberIdTxt">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th><span>회원 이름</span></th>
|
||||
<td id="mberNmTxt">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th><span>환불 가능 금액</span></th>
|
||||
<td id="mberMoneyTxt">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">환불 신청 금액</th>
|
||||
<td>
|
||||
<input type="text" name="refundMoney" id="refundMoney" style="width:330px;margin-right:5px;" oninput="this.value = this.value.replace(/[^0-9.]/g, '').replace(/(\..*)\./g, '$1');">
|
||||
<input type="checkbox" id="allmoney" name="allmoney" class="re">
|
||||
<span class="text_req">전액환불</span>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<br /><br />
|
||||
<p class="tbType2_title">환불 사유 및 연락처</p>
|
||||
<table class="tbType2">
|
||||
<colgroup>
|
||||
<col style="width: 160px;">
|
||||
<col style="width: auto;">
|
||||
</colgroup>
|
||||
<tbody>
|
||||
<tr>
|
||||
<th scope="row" style="line-height: 70px;">환불사유</th>
|
||||
<td>
|
||||
<div class="refund_reason">
|
||||
<ec:radio codeId="ITN050" name="reason" id="radioArea" selectedValue="1"/>
|
||||
<input type="text" name="reasonEtc" id="reasonEtc" size="36" disabled="disabled">
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">연락처</th>
|
||||
<td>
|
||||
<input type="text" name="dpsitPhoneNo" id="dpsitPhoneNo" style="width:380px;"
|
||||
oninput="this.value = this.value.replace(/[^0-9.]/g, '').replace(/(\..*)\./g, '$1');"
|
||||
maxlength="12">
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<br /><br />
|
||||
<table id="cancleFileTable" class="tbType2">
|
||||
<colgroup>
|
||||
<col style="width: 160px;">
|
||||
<col style="width: auto;">
|
||||
</colgroup>
|
||||
<tbody>
|
||||
<tr>
|
||||
<th scope="row">통장사본</th>
|
||||
<td class="attachedFile_wrap">
|
||||
<div>
|
||||
<input type="text" readonly="readonly" disabled id="atFileBasicWrite" placeholder="* 첨부가능 파일 jpg, gif, png 각 2MB 이내" style="width:380px;">
|
||||
<input type="file" name="bank" id="bank" style="display:none" onchange="changeValue(this); return false;"/>
|
||||
<button onclick="document.all.bank.click(); return false;" class="btnType btnType9">파일선택</button>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">증빙서류</th>
|
||||
<td class="attachedFile_wrap">
|
||||
<div>
|
||||
<input type="text" readonly="readonly" disabled id="atFileBasicWrite2" placeholder="* 첨부가능 파일 jpg, gif, png 각 2MB 이내" style="width:380px;">
|
||||
<input type="file" name="docu" id="docu" style="display:none" onchange="changeValue2(this); return false;"/>
|
||||
<button onclick="document.all.docu.click(); return false;" class="btnType btnType9">파일선택</button>
|
||||
</div>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<div class="btnWrap">
|
||||
<input type="button" class="btnType1 bg_888888" value="목록" onclick="fn_goList(); return false;">
|
||||
<input type="button" class="btnType1 bg_888888" value="저장" onclick="fn_refund_insert(); return false;"/>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
|
||||
<div class="setDiv">
|
||||
<div class="mask"></div>
|
||||
<div class="window">
|
||||
<div class="id_check1">
|
||||
<input type="button" href="#" class="close">
|
||||
<span>회원 아이디 검색</span>
|
||||
</div>
|
||||
<div class="id_check2">
|
||||
<span>검색할 아이디</span><input type="text" id="checkIdModal">
|
||||
</div>
|
||||
<div class="id_check3">
|
||||
<span>아이디를 검색하세요</span><button onclick="fn_refundIdChk(); return false;">검색</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@ -68,7 +68,37 @@ function goClose() {
|
||||
</div>
|
||||
|
||||
<!-- 네이버 전환페이지 설정 : 결제완료 -->
|
||||
<!-- 네이버 공통스크립트 -->
|
||||
<script type="text/javascript" src="//wcs.naver.net/wcslog.js"></script>
|
||||
<script type="text/javascript">
|
||||
if(!wcs_add) var wcs_add = {};
|
||||
wcs_add["wa"] = "s_1d413f411488";
|
||||
if (!_nasa) var _nasa={};
|
||||
if (window.wcs) {
|
||||
wcs.inflow("munjaon.co.kr");
|
||||
wcs_do(_nasa);
|
||||
}
|
||||
</script>
|
||||
|
||||
<!-- 구글 전환페이지 설정 : 결제완료 -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=AW-10967556094"></script>
|
||||
<script>
|
||||
gtag('event', 'conversion', {'send_to': 'AW-10967556094/NzM0CKzFuNgDEP6_3u0o'});
|
||||
</script>
|
||||
|
||||
<!-- 다음 전환페이지 설정 : 결제완료 -->
|
||||
<script type="text/javascript" charset="UTF-8" src="//t1.daumcdn.net/kas/static/kp.js"></script>
|
||||
<script type="text/javascript">
|
||||
kakaoPixel('2701774865775348507').pageView();
|
||||
kakaoPixel('2701774865775348507').purchase('결제완료');
|
||||
</script>
|
||||
|
||||
<!-- 에이스카운터 공통 스크립트 : AceCounter Log Gathering Script V.8.0.2019080601 -->
|
||||
<script language='javascript'>
|
||||
var _AceGID=(function(){var Inf=['gtc19.acecounter.com','8080','BS1A46164294118','AW','0','NaPm,Ncisy','ALL','0']; var _CI=(!_AceGID)?[]:_AceGID.val;var _N=0;var _T=new Image(0,0);if(_CI.join('.').indexOf(Inf[3])<0){ _T.src ="https://"+Inf[0]+'/?cookie'; _CI.push(Inf); _N=_CI.length; } return {o: _N,val:_CI}; })();
|
||||
var _AceCounter=(function(){var G=_AceGID;var _sc=document.createElement('script');var _sm=document.getElementsByTagName('script')[0];if(G.o!=0){var _A=G.val[G.o-1];var _G=(_A[0]).substr(0,_A[0].indexOf('.'));var _C=(_A[7]!='0')?(_A[2]):_A[3];var _U=(_A[5]).replace(/\,/g,'_');_sc.src='https:'+'//cr.acecounter.com/Web/AceCounter_'+_C+'.js?gc='+_A[2]+'&py='+_A[4]+'&gd='+_G+'&gp='+_A[1]+'&up='+_U+'&rd='+(new Date().getTime());_sm.parentNode.insertBefore(_sc,_sm);return _sc.src;}})();
|
||||
</script>
|
||||
<!-- AceCounter Log Gathering Script End -->
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@ -68,6 +68,37 @@ function goClose() {
|
||||
</div>
|
||||
|
||||
<!-- 네이버 전환페이지 설정 : 결제완료 -->
|
||||
<!-- 네이버 공통스크립트 -->
|
||||
<script type="text/javascript" src="//wcs.naver.net/wcslog.js"></script>
|
||||
<script type="text/javascript">
|
||||
if(!wcs_add) var wcs_add = {};
|
||||
wcs_add["wa"] = "s_1d413f411488";
|
||||
if (!_nasa) var _nasa={};
|
||||
if (window.wcs) {
|
||||
wcs.inflow("munjaon.co.kr");
|
||||
wcs_do(_nasa);
|
||||
}
|
||||
</script>
|
||||
|
||||
<!-- 구글 전환페이지 설정 : 결제완료 -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=AW-10967556094"></script>
|
||||
<script>
|
||||
gtag('event', 'conversion', {'send_to': 'AW-10967556094/NzM0CKzFuNgDEP6_3u0o'});
|
||||
</script>
|
||||
|
||||
<!-- 다음 전환페이지 설정 : 결제완료 -->
|
||||
<script type="text/javascript" charset="UTF-8" src="//t1.daumcdn.net/kas/static/kp.js"></script>
|
||||
<script type="text/javascript">
|
||||
kakaoPixel('2701774865775348507').pageView();
|
||||
kakaoPixel('2701774865775348507').purchase('결제완료');
|
||||
</script>
|
||||
|
||||
<!-- 에이스카운터 공통 스크립트 : AceCounter Log Gathering Script V.8.0.2019080601 -->
|
||||
<script language='javascript'>
|
||||
var _AceGID=(function(){var Inf=['gtc19.acecounter.com','8080','BS1A46164294118','AW','0','NaPm,Ncisy','ALL','0']; var _CI=(!_AceGID)?[]:_AceGID.val;var _N=0;var _T=new Image(0,0);if(_CI.join('.').indexOf(Inf[3])<0){ _T.src ="https://"+Inf[0]+'/?cookie'; _CI.push(Inf); _N=_CI.length; } return {o: _N,val:_CI}; })();
|
||||
var _AceCounter=(function(){var G=_AceGID;var _sc=document.createElement('script');var _sm=document.getElementsByTagName('script')[0];if(G.o!=0){var _A=G.val[G.o-1];var _G=(_A[0]).substr(0,_A[0].indexOf('.'));var _C=(_A[7]!='0')?(_A[2]):_A[3];var _U=(_A[5]).replace(/\,/g,'_');_sc.src='https:'+'//cr.acecounter.com/Web/AceCounter_'+_C+'.js?gc='+_A[2]+'&py='+_A[4]+'&gd='+_G+'&gp='+_A[1]+'&up='+_U+'&rd='+(new Date().getTime());_sm.parentNode.insertBefore(_sc,_sm);return _sc.src;}})();
|
||||
</script>
|
||||
<!-- AceCounter Log Gathering Script End -->
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@ -68,6 +68,37 @@ function goClose() {
|
||||
</div>
|
||||
|
||||
<!-- 네이버 전환페이지 설정 : 결제완료 -->
|
||||
<!-- 네이버 공통스크립트 -->
|
||||
<script type="text/javascript" src="//wcs.naver.net/wcslog.js"></script>
|
||||
<script type="text/javascript">
|
||||
if(!wcs_add) var wcs_add = {};
|
||||
wcs_add["wa"] = "s_1d413f411488";
|
||||
if (!_nasa) var _nasa={};
|
||||
if (window.wcs) {
|
||||
wcs.inflow("munjaon.co.kr");
|
||||
wcs_do(_nasa);
|
||||
}
|
||||
</script>
|
||||
|
||||
<!-- 구글 전환페이지 설정 : 결제완료 -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=AW-10967556094"></script>
|
||||
<script>
|
||||
gtag('event', 'conversion', {'send_to': 'AW-10967556094/NzM0CKzFuNgDEP6_3u0o'});
|
||||
</script>
|
||||
|
||||
<!-- 다음 전환페이지 설정 : 결제완료 -->
|
||||
<script type="text/javascript" charset="UTF-8" src="//t1.daumcdn.net/kas/static/kp.js"></script>
|
||||
<script type="text/javascript">
|
||||
kakaoPixel('2701774865775348507').pageView();
|
||||
kakaoPixel('2701774865775348507').purchase('결제완료');
|
||||
</script>
|
||||
|
||||
<!-- 에이스카운터 공통 스크립트 : AceCounter Log Gathering Script V.8.0.2019080601 -->
|
||||
<script language='javascript'>
|
||||
var _AceGID=(function(){var Inf=['gtc19.acecounter.com','8080','BS1A46164294118','AW','0','NaPm,Ncisy','ALL','0']; var _CI=(!_AceGID)?[]:_AceGID.val;var _N=0;var _T=new Image(0,0);if(_CI.join('.').indexOf(Inf[3])<0){ _T.src ="https://"+Inf[0]+'/?cookie'; _CI.push(Inf); _N=_CI.length; } return {o: _N,val:_CI}; })();
|
||||
var _AceCounter=(function(){var G=_AceGID;var _sc=document.createElement('script');var _sm=document.getElementsByTagName('script')[0];if(G.o!=0){var _A=G.val[G.o-1];var _G=(_A[0]).substr(0,_A[0].indexOf('.'));var _C=(_A[7]!='0')?(_A[2]):_A[3];var _U=(_A[5]).replace(/\,/g,'_');_sc.src='https:'+'//cr.acecounter.com/Web/AceCounter_'+_C+'.js?gc='+_A[2]+'&py='+_A[4]+'&gd='+_G+'&gp='+_A[1]+'&up='+_U+'&rd='+(new Date().getTime());_sm.parentNode.insertBefore(_sc,_sm);return _sc.src;}})();
|
||||
</script>
|
||||
<!-- AceCounter Log Gathering Script End -->
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@ -192,13 +192,15 @@ function pgOpenerPopup(){
|
||||
var payMethod = "";
|
||||
document.pgForm.action = "/web/member/pay/PayActionAjax.do";
|
||||
|
||||
if($currentTab==0){ payMethod = "CARD";}
|
||||
else if($currentTab==1){ payMethod = "VBANK"; }
|
||||
/*else if($currentTab==2){ payMethod = "TEMP_CARD"; }*/
|
||||
/* else if($currentTab==2){ payMethod = "CELLPHONE";
|
||||
document.pgForm.action = "/web/kgm/pay/KGMPayActionAjax.do";
|
||||
} */ //휴대폰 결제 방식 안보이도록 수정 20221117
|
||||
else if($currentTab==2){ payMethod = "BANK"; }
|
||||
if ($currentTab == 0) {
|
||||
payMethod = "SPAY";
|
||||
} else if ($currentTab==1) {
|
||||
payMethod = "CARD";
|
||||
} else if($currentTab==2){
|
||||
payMethod = "VBANK";
|
||||
} else if($currentTab==3){
|
||||
payMethod = "BANK";
|
||||
}
|
||||
$('input[name=payMethod]').val(payMethod);
|
||||
|
||||
//결제수단 상태 체크
|
||||
@ -224,28 +226,29 @@ function pgOpenerPopup(){
|
||||
|
||||
// 결제창 호출
|
||||
if ($currentTab==0) {
|
||||
// KG 모빌리언스 => CARD(신용카드)
|
||||
// KG 모빌리언스 => SPAY(간편결제)
|
||||
kgmPayCardRequest();
|
||||
}
|
||||
else if ($currentTab==2) {
|
||||
// KG 모빌리언스 => BANK(즉시이체)
|
||||
kgmPayBankRequest();
|
||||
}
|
||||
else {
|
||||
// 기타
|
||||
else if ($currentTab==1) {
|
||||
// 나이스페이 => CARD(카드결제)
|
||||
pg_opener = window.open('', 'pg_opener', "width=790, height=505, left="+popupX+", top="+popupY, "location = no","status= no","toolbars= no");
|
||||
|
||||
document.pgForm.method = "post";
|
||||
document.pgForm.target = "pg_opener" ;
|
||||
document.pgForm.submit();
|
||||
}
|
||||
}
|
||||
else if ($currentTab==2) {
|
||||
// 전용계좌
|
||||
}
|
||||
else if ($currentTab==3) {
|
||||
// KG 모빌리언스 => BANK(즉시이체)
|
||||
kgmPayBankRequest();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
//KG 모빌리언스 => CARD
|
||||
function kgmPayCardRequest() {
|
||||
$("#price").val(110);
|
||||
|
||||
$.ajax({
|
||||
type: "POST",
|
||||
url: "/web/member/pay/kgmCardEncodeAjax.do",
|
||||
@ -301,8 +304,6 @@ function kgmPayCardRequest() {
|
||||
|
||||
//KG 모빌리언스 => MOBILE
|
||||
function kgmPayMobileRequest() {
|
||||
$("#price").val(110);
|
||||
|
||||
$.ajax({
|
||||
type: "POST",
|
||||
url: "/web/member/pay/kgmMobileEncodeAjax.do",
|
||||
@ -369,8 +370,6 @@ function kgmPayMobileRequest() {
|
||||
|
||||
//KG 모빌리언스 => BANK
|
||||
function kgmPayBankRequest() {
|
||||
$("#price").val(1100);
|
||||
|
||||
$.ajax({
|
||||
type: "POST",
|
||||
url: "/web/member/pay/kgmBankEncodeAjax.do",
|
||||
@ -810,17 +809,75 @@ function TabTypePay(obj, tabId) {
|
||||
<div>
|
||||
<p class="tab_tit">충전수단 선택</p>
|
||||
<ul class="area_tab type03">
|
||||
<li class="btn_charge1 btn_tab active"><button type="button" onclick="TabTypePay(this,'1');"><i></i>신용카드</button></li>
|
||||
<li class="btn_charge0 btn_tab active"><button type="button" onclick="TabTypePay(this,'0');"><i></i>간편결제</button></li>
|
||||
<li class="btn_charge1 btn_tab"><button type="button" onclick="TabTypePay(this,'1');"><i></i>신용카드</button></li>
|
||||
<li class="btn_charge2 btn_tab"><button type="button" onclick="TabTypePay(this,'2');" id="btnDdedicatedAccount"><i></i>전용계좌</button></li>
|
||||
<!-- <li class="btn_charge2 btn_tab"><button type="button" onclick="TabTypePay(this,'3');"><i></i>무통장입금</button></li> -->
|
||||
<!-- <li class="btn_charge4 btn_tab"><button type="button" onclick="TabTypePay(this,'4');"><i></i>휴대폰결제</button></li> -->
|
||||
<li class="btn_charge5 btn_tab"><button type="button" onclick="TabTypePay(this,'5');"><i></i>즉시이체</button></li>
|
||||
</ul>
|
||||
<div class="checkbox_wrap"><input type="checkbox" id="agree"><label for="agree">선택한 수단을 다음 충전 시에도
|
||||
이용합니다.</label></div>
|
||||
|
||||
<!-- 간편결제 -->
|
||||
<div class="area_tabcont on" id="tab2_0">
|
||||
<p class="tType1_title"><img src="/publish/images/content/icon_charging1_small.png" alt=""> 간편결제</p>
|
||||
<table class="tType1">
|
||||
<caption></caption>
|
||||
<colgroup>
|
||||
<col style="width: 100px;">
|
||||
<col style="width: auto;">
|
||||
</colgroup>
|
||||
<tbody>
|
||||
<tr class="charge_content">
|
||||
<th scope="row">충전금액</th>
|
||||
<td class="flex">
|
||||
<select name="tempPrice" id="tempPrice" class="list_seType1">
|
||||
<option value="5000">5,000</option>
|
||||
<option value="10000">10,000</option>
|
||||
<option value="20000">20,000</option>
|
||||
<option value="30000">30,000</option>
|
||||
<option value="50000" selected>50,000</option>
|
||||
<option value="100000">100,000</option>
|
||||
<option value="200000">200,000</option>
|
||||
<option value="300000">300,000</option>
|
||||
<option value="500000">500,000</option>
|
||||
</select>
|
||||
<p class="input_in">원</p>
|
||||
<!-- <span class="reqTxt6">※ 최소 3천원 이상부터 결제 가능합니다.</span> -->
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2">
|
||||
<div class="amount_wrap">
|
||||
<dl>
|
||||
<dt>최종 결제금액 :</dt>
|
||||
<dd>
|
||||
<ul>
|
||||
<li><strong id="supplyPriceStr"></strong>원(공급가액)</li>
|
||||
<li><span class="plus"></span><strong id="vatPriceStr"></strong>원(부가세)</li>
|
||||
<li class="total"><span class="equal"></span><strong id="lastPriceStr"></strong>원(최종금액)</li>
|
||||
</ul>
|
||||
</dd>
|
||||
</dl>
|
||||
<button type="button" class="btnType" onclick="pgOpenerPopup(); return false;">충전하기</button>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2">
|
||||
<div class="area_text">
|
||||
<%--<p><span class="c_222222">- 신용카드 결제가 어려우신 고객께서는 문자온 고객센터(010-8432-9333)를 통해서도 ARS 신용카드 결제를 하실 수 있습니다.</span></p>--%>
|
||||
<p>- 인터넷 익스플로러 이용 고객께서는 도구-팝업 차단 해제 후 충전이 가능합니다.</p>
|
||||
<p>- 카드사별 정책상 충전금액 제한이 있을 수 있습니다. 단, ARS 신용카드 결제는 충전금액 제한 없이 이용하실 수 있습니다.</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<!-- //간편결제 -->
|
||||
|
||||
<!-- 신용카드 -->
|
||||
<div class="area_tabcont on" id="tab2_1">
|
||||
<div class="area_tabcont" id="tab2_1">
|
||||
<p class="tType1_title"><img src="/publish/images/content/icon_charging1_small.png" alt=""> 신용카드</p>
|
||||
<table class="tType1">
|
||||
<caption></caption>
|
||||
|
||||
@ -478,7 +478,7 @@
|
||||
<div class="send_info_fax">
|
||||
<p class="fax_title"><i></i>팩스 광고 필수 표시 의무사항</p>
|
||||
<div class="fax_content">
|
||||
<img src="/publish/images/content/fax_ex.png" alt="">
|
||||
<img src="/publish/images/content/fax_ex.png" alt="<팩스광고 예시> (광고)○○○샵 전화번호 02-123-4567 주소 경기도 남양주시 다산순환로 20 대량 팩스발송은 여기서 쉽고 빠르게 한번에! 신규회원 첫 결제 ★☆할인 및 적립 이벤트!!☆★ 기간) 20XX.01.01 ~ 20XX.12~31 (광고) 팩스 수신을 원하지않을 경우 080-1234-5678">
|
||||
<ul>
|
||||
<li>
|
||||
<p class="num_title">01</p>
|
||||
|
||||
@ -11,6 +11,7 @@
|
||||
<script src="/publish/js/swiper.min.js"></script>
|
||||
|
||||
<script type="text/javascript">
|
||||
var blineCode = "${blineCode}";
|
||||
|
||||
$(document).ready(function() {
|
||||
// http => https 로 이동
|
||||
@ -258,7 +259,7 @@ $(document).ready(function() {
|
||||
eventYn = true;
|
||||
</c:if>
|
||||
|
||||
if(payCount < 1 && eventYn){//결제내역이 하나도 없고, 이벤트가 진행중이면 팝업 호출
|
||||
if(payCount < 1 && eventYn && blineCode == 'N'){//결제내역이 하나도 없고, 이벤트가 진행중이면 팝업 호출
|
||||
remoteEventPayPop(payCount);
|
||||
}else{//이벤트 대상자가 아니면 첫결제 이벤트 팝업은 안보여준다.
|
||||
|
||||
@ -941,7 +942,12 @@ function fnEventLoginChk(){
|
||||
alert("해당 이벤트가 종료되었습니다.");
|
||||
location.href="<c:url value='/web/main/mainPage.do'/>";
|
||||
|
||||
}
|
||||
}else if(returnData.resultSts == 'eventBline'){//B선 전송사 이용고객 => 이벤트대상 제외처리
|
||||
|
||||
alert("이벤트 대상자가 아닙니다.");
|
||||
location.href="<c:url value='/web/main/mainPage.do'/>";
|
||||
|
||||
}
|
||||
|
||||
} else if(status== 'fail'){
|
||||
alert("이벤트 신청에 오류가 발생하였습니다.");
|
||||
@ -1166,13 +1172,13 @@ function fn_click_banner_add_stat(bannerMenuCode){
|
||||
<div class="slideImg"><img src="/publish/images/main/f_visual_06_20230523.jpg" alt="문자온, 카카오 '알림톡' 서비스 오픈! 문자온 알림톡, 대한민국 최저가 선언! 조건없이 무조건 6.9원! 카카오톡 채널아이디 추가를 하지 않은 이용자에게도 카카오톡 메시지 발송이 가능한 서비스! 알림톡 바로가기 알림톡 도착 kakao 문자온에서 알림톡이 도착하였습니다! 기업전용/1,000자 이하 텍스트 & 이미지/문자 대비 75% 저렴" usemap="#allimtalk-map"></div>
|
||||
</div>
|
||||
<div class="swiper-slide">
|
||||
<div class="slideImg"><img src="/publish/images/main/f_visual_01_20230602.jpg" alt="문자는 이제, 문자온! 단 한번, 국내 최저가! 인생 최저가! 첫결제 단문 7.5원 장문 32원 그림 59원 호국보훈의 달 나라의 영둥들 고맙습니다. 단오 한국의 전통명절 단오입니다. 하시는 일 모두 잘되시기를 기원하겠습니다." usemap="#image-map" /></div>
|
||||
<div class="slideImg"><img src="/publish/images/main/f_visual_01_20230621.jpg" alt="문자는 이제, 문자온! 단 한번, 국내 최저가! 인생 최저가! 첫결제 단문 7.5원 장문 32원 그림 59원 복날이닭 삼계탕 드시고 건강한 여름 보내세요 Summer 떠나요 힐링여행" usemap="#image-map" /></div>
|
||||
</div>
|
||||
<div class="swiper-slide">
|
||||
<div class="slideImg"><img src="/publish/images/main/f_visual_02_20221116.jpg" alt="문자도 보내고! 현금도 챙기는! 문자온만의 특별한 혜택! 결제금액의 2% 포인트 추가 적립! 포인트 1만점 이상 적립 시 현금페이백" /></div>
|
||||
</div>
|
||||
<div class="swiper-slide">
|
||||
<div class="slideImg"><img src="/publish/images/main/f_visual_03_20230602.jpg" alt="다른 사이트에는 없다! 오직 문자온에만 있다! 최고의 디자이너가 직접 제작하는 그림문자 맞춤제작을 통해 나만의 문자를 디자인 해보세요 단오제 06.18 ~ 06.25 장소 : 문자온시 문자온 공원일대 내용 : 체험마당, 놀이마당 등 단오제 곳곳에 숨겨진 단오 찾기 EVENT! 남녀노소가 기다린 단오제! 마음껏 즐기GO, 선물받GO! 5.30(월) ~ 6.6(월) 바다를 담은 여름보양식 신선한 식재료로 만든 보양식 한 그릇이 여름을 이기는 힘이 됩니다 시즌메뉴 OPEN 장어덮밥 ₩9,000 여름한정메뉴 오픈기념 이벤트 06.01 ~ 06.30 장어덮밥을 주문하시는 선착순 100명의 고객분들께 전복을 하나 더 추가해드립니다!" /></div>
|
||||
<div class="slideImg"><img src="/publish/images/main/f_visual_03_20230621.jpg" alt="다른 사이트에는 없다! 오직 문자온에만 있다! 최고의 디자이너가 직접 제작하는 그림문자 맞춤제작을 통해 나만의 문자를 디자인 해보세요 해수욕장 숙박권 Summer 썸머축제 이벤트 안내 미리 예매만 해도 숙박권 70% 할인!! 엠제이여행사에서 해수욕장 숙박권을 예매하신 고객분들에게 최고급 호텔 숙박권을 무료로 드립니다 70% 할인 복날이닭 할인받자! 3만원할인 ₩12,900 마지막 복날 마지막 찬스 할인받고 복날 치킨 즐기세요! DCCHANCE 8.11(목) - 12(금) 단 2일! 고소하고 시원하게 콩국수 이以냉冷치治열熱 시원한 여름시즌메뉴로 무더위를 시원하게 극복하세요. 매콤하고 시원하게 열무말이 국수" /></div>
|
||||
</div>
|
||||
<div class="swiper-slide">
|
||||
<div class="slideImg"><img src="/publish/images/main/f_visual_04_20221116.jpg" alt="문자는 이제, 문자온! 선택은 역시 문자온! 문자사이트 선택의 5가지 기준 1. 가격, 속도, 성능, 기능, 보안이 보장되는가? 2. 결제, 정산, 계산서 발행 등 업무가 자동화 되어 있고 편리한가? 3. 최신 IT 기술과 트렌드가 반영되어 있는가? 4. 회원가입 및 발신번호 인증이 쉽고 빠르며, 대량문자를 전송하기에 사용이 편리한가? 5. 매일 문자샘플이 업데이트 되고, CS 및 기술응대가 실시간적으로 이루어지는가?" /></div>
|
||||
|
||||
@ -186,9 +186,9 @@ function fnShowRefundPrintPopup(){
|
||||
<!-- tab button -->
|
||||
<ul class="tabType1">
|
||||
<li class="tab active"><button type="button" onclick="TabType5(this,'1');listLoad('/web/member/pay/PayListAllAjax.do'); return false;" >전체</button></li>
|
||||
<!-- <li class="tab"><button type="button" onclick="TabType5(this,'2');listLoad('/web/member/pay/PayListSPayAjax.do'); return false;">간편결제 결제내역</button></li>-->
|
||||
<li class="tab"><button type="button" onclick="TabType5(this,'2');listLoad('/web/member/pay/PayListVBankAjax.do'); return false;">전용계좌 결제내역</button></li>
|
||||
<li class="tab"><button type="button" onclick="TabType5(this,'3');listLoad('/web/member/pay/PayListCardAjax.do'); return false;">신용카드 결제내역</button></li>
|
||||
<!-- <li class="tab"><button type="button" onclick="TabType5(this,'4');listLoad('/web/member/pay/PayListOfflineAjax.do'); return false;">무통장입금</button></li> -->
|
||||
<li class="tab"><button type="button" onclick="TabType5(this,'4');listLoad('/web/member/pay/PayListMobileAjax.do'); return false;">휴대폰 결제내역</button></li>
|
||||
<li class="tab"><button type="button" onclick="TabType5(this,'5');listLoad('/web/member/pay/PayListBankAjax.do'); return false;">즉시이체 결제내역</button></li>
|
||||
<li class="tab"><button type="button" onclick="TabType5(this,'6');listLoad('/web/member/pay/PayListPointAjax.do'); return false;">포인트 교환내역</button></li>
|
||||
|
||||
@ -514,7 +514,7 @@ $(document).on("click", "#chkAll", function(e) {
|
||||
<c:if test="${result.rcptType eq '0'}">
|
||||
<p class="fwRg c_002c9a">간이영수증 발행완료</p>
|
||||
</c:if>
|
||||
<c:if test="${result.payMethod == 'CARD'}">
|
||||
<c:if test="${result.payMethod == 'CARD' || result.payMethod == 'SPAY'}">
|
||||
<button type="button" class="btnType btnType20" onclick="fnPrintReceipt('<c:out value="${result.tid}"/>', '<c:out value="${result.pgCode}"/>', '<c:out value="${result.svcId}"/>', '<c:out value="${result.mrctTrdNo}"/>', '<c:out value="${result.trdNo}"/>', '<c:out value="${result.regDate}"/>'); return false;">카드전표</button>
|
||||
</c:if>
|
||||
</c:if>
|
||||
|
||||
@ -117,14 +117,18 @@ function pgOpenerPopup(){
|
||||
|
||||
var payMethod = "";
|
||||
document.pgForm.action = "/web/member/pay/PayActionAjax.do";
|
||||
|
||||
if($currentTab==0){ payMethod = "CARD";}
|
||||
else if($currentTab==1){ payMethod = "VBANK"; }
|
||||
/*else if($currentTab==2){ payMethod = "TEMP_CARD"; }*/
|
||||
else if($currentTab==2){ payMethod = "CELLPHONE";
|
||||
document.pgForm.action = "/web/kgm/pay/KGMPayActionAjax.do";
|
||||
|
||||
if ($currentTab == 0) {
|
||||
payMethod = "SPAY";
|
||||
} else if ($currentTab == 1) {
|
||||
payMethod = "CARD";
|
||||
} else if ($currentTab == 2) {
|
||||
payMethod = "VBANK";
|
||||
} else if ($currentTab==3) {
|
||||
payMethod = "CELLPHONE";
|
||||
} else if ($currentTab==4) {
|
||||
payMethod = "BANK";
|
||||
}
|
||||
else if($currentTab==3){ payMethod = "BANK"; }
|
||||
$('input[name=payMethod]').val(payMethod);
|
||||
|
||||
//결제수단 상태 체크
|
||||
@ -149,33 +153,29 @@ function pgOpenerPopup(){
|
||||
var popupY = scY + (docHeight - 195) / 2;
|
||||
|
||||
// 결제창 호출
|
||||
if ($currentTab==0) {
|
||||
// KG 모빌리언스 => CARD(신용카드)
|
||||
if ($currentTab == 0) {
|
||||
// KG 모빌리언스 => SPAY(간편결제)
|
||||
kgmPayCardRequest();
|
||||
}
|
||||
else if ($currentTab==2) {
|
||||
} else if ($currentTab == 1) {
|
||||
// 나이스페이 => CARD(카드결제)
|
||||
pg_opener = window.open('', 'pg_opener', "width=790, height=505, left="+popupX+", top="+popupY, "location = no","status= no","toolbars= no");
|
||||
|
||||
document.pgForm.method = "post";
|
||||
document.pgForm.target = "pg_opener" ;
|
||||
document.pgForm.submit();
|
||||
} else if ($currentTab == 2) {
|
||||
// 전용계좌
|
||||
} else if ($currentTab == 3) {
|
||||
// KG 모빌리언스 => MOBILE(휴대폰결제)
|
||||
kgmPayMobileRequest();
|
||||
}
|
||||
else if ($currentTab==3) {
|
||||
} else if ($currentTab==4) {
|
||||
// KG 모빌리언스 => BANK(즉시이체)
|
||||
kgmPayBankRequest();
|
||||
}
|
||||
else {
|
||||
// 기타
|
||||
pg_opener = window.open('', 'pg_opener', "width=790, height=505, left="+popupX+", top="+popupY, "location = no","status= no","toolbars= no");
|
||||
|
||||
document.pgForm.method = "post";
|
||||
document.pgForm.target = "pg_opener" ;
|
||||
document.pgForm.submit();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
//KG 모빌리언스 => CARD
|
||||
function kgmPayCardRequest() {
|
||||
$("#price").val(110);
|
||||
|
||||
$.ajax({
|
||||
type: "POST",
|
||||
url: "/web/member/pay/kgmCardEncodeAjax.do",
|
||||
@ -231,8 +231,6 @@ function kgmPayCardRequest() {
|
||||
|
||||
//KG 모빌리언스 => MOBILE
|
||||
function kgmPayMobileRequest() {
|
||||
$("#price").val(110);
|
||||
|
||||
$.ajax({
|
||||
type: "POST",
|
||||
url: "/web/member/pay/kgmMobileEncodeAjax.do",
|
||||
@ -299,8 +297,6 @@ function kgmPayMobileRequest() {
|
||||
|
||||
//KG 모빌리언스 => BANK
|
||||
function kgmPayBankRequest() {
|
||||
$("#price").val(1100);
|
||||
|
||||
$.ajax({
|
||||
type: "POST",
|
||||
url: "/web/member/pay/kgmBankEncodeAjax.do",
|
||||
@ -643,7 +639,8 @@ function TabTypePay(obj, tabId) {
|
||||
<div>
|
||||
<p class="tab_tit">충전수단 선택</p>
|
||||
<ul class="area_tab">
|
||||
<li class="btn_charge1 btn_tab active"><button type="button" onclick="TabTypePay(this,'1');"><i></i>신용카드</button></li>
|
||||
<li class="btn_charge0 btn_tab active"><button type="button" onclick="TabTypePay(this,'0');"><i></i>간편결제</button></li>
|
||||
<li class="btn_charge1 btn_tab"><button type="button" onclick="TabTypePay(this,'1');"><i></i>신용카드</button></li>
|
||||
<li class="btn_charge2 btn_tab"><button type="button" onclick="TabTypePay(this,'2');" id="btnDdedicatedAccount"><i></i>전용계좌</button></li>
|
||||
<!-- <li class="btn_charge2 btn_tab"><button type="button" onclick="TabTypePay(this,'3');"><i></i>무통장입금</button></li> -->
|
||||
<li class="btn_charge4 btn_tab"><button type="button" onclick="TabTypePay(this,'4');"><i></i>휴대폰결제</button></li>
|
||||
@ -652,8 +649,82 @@ function TabTypePay(obj, tabId) {
|
||||
<div class="checkbox_wrap"><input type="checkbox" id="agree"><label for="agree">선택한 수단을 다음 충전 시에도
|
||||
이용합니다.</label></div>
|
||||
|
||||
<!-- 간편결제 -->
|
||||
<div class="area_tabcont on" id="tab2_0">
|
||||
<p class="tType1_title"><img src="/publish/images/content/icon_charging1_small.png" alt=""> 간편결제</p>
|
||||
<table class="tType1">
|
||||
<caption></caption>
|
||||
<colgroup>
|
||||
<col style="width: 100px;">
|
||||
<col style="width: auto;">
|
||||
</colgroup>
|
||||
<tbody>
|
||||
<tr class="charge_content">
|
||||
<th scope="row">충전금액</th>
|
||||
<td class="flex">
|
||||
<select name="tempPrice" id="tempPrice" class="list_seType1">
|
||||
<option value="5000">5,000</option>
|
||||
<option value="10000">10,000</option>
|
||||
<option value="20000">20,000</option>
|
||||
<option value="30000">30,000</option>
|
||||
<option value="50000" selected>50,000</option>
|
||||
<option value="100000">100,000</option>
|
||||
<option value="200000">200,000</option>
|
||||
<option value="300000">300,000</option>
|
||||
<option value="500000">500,000</option>
|
||||
<option value="700000">700,000</option>
|
||||
<option value="900000">900,000</option>
|
||||
<option value="1000000">1,000,000</option>
|
||||
<option value="1200000">1,200,000</option>
|
||||
<option value="1500000">1,500,000</option>
|
||||
<option value="2000000">2,000,000</option>
|
||||
<option value="2500000">2,500,000</option>
|
||||
<option value="3000000">3,000,000</option>
|
||||
</select>
|
||||
<%--<input type="text" numberOnly placeholder="금액을 입력해주세요" name="tempPrice" class="tempPrice" onfocus="this.placeholder=''" onblur="this.placeholder='금액을 입력해주세요'">
|
||||
<p class="input_in">원</p>
|
||||
<button type="button" class="btnType1" onclick="setPrice(this , '3000'); return false;">+ 3천원</button>
|
||||
<button type="button" onclick="setPrice(this , '5000'); return false;">+ 5천원</button>
|
||||
<button type="button" onclick="setPrice(this , '10000'); return false;">+ 1만원</button>
|
||||
<button type="button" onclick="setPrice(this , '100000'); return false;">+ 10만원</button>
|
||||
<button type="button" onclick="setPrice(this , '1000000'); return false;">+ 100만원</button>--%>
|
||||
<p class="input_in">원</p>
|
||||
<!-- <span class="reqTxt6">※ 최소 3천원 이상부터 결제 가능합니다.</span> -->
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2">
|
||||
<div class="amount_wrap">
|
||||
<dl>
|
||||
<dt>최종 결제금액 :</dt>
|
||||
<dd>
|
||||
<ul>
|
||||
<li><strong id="supplyPriceStr"></strong>원(공급가액)</li>
|
||||
<li><span class="plus"></span><strong id="vatPriceStr"></strong>원(부가세)</li>
|
||||
<li class="total"><span class="equal"></span><strong id="lastPriceStr"></strong>원(최종금액)</li>
|
||||
</ul>
|
||||
</dd>
|
||||
</dl>
|
||||
<button type="button" class="btnType" onclick="pgOpenerPopup(); return false;">충전하기</button>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2">
|
||||
<div class="area_text">
|
||||
<%--<p><span class="c_222222">- 신용카드 결제가 어려우신 고객께서는 문자온 고객센터(010-8432-9333)를 통해서도 ARS 신용카드 결제를 하실 수 있습니다.</span></p>--%>
|
||||
<p>- 인터넷 익스플로러 이용 고객께서는 도구-팝업 차단 해제 후 충전이 가능합니다.</p>
|
||||
<p>- 카드사별 정책상 충전금액 제한이 있을 수 있습니다. 단, ARS 신용카드 결제는 충전금액 제한 없이 이용하실 수 있습니다.</p>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<!-- //간편결제 -->
|
||||
|
||||
<!-- 신용카드 -->
|
||||
<div class="area_tabcont on" id="tab2_1">
|
||||
<div class="area_tabcont" id="tab2_1">
|
||||
<p class="tType1_title"><img src="/publish/images/content/icon_charging1_small.png" alt=""> 신용카드</p>
|
||||
<table class="tType1">
|
||||
<caption></caption>
|
||||
|
||||
@ -235,7 +235,7 @@
|
||||
<td class="padding_add">
|
||||
{
|
||||
<p>"resultCode":"0"</p>
|
||||
<p>, "data":[</p>
|
||||
<p>, "data":{</p>
|
||||
<div>
|
||||
<p>"msgGroupId":"MSGGID_0000000000000"</p>
|
||||
<p>, "msgType":"SMS"</p>
|
||||
@ -245,7 +245,7 @@
|
||||
<p>, "successCnt":"3"</p>
|
||||
<p>, "test_yn":null</p>
|
||||
</div>
|
||||
<p>]</p>
|
||||
<p>}</p>
|
||||
}
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
@ -206,18 +206,17 @@
|
||||
<td class="padding_add">
|
||||
{
|
||||
<p> "resultCode":"0"</p>
|
||||
<p> , "data":[</p>
|
||||
<p>  {</p>
|
||||
<p>   "longPrice":"50"</p>
|
||||
<p>   , "longSendPsbltEa": "19651"</p>
|
||||
<p>   , "mberMoney": "982586.7"</p>
|
||||
<p>   , "message": null</p>
|
||||
<p>   , "picturePrice": "90"</p>
|
||||
<p>   , "pictureSendPsbltEa": "10917"</p>
|
||||
<p>   , "shortPrice": "18"</p>
|
||||
<p>   , "shortSendPsbltEa": "54588"</p>
|
||||
<p>  }</p>
|
||||
<p> ]</p>
|
||||
<p> , "data":{</p>
|
||||
<p>  "longPrice":"50"</p>
|
||||
<p>  , "longSendPsbltEa": "19651"</p>
|
||||
<p>  , "mberMoney": "982586.7"</p>
|
||||
<p>  , "message": null</p>
|
||||
<p>  , "picturePrice": "90"</p>
|
||||
<p>  , "pictureSendPsbltEa": "10917"</p>
|
||||
<p>  , "shortPrice": "18"</p>
|
||||
<p>  , "shortSendPsbltEa": "54588"</p>
|
||||
<p>  </p>
|
||||
<p> }</p>
|
||||
}
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
@ -5,6 +5,11 @@
|
||||
<script language=javascript>
|
||||
$(document).ready(function(){
|
||||
|
||||
$('#download_btn').click(function(){
|
||||
location.href="<c:out value='/sample_mjon/jsp_샘플_예제.zip' />";
|
||||
});
|
||||
|
||||
|
||||
});
|
||||
|
||||
</script>
|
||||
@ -36,56 +41,53 @@ $(document).ready(function(){
|
||||
아래의 예제를 참고하시면 보다 쉽게 문자온 RESTful API의 구현이 가능합니다.
|
||||
</br>
|
||||
|
||||
<p class="tType1_title">Example</p>
|
||||
<!-- JSP -->
|
||||
<ul class="clause_list">
|
||||
<li class="list_open on">
|
||||
<div class="clause_list_head">
|
||||
<div class="list_head_in">
|
||||
<span>JSP Example</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="clause_list_body">
|
||||
<table class="refund_info">
|
||||
<colgroup>
|
||||
<col style="width: 25%">
|
||||
<col style="width: auto;">
|
||||
</colgroup>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>jsp_example_send_msg.jsp</td>
|
||||
<td>문자보내기(여러명에게 동일한문자)</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>jsp_example_send_msgs.jsp</td>
|
||||
<td>문자보내기(여러명에게 다른문자)</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>jsp_example_list.jsp</td>
|
||||
<td>전송내역조회</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>jsp_example_detail_list.jsp</td>
|
||||
<td>상세전송내역조회</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>jsp_example_remain.jsp</td>
|
||||
<td>발송가능건수</td>
|
||||
</tr>
|
||||
|
||||
|
||||
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<p class="tType1_title">Example</p>
|
||||
<!-- JSP -->
|
||||
<ul class="clause_list">
|
||||
<li class="list_open on">
|
||||
<div class="clause_list_head">
|
||||
<div class="list_head_in">
|
||||
<span>JSP Example</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="clause_list_body">
|
||||
<table class="refund_info">
|
||||
<colgroup>
|
||||
<col style="width: 25%">
|
||||
<col style="width: auto;">
|
||||
</colgroup>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>jsp_example_send_msg_r1.jsp</td>
|
||||
<td>문자보내기(여러명에게 동일한문자)</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>jsp_example_send_msgs_r1.jsp</td>
|
||||
<td>문자보내기(여러명에게 다른문자)</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>jsp_example_hstry_r1.jsp</td>
|
||||
<td>전송내역조회</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>jsp_example_hstry_detail_r1.jsp</td>
|
||||
<td>상세전송내역조회</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>jsp_example_select_price_r1.jsp</td>
|
||||
<td>발송가능건수</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<span class="reqTxt4">
|
||||
<div class="mem_btnWrap2">
|
||||
<button type="button" style="width:50%;" class="mem_btn3" style="width: 100%;" id="sendMSG" onclick="return false;">JSP용 예제 다운받기</button>
|
||||
</div>
|
||||
</span>
|
||||
<span class="reqTxt4">
|
||||
<div class="mem_btnWrap2">
|
||||
<button type="button" class="mem_btn3" id="download_btn" style="width: 100%;" id="sendMSG" onclick="return false;">JSP용 예제 다운받기</button>
|
||||
</div>
|
||||
</span>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
@ -278,6 +278,16 @@ input[type="button"].printBtn{border: 1px solid #686b72;background-image: url(/p
|
||||
.pageCont .tbType3 tbody tr th{background-color: #f3f6fa;color: #222;vertical-align: middle;letter-spacing: -1px;}
|
||||
.pageCont .tbType3 tbody tr td{color: #222;height: 45px;vertical-align: middle;}
|
||||
|
||||
|
||||
.pageCont .tbType4{text-align: center; width: 100%; table-layout: fixed; margin:0 0 50px 0;}
|
||||
.pageCont .tbType4 thead tr th{border-top:2px solid #456ded; border-bottom:3px double #e6e6e6; padding: 13px 0; font-size: 1em; font-weight: 500;color: #555; white-space: nowrap; border-left:1px solid #d5d5d5; text-align:center;}
|
||||
.pageCont .tbType4 thead tr th:first-child {border-left:none;}
|
||||
.pageCont .tbType4{border-top: 2px solid #456ded;width: 100%;table-layout: fixed;text-align: left;}
|
||||
.pageCont .tbType4 tbody tr{border-bottom: 2px solid #e5e5e5;}
|
||||
.pageCont .tbType4 tbody tr td{vertical-align: middle;font-size: 1em;font-weight: 400;color: #555;padding: 12px 0; border-left:1px solid #d5d5d5; text-align:center;}
|
||||
.pageCont .tbType4 tbody tr td:first-child {border-left:none;}
|
||||
|
||||
|
||||
.ipStatus .contBox{margin-right: 30px;margin-bottom: 50px;flex-grow: 2 1;width: auto;float: left;}
|
||||
.ipStatus .contBox:nth-child(1){width: 65%;}
|
||||
.ipStatus .contBox:nth-child(2){width: 30%;}
|
||||
|
||||
334
src/main/webapp/pb/user_manage_list2_1.html
Normal file
334
src/main/webapp/pb/user_manage_list2_1.html
Normal file
@ -0,0 +1,334 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="ko">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>회원관리 >회원 정보(리스트)</title>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700&display=swap" rel="stylesheet">
|
||||
<link rel="stylesheet" href="/pb/css/reset.css">
|
||||
<link rel="stylesheet" href="/pb/css/common.css">
|
||||
<link rel="stylesheet" href="/pb/css/content.css">
|
||||
<link rel="stylesheet" href="/pb/css/popup.css">
|
||||
<script src="/pb/js/jquery-3.5.0.js"></script>
|
||||
<script src="/pb/js/common.js"></script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<header>
|
||||
<h1><a href="/pb/dashBoard.html"><img src="/pb/img/common/topLogo.png" alt="아이티앤 로고이미지"></a></h1>
|
||||
<div class="topRight"><input type="button" class="allMenu">
|
||||
<ul class="inline">
|
||||
<li><input type="button" class="alramBtn"></li>
|
||||
<li><input type="button" class="mailBtn"></li>
|
||||
<li><input type="button" class="quickSiteBtn"></li>
|
||||
<li><input type="button" class="favoriteBtn"></li>
|
||||
</ul>
|
||||
<div class="infoWrap">
|
||||
<ul class="inline">
|
||||
<li><img src="/pb/img/common/topTimeOut.png" alt="타임아웃 아이콘">
|
||||
<p>로그인 세션 타임아웃 시간 : <span>30</span>분</p>
|
||||
</li>
|
||||
<li><img src="/pb/img/common/topTime.png" alt="타임 아이콘">
|
||||
<p>최종접속일시 : <span>2020-06-01 11:00</span></p>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="pfWrap">
|
||||
<div class="pfImg"><img src="/pb/img/pfImg.jpg" alt="개인이미지"></div>
|
||||
<ul>
|
||||
<li class="pfName">Soobin Jung</li>
|
||||
<li class="pfPosi">최고관리자</li>
|
||||
</ul><input type="button" class="downBtn">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
<nav class="leftMenu">
|
||||
<ul>
|
||||
<li><img src="/pb/img/common/leftMenu1.png" alt="권한관리메뉴 아이콘">
|
||||
<p>권한관리</p><input type="button" class="goBtn">
|
||||
<ul class="subMenu">
|
||||
<li><a href="#">권한관리</a></li>
|
||||
<li><a href="#">관리자별권한관리</a></li>
|
||||
<li><a href="#">롤관리</a></li>
|
||||
<li><a href="#">관리자접근허용IP</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><img src="/pb/img/common/leftMenu2.png" alt="코드관리메뉴 아이콘">
|
||||
<p>코드관리</p><input type="button" class="goBtn">
|
||||
<ul class="subMenu">
|
||||
<li><a href="#">공통코드관리</a></li>
|
||||
<li><a href="#">상세코드관리</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><img src="/pb/img/common/leftMenu3.png" alt="회원관리메뉴 아이콘">
|
||||
<p>회원관리</p><input type="button" class="goBtn">
|
||||
<ul class="subMenu">
|
||||
<li><a href="#">회원가입설정</a></li>
|
||||
<li><a href="#">회원탈퇴설정</a></li>
|
||||
<li><a href="#">개인정보보호관리</a></li>
|
||||
<li><a href="#">접속차단ID관리</a></li>
|
||||
<li><a href="#">관리자관리</a></li>
|
||||
<li><a href="#">사용자관리</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><img src="/pb/img/common/leftMenu4.png" alt="홈페이지관리메뉴 아이콘">
|
||||
<p>홈페이지관리</p><input type="button" class="goBtn">
|
||||
<ul class="subMenu">
|
||||
<li><a href="#">매뉴관리</a></li>
|
||||
<li><a href="#">게시판관리</a></li>
|
||||
<li><a href="#">첨부파일관리</a></li>
|
||||
<li><a href="#">조직도</a></li>
|
||||
<li><a href="#">결재관리</a></li>
|
||||
<li><a href="#">만족도관리</a></li>
|
||||
<li><a href="#">약관관리</a></li>
|
||||
<li><a href="#">설문조사 관리</a></li>
|
||||
<li><a href="#">관리자로그리스트</a></li>
|
||||
<li><a href="#">관리자로그보관관리</a></li>
|
||||
<li><a href="#">관리자로그설정관리</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><img src="/pb/img/common/leftMenu5.png" alt="비주얼관리메뉴 아이콘">
|
||||
<p>비주얼관리</p><input type="button" class="goBtn">
|
||||
<ul class="subMenu">
|
||||
<li><a href="#">메인비주얼관리</a></li>
|
||||
<li><a href="#">메뉴비주얼관리</a></li>
|
||||
<li><a href="#">팝업존관리</a></li>
|
||||
<li><a href="#">배너관리</a></li>
|
||||
<li><a href="#">팝업관리</a></li>
|
||||
<li><a href="#">콘텐츠관리</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><img src="/pb/img/common/leftMenu6.png" alt="아이피관리메뉴 아이콘">
|
||||
<p>아이피관리</p><input type="button" class="goBtn">
|
||||
<ul class="subMenu">
|
||||
<li><a href="#">아이피현황</a></li>
|
||||
<li><a href="#">아이피리스트</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><img src="/pb/img/common/leftMenu7.png" alt="환경설정메뉴 아이콘">
|
||||
<p>환경설정</p><input type="button" class="goBtn">
|
||||
<ul class="subMenu">
|
||||
<li><a href="#">메타태그관리</a></li>
|
||||
<li><a href="#">금지어관리</a></li>
|
||||
<li><a href="#">방문자스크립트관리</a></li>
|
||||
<li><a href="#">점검중페이지관리</a></li>
|
||||
<li><a href="#">웹아이콘관리</a></li>
|
||||
<li><a href="#">웹타이틀관리</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><img src="/pb/img/common/leftMenu8.png" alt="사이트관리메뉴 아이콘">
|
||||
<p>사이트관리</p><input type="button" class="goBtn">
|
||||
<ul class="subMenu">
|
||||
<li><a href="#">아이디관리</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="btnWrap">
|
||||
<ul>
|
||||
<li><button>
|
||||
<p>관리자 <span>매뉴얼</span></p><img src="/pb/img/common/leftBtnIcon1.png" alt="관리자 매뉴얼 아이콘">
|
||||
</button></li>
|
||||
<li><button>
|
||||
<p>홈페이지<span>바로가기</span></p><img src="/pb/img/common/leftBtnIcon2.png" alt="홈페이지바로가기 아이콘">
|
||||
</button></li>
|
||||
</ul>
|
||||
</div><span class="leftBtm">N-CMS Version 3.8</span>
|
||||
</nav>
|
||||
<div class="contWrap">
|
||||
<div class="pageTitle">
|
||||
<div class="pageIcon"><img src="/pb/img/pageTitIcon4.png" alt=""></div>
|
||||
<h2 class="titType1 c_222222 fwBold">사용자관리</h2>
|
||||
</div>
|
||||
<div class="pageCont">
|
||||
<div class="listSerch">
|
||||
<div class="calendar_wrap"><select name="setCalMonth" onchange="fnSetCalMonth(this.value)">
|
||||
<option value="0">전체</option>
|
||||
<option value="1">1개월</option>
|
||||
<option value="3">3개월</option>
|
||||
<option value="6">6개월</option>
|
||||
</select><input type="hidden" name="cal_url" id="cal_url" value="/sym/cmm/EgovNormalCalPopup.do">
|
||||
<div class="calendar_box" onclick="javascript:fn_egov_NormalCalendar(document.forms.listForm, document.forms.listForm.searchStartDate);"><input style="width:auto;min-width: 83px;" type="text" class="date_format" name="searchStartDate" id="searchStartDate" size="4" maxlength="4" readonly="" value=""><input type="button" class="calBtn"></div><span class="line">~</span>
|
||||
<div class="calendar_box" onclick="javascript:fn_egov_NormalCalendar(document.forms.listForm, document.forms.listForm.searchEndDate);"><input style="width:auto;min-width: 83px;" type="text" class="date_format" name="searchEndDate" id="searchEndDate" size="4" maxlength="4" readonly="" value=""><input type="button" class="calBtn"></div>
|
||||
</div><select id="searchCondition" name="searchCondition" title="조회조건">
|
||||
<option value="" selected="selected">전체</option>
|
||||
<option value="0">아이디</option>
|
||||
<option value="1">사용자명</option>
|
||||
<option value="2">전화번호</option>
|
||||
<option value="3">이메일</option>
|
||||
<option value="4">발신번호</option>
|
||||
</select><select id="searchDeptPrePayment" name="searchDeptPrePayment" title="구분">
|
||||
<option value="" selected="selected">구분</option>
|
||||
<option value="p">개인</option>
|
||||
<option value="pPayment">개인(후)</option>
|
||||
<option value="c">기업</option>
|
||||
<option value="cPayment">기업(후)</option>
|
||||
</select><br><br><select id="mberSttus" name="mberSttus" title="상태">
|
||||
<option value="">상태</option>
|
||||
<option value="Y">일반(VIP포함)</option>
|
||||
<option value="B">이용 정지</option>
|
||||
<option value="V" selected="selected">VIP</option>
|
||||
<option value="VX">일반(VIP제외)</option>
|
||||
</select><select name="searchAdminSmsNoticeYn" id="searchAdminSmsNoticeYn" title="법인폰알림">
|
||||
<option value="" selected="selected">법인폰알림</option>
|
||||
<option value="Y">온(On)</option>
|
||||
<option value="N">오프(Off)</option>
|
||||
</select><select name="searchExceptSpamYn" id="searchExceptSpamYn" title="금지어예외">
|
||||
<option value="" selected="selected">금지어예외</option>
|
||||
<option value="Y">온(On)</option>
|
||||
<option value="N">오프(Off)</option>
|
||||
</select><select name="searchSmsSalePrice" id="searchSmsSalePrice" title="문자할인/첫결제">
|
||||
<option value="" selected="selected">문자할인/첫결제</option>
|
||||
<option value="Y">할인</option>
|
||||
<option value="N">일반</option>
|
||||
<option value="F">첫결제</option>
|
||||
<option value="P">결제</option>
|
||||
<option value="X">미결제</option>
|
||||
</select><select name="searchSmishingYn" id="searchSmishingYn" title="스미싱의심">
|
||||
<option value="" selected="selected">스미싱의심</option>
|
||||
<option value="Y">온(On)</option>
|
||||
<option value="N">오프(Off)</option>
|
||||
</select><select name="searchHotlineAgentCode" id="searchHotlineAgentCode" style="width:180px;">
|
||||
<option value="">전용전송사(전체)</option>
|
||||
<option value="00">사용안함</option>
|
||||
<option value="USE">사용함</option>
|
||||
<option value="02">현대퓨처넷(HCN) (O) </option>
|
||||
<option value="04">다우기술 (O) </option>
|
||||
<option value="05">JJ (O) </option>
|
||||
<option value="07">인비토 (O) </option>
|
||||
<option value="01">아이하트 (X) </option>
|
||||
<option value="03">(IMO)아이엠오 (X) </option>
|
||||
</select><input type="text" id="searchKeyword" name="searchKeyword" class="recentSearch" value="" size="10" title="검색"><input type="button" class="btnType1" onclick="fn_search(); return false;" value="검색"><input type="button" class="btnType1" onclick="fn_searchReset(); return false;" value="초기화">
|
||||
</div>
|
||||
<!-- 0626 탈퇴자분리 -->
|
||||
<div class="tableWrap">
|
||||
<table class="tbType4">
|
||||
<colgroup>
|
||||
<col style="width:8%">
|
||||
<col style="width:11%">
|
||||
<col style="width:11%">
|
||||
<col style="width:11%">
|
||||
<col style="width:11%">
|
||||
<col style="width:11%">
|
||||
<col style="width:11%">
|
||||
<col style="width:11%">
|
||||
<col style="width:11%">
|
||||
</colgroup>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>구분</th>
|
||||
<th>문자 단가 높음</th>
|
||||
<th>사용할 일이 없어서</th>
|
||||
<th>다른 사이트 이용</th>
|
||||
<th>개인정보 유출 우려</th>
|
||||
<th>사이트 이용 불만</th>
|
||||
<th>기업회원 전환</th>
|
||||
<th>기타(직접입력)</th>
|
||||
<th>계</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>인원</td>
|
||||
<td><a href="#">60</a></td>
|
||||
<td><a href="#">50</a></td>
|
||||
<td><a href="#">40</a></td>
|
||||
<td><a href="#">30</a></td>
|
||||
<td><a href="#">20</a></td>
|
||||
<td><a href="#">10</a></td>
|
||||
<td><a href="#">5</a></td>
|
||||
<td><a href="#">300</a></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<!--// 0626 탈퇴자분리 -->
|
||||
<div class="listTop">
|
||||
<p class="tType5">총 <span class="tType4 c_456ded fwBold">182</span>건</p>
|
||||
<div class="rightWrap"><select name="pageUnit" id="pageUnit" class="select" title="검색조건선택" onchange="linkPage(1);">
|
||||
<option value="10" selected="">10줄</option>
|
||||
<option value="20">20줄</option>
|
||||
<option value="30">30줄</option>
|
||||
</select></div>
|
||||
</div>
|
||||
<div class="tableWrap">
|
||||
<table class="tbType1">
|
||||
<colgroup>
|
||||
<col style="width: 3%">
|
||||
<col style="width: 5%">
|
||||
<col style="width: 9%">
|
||||
<col style="width: 9%">
|
||||
<col style="width: 8%">
|
||||
<col style="width: 9%">
|
||||
<col style="width: 6%">
|
||||
<col style="width: 6%">
|
||||
<col style="width: 6%">
|
||||
<col style="width: 6%">
|
||||
<col style="width: 8%">
|
||||
<col style="width: 8%">
|
||||
<col style="width: 8%">
|
||||
</colgroup>
|
||||
<thead>
|
||||
<tr>
|
||||
<th><input type="checkbox" name="checkAll" id="checkAll" onclick="fnCheckAll();"><label for="checkAll"></label><label for="checkAll"></label></th>
|
||||
<th>번호<input type="button" class="sort sortBtn" id="sort_uniqId"></th>
|
||||
<th>아이디<input type="button" class="sort sortBtn" id="sort_userId"></th>
|
||||
<th>사용자명<input type="button" class="sort sortBtn" id="sort_userNm"></th>
|
||||
<th>회원구분<input type="button" class="sort sortBtn" id="sort_dept"></th>
|
||||
<th>전화번호<input type="button" class="sort sortBtn" id="sort_moblphonNo"></th>
|
||||
<th>법인폰<input type="button" class="sort sortBtn" id="sort_adminSmsNoticeYn"></th>
|
||||
<th>문자할인</th>
|
||||
<th>이벤트</th>
|
||||
<th>상태<input type="button" class="sort sortBtn" id="sort_mberSttus"></th>
|
||||
<th>후보자상세<input type="button" class="sort sortBtn" id="sort_condidateYn"></th>
|
||||
<th>가입일자<input type="button" class="sort sortBtnDesc" id="sort_sbscrbDe" sortord="desc"></th>
|
||||
<th>최근로그인</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td><input name="checkField" id="USRCNFRM_00000013061" title="Check 1" type="checkbox"><label for="USRCNFRM_00000013061"></label><label for="USRCNFRM_00000013061"></label><input name="checkId" type="hidden" class="euiseung82" value="USR01:USRCNFRM_00000013061"></td>
|
||||
<td>182 </td>
|
||||
<td>
|
||||
<div class="id_box vip bMark"><a href="#" onclick="javascript:fnSelectMber('euiseung82'); return false;"><span class="privateInfo">euiseung82</span></a></div>
|
||||
</td>
|
||||
<td><span class="privateInfo">이의승</span></td>
|
||||
<td><span class="privateInfo">개인 </span></td>
|
||||
<td><span class="privateInfo">01048268258</span></td>
|
||||
<td>오프 </td>
|
||||
<td>일반 </td>
|
||||
<td></td>
|
||||
<td>일반 </td>
|
||||
<td></td>
|
||||
<td title="2023-06-08 14:41">06-08 14:41 </td>
|
||||
<td title="2023-06-11 10:48:00.0">06-11 10:48 </td>
|
||||
</tr>
|
||||
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<div class="btnWrap" style="margin-bottom: 20px;"><input type="button" class="btnType2" style="padding:5px 10px" onclick="fnSmsNotiUpdate('on'); return false;" value="법인폰 ON"><input type="button" class="btnType2" style="padding:5px 10px" onclick="fnSmsNotiUpdate('off'); return false;" value="법인폰 OFF"><input type="button" class="btnType2" style="padding:5px 10px" onclick="fnSmishingUpdate('on'); return false;" value="스미싱 ON"><input type="button" class="btnType2" style="padding:5px 10px" onclick="fnSmishingUpdate('off'); return false;" value="스미싱 OFF"></div>
|
||||
<div class="page">
|
||||
<ul class="inline">
|
||||
<li><input type="button" class="pageFirst" onclick="linkPage(1);return false;"></li>
|
||||
<li><input type="button" class="pageBefore" onclick="linkPage(1);return false;"></li>
|
||||
<li><strong style="font-weight:bold;">1</strong></li>
|
||||
<li onclick="linkPage(2);return false;" style="cursor:pointer">2</li>
|
||||
<li onclick="linkPage(3);return false;" style="cursor:pointer">3</li>
|
||||
<li onclick="linkPage(4);return false;" style="cursor:pointer">4</li>
|
||||
<li onclick="linkPage(5);return false;" style="cursor:pointer">5</li>
|
||||
<li onclick="linkPage(6);return false;" style="cursor:pointer">6</li>
|
||||
<li onclick="linkPage(7);return false;" style="cursor:pointer">7</li>
|
||||
<li onclick="linkPage(8);return false;" style="cursor:pointer">8</li>
|
||||
<li onclick="linkPage(9);return false;" style="cursor:pointer">9</li>
|
||||
<li onclick="linkPage(10);return false;" style="cursor:pointer">10</li>
|
||||
<li><input type="button" class="pageNext" onclick="linkPage(11);return false;"></li>
|
||||
<li><input type="button" class="pageLast" onclick="linkPage(19);return false;"></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
BIN
src/main/webapp/publish/images/main/f_visual_01_20230621.jpg
Normal file
BIN
src/main/webapp/publish/images/main/f_visual_01_20230621.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 336 KiB |
BIN
src/main/webapp/publish/images/main/f_visual_03_20230621.jpg
Normal file
BIN
src/main/webapp/publish/images/main/f_visual_03_20230621.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 442 KiB |
@ -35,8 +35,16 @@
|
||||
success: function (returnData, status) {
|
||||
console.log('returnData : ', returnData);
|
||||
|
||||
if (returnData.resultCode=="0"){
|
||||
makeResult(returnData);
|
||||
if (returnData.data.resultCode=="0"){
|
||||
//makeResult(returnData);
|
||||
|
||||
if(returnData.data.objectList.length == 0){
|
||||
alert('조회 결과가 없습니다.')
|
||||
|
||||
}else{
|
||||
makeResult(returnData);
|
||||
}
|
||||
|
||||
/*
|
||||
$("span#sp").text(returnData.shortPrice);
|
||||
$("span#lp").text(returnData.longPrice);
|
||||
@ -47,7 +55,7 @@
|
||||
$("span#pspe").text(returnData.pictureSendPsbltEa);
|
||||
*/
|
||||
} else{
|
||||
alert(returnData.resultCode+" : "+returnData.data);
|
||||
alert(returnData.data.resultCode+" : "+returnData.data.msg);
|
||||
}
|
||||
|
||||
},
|
||||
@ -127,6 +135,7 @@
|
||||
</div>
|
||||
<div class="mem_cont_in">
|
||||
<div class="input_list">
|
||||
<!--
|
||||
<div class="input_list_item">
|
||||
<div class="input_left">*mberId
|
||||
<input type="text" class="list_inputType1" id="mberId" maxlength="100" value="goodgkdus" size="100"/>
|
||||
@ -137,6 +146,7 @@
|
||||
<input type="text" class="list_inputType1" id="apiKey" maxlength="100" value="24cb8ec4ed7c16969d2ab2988dd2406ee2820" size="100"/>
|
||||
</div>
|
||||
</div>
|
||||
-->
|
||||
|
||||
<div class="input_list_item">
|
||||
<div class="input_left">*메시지ID
|
||||
|
||||
@ -24,17 +24,16 @@
|
||||
|
||||
//회원아이디, APIKEY - 보안을 위해 실제 서비스 시에는 이곳에 mberId와 apiKey 값을 적어서 사용해주세요
|
||||
//실제서비스용
|
||||
// final String mberId = "goodgkdus"; //문자온 로그인 아이디
|
||||
// final String apiKey = "12e749877379aa7426275414050694b953"; //발급받은 api key
|
||||
final String mberId = "antelope"; //문자온 로그인 아이디
|
||||
final String apiKey = "5ec0a0311a7a0eb25cc9c11468ce372cd64501"; //발급받은 api key
|
||||
|
||||
//테스트용
|
||||
String mberId = request.getParameter("p_mberId"); //문자온 로그인 아이디
|
||||
String apiKey = request.getParameter("p_apiKey"); //발급받은 api key
|
||||
//String mberId = request.getParameter("p_mberId"); //문자온 로그인 아이디
|
||||
//String apiKey = request.getParameter("p_apiKey"); //발급받은 api key
|
||||
|
||||
|
||||
/******************** 전송요청 URL ********************/
|
||||
//final String apiUrl = "https://api.munjaon.co.kr/api/inqry/hstryDetail";
|
||||
final String apiUrl = "http://localhost:8088/api/inqry/hstryDetail";
|
||||
/******************** 전송요청 URL ********************/
|
||||
final String apiUrl = "https://api.munjaon.co.kr/api/inqry/hstryDetail"; // 전송요청 URL
|
||||
|
||||
// String apiUrl = "https://apidev.munjaon.co.kr:9998/api/inqry/hstryDetail";
|
||||
/**************** 발송가능건수 예제 ******************/
|
||||
|
||||
@ -35,7 +35,7 @@
|
||||
|
||||
success: function (returnData, status) {
|
||||
console.log('returnData : ', returnData);
|
||||
if (returnData.resultCode=="0"){
|
||||
if (returnData.data.resultCode=="0"){
|
||||
console.log('returnData.resultCode : ', typeof returnData.resultCode);
|
||||
|
||||
if(returnData.data.objectList.length == 0){
|
||||
@ -54,7 +54,7 @@
|
||||
$("span#pspe").text(returnData.pictureSendPsbltEa);
|
||||
*/
|
||||
} else{
|
||||
alert(returnData.resultCode+" : "+returnData.data);
|
||||
alert(returnData.data.resultCode+" : "+returnData.data.msg);
|
||||
}
|
||||
|
||||
},
|
||||
@ -148,7 +148,8 @@
|
||||
|
||||
</div>
|
||||
<div class="mem_cont_in">
|
||||
<div class="input_list">
|
||||
<div class="input_list">
|
||||
<!--
|
||||
<div class="input_list_item">
|
||||
<div class="input_left">*mberId
|
||||
<input type="text" class="list_inputType1" id="mberId" maxlength="100" value="goodgkdus" size="100"/>
|
||||
@ -159,6 +160,7 @@
|
||||
<input type="text" class="list_inputType1" id="apiKey" maxlength="100" value="12e749877379aa7426275414050694b953" size="100"/>
|
||||
</div>
|
||||
</div>
|
||||
-->
|
||||
|
||||
<div class="input_list_item">
|
||||
<div class="input_left">페이지번호
|
||||
|
||||
@ -24,19 +24,17 @@
|
||||
|
||||
//회원아이디, APIKEY - 보안을 위해 실제 서비스 시에는 이곳에 mberId와 apiKey 값을 적어서 사용해주세요
|
||||
//실제서비스용
|
||||
//final String mberId = "goodgkdus"; //문자온 로그인 아이디
|
||||
//final String apiKey = "12e749877379aa7426275414050694b953"; //발급받은 api key
|
||||
final String mberId = "antelope"; //문자온 로그인 아이디
|
||||
final String apiKey = "5ec0a0311a7a0eb25cc9c11468ce372cd64501"; //발급받은 api key
|
||||
|
||||
//테스트용
|
||||
String mberId = request.getParameter("p_mberId"); //문자온 로그인 아이디
|
||||
String apiKey = request.getParameter("p_apiKey"); //발급받은 api key
|
||||
//String mberId = request.getParameter("p_mberId"); //문자온 로그인 아이디
|
||||
//String apiKey = request.getParameter("p_apiKey"); //발급받은 api key
|
||||
|
||||
|
||||
/******************** 전송요청 URL ********************/
|
||||
//final String apiUrl = "https://api.munjaon.co.kr/api/inqry/hstry";
|
||||
// final String apiUrl = "http://localhost:8088/api/inqry/hstry";
|
||||
final String apiUrl = "https://api.munjaon.co.kr/api/inqry/hstry";
|
||||
|
||||
String apiUrl = "https://apidev.munjaon.co.kr:9998/api/inqry/hstry"; // 전송요청 URL
|
||||
/**************** 발송가능건수 예제 ******************/
|
||||
System.out.println("전체발송이력");
|
||||
|
||||
|
||||
@ -34,12 +34,13 @@
|
||||
data : searchWebParam,
|
||||
|
||||
success: function (returnData, status) {
|
||||
console.log('returnData : ', returnData)
|
||||
//alert(returnData.shortPrice);
|
||||
//alert(returnData.resultCode);
|
||||
//alert(returnData.message);
|
||||
//alert(returnData.longPrice);
|
||||
|
||||
if (returnData.resultCode=="0"){
|
||||
if (returnData.data.resultCode=="0"){
|
||||
$("span#sp").text(returnData.data.shortPrice);
|
||||
$("span#lp").text(returnData.data.longPrice);
|
||||
$("span#pp").text(returnData.data.picturePrice);
|
||||
@ -48,7 +49,7 @@
|
||||
$("span#lspe").text(returnData.data.longSendPsbltEa);
|
||||
$("span#pspe").text(returnData.data.pictureSendPsbltEa);
|
||||
} else{
|
||||
alert(returnData.resultCode+" : "+returnData.data);
|
||||
alert(returnData.data.resultCode+" : "+returnData.data.msg);
|
||||
}
|
||||
|
||||
},
|
||||
@ -81,7 +82,8 @@
|
||||
|
||||
</div>
|
||||
<div class="mem_cont_in">
|
||||
<div class="input_list">
|
||||
<div class="input_list">
|
||||
<!--
|
||||
<div class="input_list_item">
|
||||
<div class="input_left">*mberId
|
||||
<input type="text" class="list_inputType1" id="mberId" maxlength="100" value="goodgkdus" size="100"/>
|
||||
@ -92,6 +94,7 @@
|
||||
<input type="text" class="list_inputType1" id="apiKey" maxlength="100" value="24cb8ec4ed7c16969d2ab2988dd2406ee2820" size="100"/>
|
||||
</div>
|
||||
</div>
|
||||
-->
|
||||
|
||||
<div class="mem_btnWrap2">
|
||||
<button type="button" class="mem_btn3" style="width: 100%;" id="ajax_select_price" onclick="return false;">발송가능건수 요청</button>
|
||||
|
||||
@ -24,21 +24,22 @@
|
||||
|
||||
//회원아이디, APIKEY - 보안을 위해 실제 서비스 시에는 이곳에 mberId와 apiKey 값을 적어서 사용해주세요
|
||||
//실제서비스용
|
||||
//final String mberId = "goodgkdus"; //문자온 로그인 아이디
|
||||
//final String apiKey = "12e749877379aa7426275414050694b953"; //발급받은 api key
|
||||
final String mberId = "antelope"; //문자온 로그인 아이디
|
||||
final String apiKey = "5ec0a0311a7a0eb25cc9c11468ce372cd64501"; //발급받은 api key
|
||||
|
||||
|
||||
//테스트용
|
||||
String mberId = request.getParameter("p_mberId"); //문자온 로그인 아이디
|
||||
String apiKey = request.getParameter("p_apiKey"); //발급받은 api key
|
||||
//String mberId = request.getParameter("p_mberId"); //문자온 로그인 아이디
|
||||
//String apiKey = request.getParameter("p_apiKey"); //발급받은 api key
|
||||
|
||||
|
||||
/******************** 전송요청 URL ********************/
|
||||
final String apiUrl = "https://apidev.munjaon.co.kr:9998/api/inqry/selectPrice";
|
||||
// final String apiUrl = "http://localhost:8088/api/inqry/selectPrice";
|
||||
|
||||
/******************** 전송요청 URL ********************/
|
||||
final String apiUrl = "https://api.munjaon.co.kr/api/inqry/price";
|
||||
|
||||
/**************** 발송가능건수 예제 ******************/
|
||||
System.out.println("잔액|단가|발송가능건수");
|
||||
|
||||
|
||||
|
||||
Map<String, String> params = new HashMap<String, String>();
|
||||
|
||||
|
||||
@ -37,7 +37,7 @@
|
||||
success: function (returnData, status) {
|
||||
console.log('returnData :: ', returnData);
|
||||
|
||||
if (returnData.resultCode=="0"){ //결과가 성공인 경우 결과값 노출
|
||||
if (returnData.data.resultCode=="0"){ //결과가 성공인 경우 결과값 노출
|
||||
|
||||
$("span#mgi").text(returnData.data.msgGroupId);
|
||||
$("span#sc").text(returnData.data.successCnt);
|
||||
@ -46,7 +46,7 @@
|
||||
$("span#mt").text(returnData.data.msgType);
|
||||
|
||||
} else{ //결과가 실패인 경우 원인 노출
|
||||
alert(returnData.resultCode+" : "+returnData.data);
|
||||
alert(returnData.data.resultCode+" : "+returnData.data.msg);
|
||||
}
|
||||
|
||||
},
|
||||
@ -78,7 +78,8 @@
|
||||
|
||||
</div>
|
||||
<div class="mem_cont_in">
|
||||
<div class="input_list">
|
||||
<div class="input_list">
|
||||
<!--
|
||||
<div class="input_list_item">
|
||||
<div class="input_left">*mberId
|
||||
<input type="text" class="list_inputType1" id="mberId" maxlength="100" value="goodgkdus" size="100"/>
|
||||
@ -89,6 +90,7 @@
|
||||
<input type="text" class="list_inputType1" id="apiKey" maxlength="100" value="24cb8ec4ed7c16969d2ab2988dd2406ee2820" size="100"/>
|
||||
</div>
|
||||
</div>
|
||||
-->
|
||||
|
||||
<!-- 발신자 번호 -->
|
||||
<div class="input_list_item">
|
||||
|
||||
@ -21,21 +21,20 @@
|
||||
//기본 설정값
|
||||
final String encodingType = "UTF-8";
|
||||
final String boundary = "____boundary____";
|
||||
|
||||
/******************** 전송 요청 URL ********************/
|
||||
//final String apiUrl = "http://localhost:8088/api/send/sendMsg";
|
||||
final String apiUrl = "https://apidev.munjaon.co.kr:9998/api/send/sendMsg"; //개발테스트용 URL
|
||||
//final String apiUrl = "https://api.munjaon.co.kr:9998/api/send/sendMsg"; //실제 서비스 URL
|
||||
|
||||
|
||||
//회원아이디, APIKEY - 보안을 위해 실제 서비스 시에는 이곳에 mberId와 apiKey 값을 적어서 사용
|
||||
//실제서비스용
|
||||
//final String mberId = "goodgkdus"; //문자온 로그인 아이디
|
||||
//final String apiKey = "12e749877379aa7426275414050694b953"; //발급받은 api key
|
||||
final String mberId = "antelope"; //문자온 로그인 아이디
|
||||
final String apiKey = "5ec0a0311a7a0eb25cc9c11468ce372cd64501"; //발급받은 api key
|
||||
|
||||
|
||||
//테스트용
|
||||
String mberId = request.getParameter("p_mberId"); //문자온 로그인 아이디
|
||||
String apiKey = request.getParameter("p_apiKey"); //발급받은 api key
|
||||
|
||||
//String mberId = request.getParameter("p_mberId"); //문자온 로그인 아이디
|
||||
//String apiKey = request.getParameter("p_apiKey"); //발급받은 api key
|
||||
|
||||
/******************** 전송 요청 URL ********************/
|
||||
final String apiUrl = "https://api.munjaon.co.kr/api/send/sendMsg"; //개발테스트용 URL
|
||||
|
||||
/******************** 전송 정보 ********************/
|
||||
//필수 값
|
||||
String p_callFrom = request.getParameter("p_callFrom"); //발신자 번호
|
||||
|
||||
@ -43,7 +43,7 @@
|
||||
|
||||
console.log('returnData : ', returnData);
|
||||
|
||||
if (returnData.resultCode=="0"){ //결과가 성공인 경우 결과값 노출
|
||||
if (returnData.data.resultCode=="0"){ //결과가 성공인 경우 결과값 노출
|
||||
$("span#mgi").text(returnData.data.msgGroupIdList);
|
||||
$("span#sc").text(returnData.data.successCnt);
|
||||
$("span#fc").text(returnData.data.failCnt);
|
||||
@ -51,7 +51,7 @@
|
||||
$("span#mt").text(returnData.data.msgTypeList);
|
||||
|
||||
} else{ //결과가 실패인 경우 원인 노출
|
||||
alert(returnData.resultCode+" : "+returnData.data);
|
||||
alert(returnData.data.resultCode+" : "+returnData.data.msg);
|
||||
}
|
||||
|
||||
},
|
||||
@ -113,7 +113,8 @@
|
||||
|
||||
</div>
|
||||
|
||||
<div class="input_list">
|
||||
<div class="input_list">
|
||||
<!--
|
||||
<div class="input_list_item">
|
||||
<div class="input_left">*mberId
|
||||
<input type="text" class="list_inputType1" id="mberId" maxlength="100" value="goodgkdus" size="100"/>
|
||||
@ -124,6 +125,7 @@
|
||||
<input type="text" class="list_inputType1" id="apiKey" maxlength="100" value="24cb8ec4ed7c16969d2ab2988dd2406ee2820" size="100"/>
|
||||
</div>
|
||||
</div>
|
||||
-->
|
||||
|
||||
<!-- 발신자 번호 -->
|
||||
<div class="input_list_item">
|
||||
|
||||
@ -22,20 +22,19 @@
|
||||
final String encodingType = "UTF-8";
|
||||
final String boundary = "____boundary____";
|
||||
|
||||
/******************** 전송 요청 URL ********************/
|
||||
//String apiUrl = "http://localhost:8088/api/send/sendMsgs";
|
||||
//final String apiUrl = "https://api.munjaon.co.kr:9998/api/send/sendMsg"; //실제 서비스 URL
|
||||
String apiUrl = "https://apidev.munjaon.co.kr:9998/api/send/sendMsgs"; //개발테스트용 URL
|
||||
|
||||
//회원아이디, APIKEY - 보안을 위해 실제 서비스 시에는 이곳에 mberId와 apiKey 값을 적어서 사용
|
||||
//실제서비스용
|
||||
//final String mberId = "goodgkdus"; //문자온 로그인 아이디
|
||||
//final String apiKey = "12e749877379aa7426275414050694b953"; //발급받은 api key
|
||||
final String mberId = "antelope"; //문자온 로그인 아이디
|
||||
final String apiKey = "5ec0a0311a7a0eb25cc9c11468ce372cd64501"; //발급받은 api key
|
||||
|
||||
//테스트용
|
||||
String mberId = request.getParameter("p_mberId"); //문자온 로그인 아이디
|
||||
String apiKey = request.getParameter("p_apiKey"); //발급받은 api key
|
||||
|
||||
//String mberId = request.getParameter("p_mberId"); //문자온 로그인 아이디
|
||||
//String apiKey = request.getParameter("p_apiKey"); //발급받은 api key
|
||||
|
||||
|
||||
/******************** 전송 요청 URL ********************/
|
||||
String apiUrl = "https://api.munjaon.co.kr/api/send/sendMsgs"; //개발테스트용 URL
|
||||
|
||||
/******************** 전송 정보 ********************/
|
||||
//필수 값
|
||||
String p_callFrom = request.getParameter("p_callFrom"); //발신자 번호
|
||||
|
||||
BIN
src/main/webapp/sample_mjon/jsp_샘플_예제.zip
Normal file
BIN
src/main/webapp/sample_mjon/jsp_샘플_예제.zip
Normal file
Binary file not shown.
@ -187,7 +187,7 @@
|
||||
case "MYDATA":
|
||||
System.out.println("잔액|단가|발송가능건수");
|
||||
sms_url = "http://localhost:8088/api/accessKey/myData"; // 전송요청 URL
|
||||
sms_url = "http://localhost:8088/api/inqry/selectPrice"; // 전송요청 URL
|
||||
sms_url = "http://localhost:8088/api/inqry/price"; // 전송요청 URL
|
||||
break;
|
||||
|
||||
default:
|
||||
|
||||
Loading…
Reference in New Issue
Block a user