-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/IUT-Blagnac/sae-3-01-deva…
- Loading branch information
Showing
14 changed files
with
432 additions
and
52 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 |
---|---|---|
|
@@ -33,4 +33,7 @@ target/ | |
bin/ | ||
build/ | ||
/bin1/ | ||
java/build/** | ||
java/build/** | ||
|
||
# json Files | ||
*.json |
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
File renamed without changes.
File renamed without changes.
Binary file not shown.
Binary file not shown.
File renamed without changes.
File renamed without changes.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
@@ -1,37 +1,46 @@ | ||
@startuml | ||
left to right direction | ||
skinparam { | ||
actorBackgroundColor LightBlue | ||
packageBackgroundColor LightBlue | ||
usecaseBorderColor Black | ||
arrowColor DarkBlue | ||
UsecaseRectangleRounded true | ||
} | ||
|
||
actor Client | ||
actor Administrateur | ||
|
||
' Account Management | ||
Client --> (Se connecter / Déconnecter) | ||
Client --> (Créer compte client) | ||
|
||
' Product Management | ||
Client --> (Rechercher produits) | ||
Client --> (Visualiser liste produits) | ||
Client --> (Trier liste produits) | ||
Client --> (Visualiser détail produit) | ||
|
||
' Wishlist and Loyalty | ||
Client --> (Gérer liste de souhaits) | ||
Client --> (Gérer points fidélité) | ||
|
||
' Order History and Reviews | ||
Client --> (Visualiser commandes passées) | ||
Client --> (Rédiger avis) | ||
|
||
' Cart Management | ||
Client --> (Ajouter au panier) | ||
Client --> (Gérer panier) | ||
|
||
' Administrator Console | ||
Administrateur --> (Ajouter / Supprimer produit) | ||
Administrateur --> (Gérer les produits) | ||
Administrateur --> (Répondre aux avis) | ||
|
||
' Relation between Reviews and Responses | ||
(Rédiger avis) <-- (Répondre aux avis) | ||
left to right direction | ||
|
||
package "Gestion du compte" { | ||
Client -u-> (Créer un compte) | ||
Client -u-> (Se connecter) | ||
Client -u-> (Se déconnecter) | ||
Client -u-> (Rester connecté) | ||
} | ||
|
||
package "Navigation et filtres" { | ||
Client --> (Naviguer via un menu global) | ||
Client --> (Naviguer par regroupements de produits) | ||
Client --> (Voir les produits par catégorie) | ||
Client --> (Filtrer les produits par prix) | ||
} | ||
|
||
package "Consultation des produits" { | ||
Client --> (Faire défiler les articles sur la page d'accueil) | ||
Client --> (Consulter la description des produits) | ||
Client --> (Voir la quantité de stock disponible) | ||
Client --> (Voir les produits en rupture de stock) | ||
Client --> (Choisir la couleur du produit) | ||
} | ||
|
||
package "Achat" { | ||
Client -u-> (Acheter un lot) | ||
Client -u-> (Payer une commande) | ||
Client -u-> (Choisir le moyen de paiement) | ||
} | ||
|
||
package "Avis" { | ||
Client -u-> (Déposer un avis) | ||
Client -u-> (Consulter les avis) | ||
} | ||
@enduml |