Commit 88052b8800a780368873e426b8c77a86df05dd64
1 parent
ad0e2d6a
Exists in
master
and in
1 other branch
(materiels/index) bugfix champ recherche sur liste materiels
v3.7.9.91 - perdait le nombre de lignes par page (aff)
Showing
4 changed files
with
9 additions
and
7 deletions
Show diff stats
CHANGES.txt
... | ... | @@ -77,9 +77,11 @@ Outre ces changements, voici d'autres changements importants : |
77 | 77 | ======= CHANGES ======= |
78 | 78 | |
79 | 79 | ------- |
80 | -31/07/2020 v3.7.9.84-90 (EP) | |
81 | - - (materiels/index) bugfix champ recherche sur liste materiels qui perdait le contexte des autres paramètres (nb page, age, ...) | |
82 | - - (materiels/index) bugfix champ recherche sur liste materiels qui perdait le contexte du statut (CREATED, VALIDATED, ...) | |
80 | +31/07/2020 v3.7.9.84-91 (EP) | |
81 | + - (b) (materiels/index) bugfixes champ recherche sur liste materiels : | |
82 | + - perdait le contexte des autres paramètres (age, domain, ...) | |
83 | + - perdait le contexte du statut (CREATED, VALIDATED, ...) | |
84 | + - perdait le nombre de lignes par page (aff) | |
83 | 85 | - (i) (materiels/index) Grosse refactorisation (et simplification) du code des boutons filtrage par statut et champ recherche |
84 | 86 | - (i) Amélioration scripts database/mode_panique.sh et database/update/db-update.sh |
85 | 87 | - bugfixes TESTS | ... | ... |
README.md
... | ... | @@ -43,7 +43,7 @@ Logiciel testé et validé sur les configurations suivantes : |
43 | 43 | -------------------------------------------------------------------------------------------- |
44 | 44 | |
45 | 45 | Date: 31/07/2020 |
46 | -Version: 3.7.9.90 | |
46 | +Version: 3.7.9.91 | |
47 | 47 | |
48 | 48 | |
49 | 49 | HISTORIQUE DES CHANGEMENTS DE VERSION : voir le fichier CHANGES.txt (ou la page web /pages/changes) | ... | ... |
src/Model/Table/MaterielsTable.php
... | ... | @@ -680,11 +680,11 @@ class MaterielsTable extends AppTable |
680 | 680 | if ( $DATE_GIVEN ) { |
681 | 681 | if ($WITH_YEAR) { |
682 | 682 | $year=substr($entity->get('date_acquisition'), 6, 4); |
683 | - debug("year before : $year"); | |
683 | + ////debug("year before : $year"); | |
684 | 684 | if (strlen($year) == 2) { |
685 | 685 | $year = '20' . $year; |
686 | 686 | } |
687 | - debug("year after: $year"); | |
687 | + ////debug("year after: $year"); | |
688 | 688 | } |
689 | 689 | $labShortName = $configuration->labNameShort; |
690 | 690 | $numero_laboratoire = $labShortName; | ... | ... |
src/Template/Materiels/index.ctp
... | ... | @@ -119,7 +119,7 @@ $displaySearchField = function($params, $searchfor, $html, $form) { |
119 | 119 | ]); |
120 | 120 | // (EP 202007) Ajouter un champ caché pour chaque paramètre passé dans l'url |
121 | 121 | // afin de ne pas les perdre... |
122 | - $parameters = ['age', 'domain', 'status']; | |
122 | + $parameters = ['aff', 'age', 'domain', 'status']; | |
123 | 123 | foreach ($parameters as $param) |
124 | 124 | if (isset($params[$param])) |
125 | 125 | echo $this->Form->hidden($param, [ | ... | ... |