-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Finish all user stories for v2.0 #143
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
src/main/java/seedu/financialplanner/commands/MarkGoalCommand.java
Outdated
Show resolved
Hide resolved
@@ -19,7 +23,7 @@ public UnmarkReminderCommand(RawCommand rawCommand) throws IllegalArgumentExcept | |||
if (index == 0) { | |||
throw new IllegalArgumentException("Index must be within the list"); | |||
} | |||
if (index > ReminderList.getInstance().list.size()+1){ | |||
if (index > WishList.getInstance().list.size()+1){ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if (index > WishList.getInstance().list.size()+1){ | |
if (index > WishList.getInstance().list.size() + 1){ |
src/main/java/seedu/financialplanner/commands/MarkGoalCommand.java
Outdated
Show resolved
Hide resolved
@@ -3,7 +3,7 @@ | |||
import java.util.Arrays; | |||
|
|||
public enum ExpenseType { | |||
DINING, ENTERTAINMENT, SHOPPING, TRAVEL, INSURANCE, NECESSITIES, OTHERS; | |||
DINING, ENTERTAINMENT, SHOPPING, TRAVEL, INSURANCE, NECESSITIES, OTHERS, GOAL; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can the goal be one of the expensetypes? ie. buy car would be under 'others'. so goal shouldnt be one of the types
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Make sense.
…java Co-authored-by: Neo Min Wei <[email protected]>
…java Co-authored-by: Neo Min Wei <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
src/main/java/seedu/financialplanner/commands/DeleteGoalCommand.java
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can add functions to save and load goal and reminder from storage
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure, I will do it in v2.1 as enhancement.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you
…d.java Co-authored-by: ryan <[email protected]>
Finish all user stories for v2.0