Les deux révisions précédentes Révision précédente Prochaine révision | Révision précédente |
etudiants:2014:bertrand:bugreport2 [2013/11/28 12:04] – [5- Contrôleurs] romain | etudiants:2014:bertrand:bugreport2 [2019/08/31 14:21] (Version actuelle) – modification externe 127.0.0.1 |
---|
<html><div class="todo">En construction...</div></html> | ====== BugReport : plateforme de remontée d'incidents ====== |
| |
====== BugReport : plateforme de remonté d'incidents ====== | |
<WRAP center round box 60%> | <WRAP center round box 60%> |
**__Documentation technique - Sommaire :__** | **__Documentations techniques - Sommaire :__** |
- [[etudiants:2014:bertrand:bugreport|Gestion des utilisateurs]] | - [[etudiants:2014:bertrand:bugreport|Sources de l'application]] |
| - [[etudiants:2014:bertrand:bugreport1|Gestion des utilisateurs]] |
- Gestion des applications | - Gestion des applications |
- [[etudiants:2014:bertrand:bugreport3|Gestion des groupes]] | - [[etudiants:2014:bertrand:bugreport3|Gestion des groupes]] |
</WRAP> | - [[etudiants:2014:bertrand:bugreport4|Soumettre un report]] |
| - [[etudiants:2014:bertrand:bugreport5|Gestion des Droits]] |
| - [[etudiants:2014:bertrand:bugreport6|Affectation d'utilisateurs]] |
| |
| **__Documentations de supports- Sommaire :__** |
| - [[etudiants:2014:bertrand:bugreportUtilisateur|Utilisateur]] |
| - [[etudiants:2014:bertrand:bugreportTechnicien|Technicien]] |
| - [[etudiants:2014:bertrand:bugreportAdministrateur|Administrateur]] |
| |
| **__Documentations de tests - Sommaire :__** |
| - [[etudiants:2014:bertrand:testsmanuels|Tests manuels]] |
| - [[etudiants:2014:bertrand:testsautomatises|Tests automatisés]] |
| </WRAP> |
===== Gestion des applications ===== | ===== Gestion des applications ===== |
==== 1- Fonctionnalités ==== | ==== 1- Fonctionnalités ==== |
|< 100% 30% 70% >| | |< 100% 30% 70% >| |
^Fonctionnalité ^Descriptif ^ | ^Fonctionnalité ^Descriptif ^ |
| Sélection | **(Dé)Sélectionner 1 application**| | | Suppression | **Supprimer 1 application** | |
|::: | <html><span class="value">Récupération (GET) de l'$id de l'application à (dé)sélectionner</span></html> | | |::: | <html><span class="value">Récupération (GET) de l'$id de l'application à supprimer</span></html> | |
|::: | <html><span class="value">Ajout ou suppression de l'id de l'utilisateur dans le tableau $_SESSION["selectedApps"]</html> | | |::: | <html><span class="param">Suppression dans la BDD</html> | |
|::: | <html><span class="jsp">Affichage du message post-(dé)sélection</html> | | |::: | <html><span class="value">Mise à jour de la sélection (en session)</html> | |
| |::: | <html><span class="jsp">Affichage du message post-suppression</html> | |
| |
<sxh php;title:cApplication/delete> | <sxh php;title:cApplication/delete> |
} | } |
echo JsUtils::doSomethingOn("#operation", "hide",200); | echo JsUtils::doSomethingOn("#operation", "hide",200); |
| } |
| </sxh> |
| |
| === 5.8 cApplication/select === |
| |
| |< 100% 30% 70% >| |
| ^Fonctionnalité ^Descriptif ^ |
| | Sélection | **(Dé)Sélectionner 1 application**| |
| |::: | <html><span class="value">Récupération (GET) de l'$id de l'application à (dé)sélectionner</span></html> | |
| |::: | <html><span class="value">Ajout ou suppression de l'id de l'application dans le tableau $_SESSION["selectedApps"]</html> | |
| |::: | <html><span class="jsp">Affichage du message post-(dé)sélection</html> | |
| |
| <sxh php;title:cApplication/select> |
| public function select($id){ |
| $id=str_replace("ck", "", $id[0]); |
| if(is_numeric($id)){ |
| SessionUtils::addOrRemoveValueFromArray("selectedApps", $id); |
| $nb=sizeof($_SESSION["selectedApps"]); |
| if($nb>0) |
| echo JsUtils::doSomethingOn("#multi", "show"); |
| else |
| echo JsUtils::doSomethingOn("#multi", "hide"); |
| echo Gui::pluriel("application selectionne", "applications selectionnes", $nb); |
| } |
| } |
| </sxh> |
| |
| === 5.9 cApplication/selectAll === |
| |
| |< 100% 30% 70% >| |
| ^Fonctionnalité ^Descriptif ^ |
| | Sélection | **(Dé)Sélectionner toutes les applications**| |
| |::: | <html><span class="value">Récupération de l'opération à effectuer : sélection ou désélection</span></html> | |
| |::: | <html><span class="value">Mise à jour dans le tableau $_SESSION["selectedApps"]</html> | |
| |::: | <html><span class="jsp">Affichage du message post-(dé)sélection</html> | |
| |
| <sxh php;title:cApplication/selectAll> |
| public function selectAll(){ |
| $nb=0; |
| $ckAll=SessionUtils::checkBoolean("ckAll"); |
| if(!$ckAll){ |
| $_SESSION["selectedApps"]=array(); |
| }else{ |
| $_SESSION["selectedApps"]=explode(",", $_POST["ids"]); |
| $nb=sizeof($_SESSION["selectedApps"]); |
| } |
| echo JsUtils::get("cApplication/refresh/","{}","#apps"); |
| echo Gui::pluriel("application selectionne", "applications selectionnes", $nb); |
} | } |
</sxh> | </sxh> |