Rui Wei's Project Portfolio Page
Project: Advis.io
Advis.io (AIO) is a desktop app for managing clients information, optimized for use via a Command Line Interface (CLI) while still having the benefits of a Graphical User Interface (GUI).
Given below are my contributions to the project.
- New Feature: Added the ability to edit policies to a client.
- What it does: Given the updated policy information, the user can edit a policy to the client selected.
- Justification: This feature improves the product significantly because a user can now edit policies to a client to meet the needs of the client demands. Given that there are different financial cycles, it’s always good to remain relevant by updating policies to the best policies available in the market.
- Highlights: This enhancement was not particularly challenging because
Client
already has a policy list in it. I only created the necessaryCommand
classes to modify the policies. This enhancement was inspired byEditCommand
format.
- New Feature: Added the ability to delete policies to a client.
- What it does: The user can now delete the policy chosen that is attached to the client selected.
- Justification: This feature improves the product significantly because a user can now delete policies that are not relevant to the client anymore, so that entire tracking process is neater.
- Highlights: This enhancement was not challenging because
Client
already has a policy list in it, all I have to do is just create the necessaryCommand
classes to modify the policies in-place. This enhancement was inspired byEditCommand
format. - Highlights: This enhancement was not particularly challenging because
Client
already has a policy list in it. I only created the necessaryCommand
classes to delete the policies. This enhancement was inspired byDeleteCommand
format.
- New Feature: Added the ability to add appointment to a client.
- What it does: Given appointment details, the user can now add an appointment with his or her client.
- Justification: This features improves the product significantly because a user can now add appointments to meet his or her clients.
- Highlights: The enhancement was rather challenging because I had to modify the
Client
constructor to take in anAppointment
class, this meant that I had to refactor the entire codebase. Also, sinceAppointment
could be empty, I had to find a way to modifyAppointment
such that it can represent an empty appointment.
- New Feature: Added the ability to remove an appointment to a client.
- What it does: Once the user meets up with the client, he or she can remove the appointment that was set for.
- Justification: Past appointments should be removed from the application to make it neater.
- Highlights: The enhancment was not particularly challenging as was inspired by
DeleteCommand
.
-
Code contributed: RepoSense link
- Project management:
- Managed releases
v1.3.trial
,v1.3.1
andv1.4
(3 releases) on GitHub
- Managed releases
- Enhancements to existing features:
- Updated
Client
to be able to receiveAppointments
. - Modified
JsonAdaptedClient
to take inPolicy
andAppointment
by creatingJsonAdaptedPolicy
andJsonAdaptedAppointment
respectively. - Wrote additional tests for existing features to increase coverage (Pull requests #179)
- Updated
- Documentation:
- User Guide:
How To Get Started
: Added screenshots for non-technical users who aren’t familiar with terminal.- Refactored most
AddressBook
toClientele
to suit the context of the product, howeveraddressbook.json
remains the same but we have explained the term in the glossary - Added documentation for the features
editPolicy
,deletePolicy
,addApt
anddeleteApt
. - Handled the FAQ section of the UG.
- Developer Guide:
- Updated most of the
UML
diagrams inModel
andStorage
to suit the context of our product. - Added implementation details of the
deletePolicy
,editPolicy
,addApt
anddeletApt
feature. - Added sequence diagrams for
deletePolicy
andaddApt
to guide the reader. - Adjusted most of the user stories and glossary
- Updated most of the
- User Guide:
- Community: