Skip to content
This repository has been archived by the owner on Dec 15, 2022. It is now read-only.

Commit

Permalink
Add alert_message: apply
Browse files Browse the repository at this point in the history
  • Loading branch information
junghoon-vans committed Dec 12, 2019
1 parent 17b927d commit 7b86231
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/Cource/CourceFrame.java
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ public void addLectures(String opt) {
this.deleteLectures();
}
Vector<ELecture> applyLectures = iCApply.show(id); // 신청 목록 가져오기
if(iCBasket.add(lectures, applyLectures, id)) {
if(iCBasket.add(lectures, applyLectures, id)) { // 장바구니 추가함수
JOptionPane.showMessageDialog(null, "선택한 강좌 중에 이미 신청하거나 미리담은 강좌가 있습니다."
+ "\n(중복되지 않은 강좌가 있다면 정상적으로 추가됩니다.)", "중복된 강의 존재", JOptionPane.ERROR_MESSAGE);
};
Expand All @@ -128,7 +128,11 @@ public void addLectures(String opt) {
this.deleteLectures();
}
Vector<ELecture> 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);
Expand Down

0 comments on commit 7b86231

Please sign in to comment.