Changes between Version 1 and Version 2 of AppDesign/UseCase05
- Timestamp:
- 01/21/25 02:32:21 (32 hours ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
AppDesign/UseCase05
v1 v2 11 11 1. User click on 'View My Orders'. System retrieves and displays all marketing requests related to the logged-in user from the profile marketing requests and post marketing requests table. They are brought to a page which lists all of their Post Marketing Requests and Profile Marketing Requests. 12 12 2. User clicks on any marketing request in the list. System calculates and displays the current progress and percentage completed from the current state of the post/profile and comparing to the target. 13 14 {{{ 15 SELECT * FROM profile_marketing_requests WHERE user_id = ?; 16 }}} 17 {{{ 18 SELECT * FROM post_marketing_requests WHERE user_id = ?; 19 }}}