From 7b862319567b88c86c1e6efd064b61a8c9606a8b Mon Sep 17 00:00:00 2001 From: Jeonghun-Ban Date: Thu, 12 Dec 2019 13:15:47 +0900 Subject: [PATCH] Add alert_message: apply --- src/Cource/CourceFrame.java | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/Cource/CourceFrame.java b/src/Cource/CourceFrame.java index 985eeed..0db55bc 100644 --- a/src/Cource/CourceFrame.java +++ b/src/Cource/CourceFrame.java @@ -112,7 +112,7 @@ public void addLectures(String opt) { this.deleteLectures(); } Vector applyLectures = iCApply.show(id); // 신청 목록 가져오기 - if(iCBasket.add(lectures, applyLectures, id)) { + if(iCBasket.add(lectures, applyLectures, id)) { // 장바구니 추가함수 JOptionPane.showMessageDialog(null, "선택한 강좌 중에 이미 신청하거나 미리담은 강좌가 있습니다." + "\n(중복되지 않은 강좌가 있다면 정상적으로 추가됩니다.)", "중복된 강의 존재", JOptionPane.ERROR_MESSAGE); }; @@ -128,7 +128,11 @@ public void addLectures(String opt) { this.deleteLectures(); } Vector basketLectures = iCBasket.show(id); // 장바구니 리스트 가져오기 - iCApply.add(lectures, basketLectures, id); // 신청목록 추가함수 + if (iCApply.add(lectures, basketLectures, id)){ // 신청목록 추가함수 + JOptionPane.showMessageDialog(null, "선택한 강좌 중에 이미 신청하거나 미리담은 강좌가 있습니다." + + "\n(중복되지 않은 강좌가 있다면 정상적으로 추가됩니다.)", "중복된 강의 존재", JOptionPane.ERROR_MESSAGE); + }; + storedLectures = iCApply.show(id); // 추가 결과 리턴 this.enrollmentPanel.applyTable.refresh(storedLectures);