forked from nus-cs2103-AY2324S2/tp
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c633df6
commit f1e0dfc
Showing
1 changed file
with
4 additions
and
2 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -21,6 +21,8 @@ As you read through this user guide, you will learn about: | |
* Constraints of input format in order for our app to run normally | ||
* Auxiliary capabilities of Strack.io application, including saving and exportation of data. | ||
|
||
-------------------------------------------------------------------------------------------------------------------- | ||
|
||
## Overview | ||
|
||
Strack.io is a **desktop app for home bakers to manage contacts of their customers, optimized for use via | ||
|
@@ -442,16 +444,16 @@ Action | Format, Examples | |
**Help** | `help` | ||
**Add product to menu** | `menu pn/PRODUCT_NAME pc/PRODUCT_COSTS ps/PRODUCT_SALES`<br> e.g., `menu pn/cupcake pc/5 ps/10` | ||
**Edit product on menu** | `edit m/MENU_ID [pn/PRODUCT_NAME] [pc/PRODUCT_COSTS] [ps/PRODUCT_SALES]`<br> e.g., `edit m/1 pc/20` | ||
**Delete product on menu** | `delete m/MENU_ID` | ||
**Delete product on menu** | `delete m/MENU_ID`<br> e.g., `delete m/1` | ||
**Add customer** | `add n/NAME p/PHONE_NUMBER e/EMAIL a/ADDRESS [t/TAG]…` <br> e.g., `add n/James Ho p/22224444 e/[email protected] a/123, Clementi Rd, 1234665 t/friend t/colleague` | ||
**List all contacts and orders** | `list` | ||
**Edit customer** | `edit c/CUSTOMER_ID [n/NAME] [p/PHONE_NUMBER] [e/EMAIL] [a/ADDRESS] [t/TAG]…`<br> e.g.,`edit c/2 n/James Lee e/[email protected]` | ||
**Find customer/order** | `find [n/NAME] [p/PHONE_NUMBER] [a/ADDRESS] [e/EMAIL] [o/ORDER_ID]`<br> e.g., `find n/James n/Jake` `find o/1` | ||
**Delete customer** | `delete c/CUSTOMER_ID`<br> e.g., `delete c/3` | ||
**Create order** | `order p/PHONE_NUMBER [by/DEADLINE]`<br> e.g., `order p/22224444 by/02/04/2024` | ||
**Add product to order** | `product m/MENU_ID pq/PRODUCT_QUANTITY`<br> e.g., `product m/1 pq/10` | ||
**Edit order deadline** | `edit o/ORDER_ID by/DEADLINE`<br> e.g., `edit o/1 by/02/04/2024` | ||
**Edit order** | `edit o/ORDER_ID m/MENU_ID pq/PRODUCT_QUANTITY`<br> e.g., `edit o/1 m/1 pq/10` | ||
**Edit order deadline** | `edit o/ORDER_ID by/DEADLINE`<br> e.g., `edit o/1 by/02/04/2024` | ||
**Stage order** | `stage o/ORDER_ID`<br> e.g., `stage o/1` | ||
**Complete order** | `complete ORDER_ID`<br> e.g., `complete 1` | ||
**Cancel order** | `cancel ORDER_ID`<br> e.g., `cancel 1` | ||
|