diff --git a/README.md b/README.md index 1fbe4c6..0885431 100644 --- a/README.md +++ b/README.md @@ -54,9 +54,10 @@ Logiciel testé et validé sur les configurations suivantes : VERSION ACTUELLE Date: 26/02/2019 -Version: 2.10.20 +Version: 2.10.21 Author: EP - Bugfix "Categorie sélectionnée ne met plus à jour le domaine" + Simplification des interactions domaine<->categorie (materiel) + La selection de la categorie ne met plus à jour le domaine, ça ne sert à rien IMPORTANT: - Pour connaitre la version actuelle, taper "./VERSION" diff --git a/src/Template/Materiels/add.ctp b/src/Template/Materiels/add.ctp index 8217700..c474a22 100755 --- a/src/Template/Materiels/add.ctp +++ b/src/Template/Materiels/add.ctp @@ -77,6 +77,7 @@ if (isset($cpMateriel)) { 'empty' => 'Choisir un domaine', 'default' => $Sur_categ_id ]); + /* (EP 26/2/19) Inutile, je commente // if a domaine is selected, reduce the categories list to this domaine $categs = $categories; if ($this->request->getData('sur_categorie_id') !== null && ($this->request->getData('sur_categorie_id') != '')) { @@ -84,6 +85,8 @@ if (isset($cpMateriel)) { 'sur_categorie_id =' => $this->request->getData('sur_categorie_id') ]); } + */ + $categs = []; echo $this->Form->control('categorie_id', [ 'label' => 'Catégorie', 'style' => 'width: 380px', @@ -396,7 +399,8 @@ $(document).ready(function() { if (categId == "") emptySelectOptions("#sous-categorie-id", "Choisir une sous-catégorie"); else { updateSelectOptionsFromAnother("#sous-categorie-id", "#categorie-id", "SousCategories/getByCategorie", "Choisir une sous-catégorie " + categLabel); - updateSelectOptionsFromAnother("#sur-categorie-id", "#categorie-id", "SurCategories/getFromCategorie", ""); + // (EP 26/2/19) Inutile, je commente + //updateSelectOptionsFromAnother("#sur-categorie-id", "#categorie-id", "SurCategories/getFromCategorie", ""); }; return false; }); diff --git a/src/Template/Materiels/edit.ctp b/src/Template/Materiels/edit.ctp index 40b2e53..4cd3a07 100755 --- a/src/Template/Materiels/edit.ctp +++ b/src/Template/Materiels/edit.ctp @@ -515,7 +515,8 @@ $(document).ready(function () { if (categId == "") emptySelectOptions("#sous-categorie-id", "Choisir une sous-catégorie"); else { updateSelectOptionsFromAnother("#sous-categorie-id", "#categorie-id", "SousCategories/getByCategorie", "Choisir une sous-catégorie " + categLabel); - updateSelectOptionsFromAnother("#sur-categorie-id", "#categorie-id", "SurCategories/getFromCategorie", ""); + // (EP 26/2/19) Inutile, je commente + //updateSelectOptionsFromAnother("#sur-categorie-id", "#categorie-id", "SurCategories/getFromCategorie", ""); } return false; }); -- libgit2 0.21.2