wiki:AppDesign/UseCase05

Version 2 (modified by 211585, 32 hours ago) ( diff )

--

View and Track Marketing Requests

Actors

  • User

Prerequisites

  • User is logged in.

Steps in Scenario

  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.
  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.
SELECT * FROM profile_marketing_requests WHERE user_id = ?;
SELECT * FROM post_marketing_requests WHERE user_id = ?;
Note: See TracWiki for help on using the wiki.