forked from nus-cs2103-AY2324S1/tp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/master' into BugFix
- Loading branch information
Showing
21 changed files
with
424 additions
and
145 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,40 @@ | ||
--- | ||
layout: default.md | ||
title: "Licong`s Project Portfolio Page" | ||
--- | ||
|
||
<h1> Huang Licong's Project Portfolio Page</h1> | ||
### Project: D.A.V.E. | ||
|
||
<h3>Project: D.A.V.E.</h3> | ||
|
||
D.A.V.E. - | ||
D.A.V.E. is a desktop information storing application used for assisting student financial advisor. The user interacts with it using a CLI, and it has a GUI created with JavaFX. It is written in Java, and has about 8 kLoC. | ||
|
||
Given below are my contributions to the project. | ||
|
||
- New Feature: to be added soon | ||
- Code contributed: to be added soon | ||
- Project Management: to be added soon | ||
- Enhancement to existing features: to be added soon | ||
- Documentation: to be added soon | ||
- Community: to be added soon | ||
- Tools: to be added soon | ||
- **New Feature**: Added the ability to view list of leads / clients command. | ||
- **What it does:** Allows the user to view a filtered list of leads and clients. | ||
- **Justification:** This feature improves the product significantly because a user would be able to view leads and clients seperately easily. | ||
|
||
<p></P> | ||
|
||
- **New Feature**: Added a command to convert leads to clients and vice versa. | ||
- **What it does**: Allows user to convert leads to client. | ||
- **Justification**: This feature improves the product signficantly because a suer would be able. | ||
|
||
<p></p> | ||
|
||
- **Code contributed**: [RepoSense link](https://nus-cs2103-ay2324s1.github.io/tp-dashboard/?search=f08&sort=groupTitle&sortWithin=title&timeframe=commit&mergegroup=&groupSelect=groupByRepos&breakdown=true&checkedFileTypes=docs~functional-code~test-code&since=2023-09-22&tabOpen=true&tabType=authorship&zFR=false&tabAuthor=LicongHuang&tabRepo=AY2324S1-CS2103T-F08-2%2Ftp%5Bmaster%5D&authorshipIsMergeGroup=false&authorshipFileTypes=docs~functional-code~test-code&authorshipIsBinaryFileTypeChecked=false&authorshipIsIgnoredFilesChecked=false) | ||
<p></p> | ||
|
||
- **Project management**: | ||
- Set up codecov for the workflow of the project. | ||
<p></p> | ||
|
||
|
||
- **Documentation**: | ||
- User Guide: | ||
- Added documentation for the features `converttoclient` and `converttolead`: [\#125](https://github.com/AY2324S1-CS2103T-F08-2/tp/pull/125) | ||
- Added documentation for the features `listclient` and `listlead`: [\#81](https://github.com/AY2324S1-CS2103T-F08-2/tp/pull/81) | ||
- Developer Guide: | ||
- Added implementation details of the `listclient`, `listlead`, `converttoclient`, `converttolead` feature. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -46,7 +46,7 @@ public void executeClientConvertToLeadSuccess() throws CommandException { | |
|
||
final String expectedOutput = "Converted Client to Lead: Amy Bee; Phone: 85355255; Email: [email protected]; " | ||
+ "Address: 123, Jurong West Ave 6, #08-111; " | ||
+ "Key Milestone: " + formattedDate + "; Meeting Time: null; Tags: "; | ||
+ "Key Milestone: " + formattedDate; | ||
|
||
// Step 1: Set up the necessary test data and model stub. | ||
ModelStubAcceptingClientAdded modelStub = new ModelStubAcceptingClientAdded(); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,8 +37,7 @@ public void constructor_nullPerson_throwsNullPointerException() { | |
@Test | ||
public void executeLeadConvertToClientAddSuccessfully() throws CommandException { | ||
final String expectedOutput = "Converted Lead to Client: Amy Bee; Phone: 85355255; " | ||
+ "Email: [email protected]; Address: 123, Jurong West Ave 6, #08-111; " | ||
+ "Meeting Time: null; Tags: "; | ||
+ "Email: [email protected]; Address: 123, Jurong West Ave 6, #08-111"; | ||
// Step 1: Set up the necessary test data and model stub. | ||
ModelStubAcceptingLeadAdded modelStub = new ModelStubAcceptingLeadAdded(); | ||
Lead validPerson = new PersonBuilder().buildLead(); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters