Changes between Version 2 and Version 3 of AdvancedReports


Ignore:
Timestamp:
05/25/26 17:22:09 (2 days ago)
Author:
232012
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • AdvancedReports

    v2 v3  
    22
    33== 1. Top Selling Products and Restock Plan
     4
     5{{{#!div style="text-align: justify; width: 100%;"
     6This report is meant to look at the best-selling items over **<period of time>** to figure out exactly when they will sell out and how products should be repurchased. By calculating how many copies of a specific vinyl, CD, or cassette are sold every day and comparing that speed to what is left in stock, the query will find items that will run out of stock in **<period of time>**. It then automatically calculates the perfect order amount to keep the store supplied for the next **<period of time>** without overspending, ensuring top money-makers are never missing from the shelves.
     7}}}
    48
    59==== SQL
     
    913
    1014== 2. Slow Moving Products
     15
     16{{{#!div style="text-align: justify; width: 100%;"
     17This report is meant to look at items that are completely stuck in inventory. The query scans the database to find products that have either never been bought or have had zero sales for more than **<period of time>**, while also checking if customers are still adding them to their wishlists or ignoring them completely. It multiplies the current unsold stock by the item's original price to show managers exactly how much cash is frozen in dead inventory, making it easy to see which releases need discounts.
     18}}}
    1119
    1220==== SQL