wiki:appDevelop

Version 6 (modified by 221046, 2 days ago) ( diff )

--

Напреден апликативен дизјан

UseCase Опис
1 Album List Прикажување на сите албуми во системот
2 Artist List Прикажување на сите артисти во системот
3 Track List Листа на сите песни (tracks) во базата
4 Average Track Duration Пресметка и приказ на просечно времетраење на песни по артист
5 Average Track Price per Artist Приказ на просечна цена на песните за секој артист
6 Artist with Highest Earnings Најуспешен артист според заработка
7 Track Count per Genre Број на песни според жанр
8 Create Customer Креирање на нов клиент во системот
9 Rank List of Most Active Customers Приказ на ранкинг листа на најактивни клиенти
10 Media Type Percentage Статистика за процентуална застапеност на различни типови на медиуми
11 Most Popular Genre per Customer Прикажување на најмногу слушан жанр за одреден клиент
12 Genres per Customer Листа на жанрови кои клиентот ги има слушано
13 Invoices per Customer Преглед на сите фактури по клиент
14 Most Popular Artists Per Customer Најпопуларни артисти по клиент и жанр
15 Update Manager Ажурирање на менаџер за вработените (batch update)
16 Create Playlist Креирање плејлиста
17 Add Tracks to Playlist Додавање на песни во постоечки плејлиста
18 Create Invoice Креирање на нова фактура
19 Add Invoice Lines Додавање на ставки (invoice lines) во фактура
20 Delete Records Бришење на записи од даден ентитет

==Примери == <!DOCTYPE html> <html> <head>

<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.5/dist/css/bootstrap.min.css" rel="stylesheet"

integrity="sha384-SgOJa3DmI69IUzQ2PVdRZhwQ+dy64/BUtbMJw1MZ8t5HZApcHrRKUc4W0kG879m7" crossorigin="anonymous">

<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.5/dist/js/bootstrap.bundle.min.js"

integrity="sha384-k6d4wzSIapyDyv1kpU366/PK5hCdSbCRGRCMv+eplOQJWyd1fbcAu9OCUj5zNLiq" crossorigin="anonymous"></script>

<title>Track Count Per Genre</title>

</head> <body class="d-flex bg-light">

{% include 'sidebar.html' %} <div class="container mt-5">

<h1 class="text-center mb-4">Track Count Per Genre</h1>

<div class="list-group">

{% for row in data %}

<a href="#" class="list-group-item list-group-item-action">

{{ row.genre }} - {{ row.count }} tracks

</a>

{% empty %}

<div class="alert alert-warning" role="alert">

No data available.

</div>

{% endfor %}

</div>

</div>

</body> </html>

1. Album List

No image "ER.2.png" attached to appDevelop

2. Artist List

No image "ER.2.png" attached to appDevelop

3. Track List

No image "ER.2.png" attached to appDevelop

4. Average Track Duration

No image "ER.2.png" attached to appDevelop

5. Average Track Price per Artist

No image "ER.2.png" attached to appDevelop

6. Artist with Highest Earnings

No image "ER.2.png" attached to appDevelop

7. Track Count per Genre

No image "ER.2.png" attached to appDevelop

8. Create Customer

No image "ER.2.png" attached to appDevelop

9. Rank List of Most Active Customers

No image "ER.2.png" attached to appDevelop

10. Media TypePercentage

No image "ER.2.png" attached to appDevelop

11. Most Popular Genre per Customer

No image "ER.2.png" attached to appDevelop

12. Genres perCustomer

No image "ER.2.png" attached to appDevelop

13. Invoices per Customer

No image "ER.2.png" attached to appDevelop

14. Most Popular Artists Per Customer

No image "ER.2.png" attached to appDevelop

15. Update Manager

No image "ER.2.png" attached to appDevelop

16. Create Playlist

No image "ER.2.png" attached to appDevelop

17. Add Tracks to Playlist

No image "ER.2.png" attached to appDevelop

18. Create Invoice

No image "ER.2.png" attached to appDevelop

19. Add Invoice Lines

No image "ER.2.png" attached to appDevelop

20. Delete Records

No image "ER.2.png" attached to appDevelop

Назад на почетна

Attachments (21)

Download all attachments as: .zip

Note: See TracWiki for help on using the wiki.