Commit 71be030ee9906454e50457a012f1ddcb32cd1c79

Authored by Etienne Pallier
1 parent 68f2e78b
Exists in master and in 1 other branch dev

Bugfixed recherche générale

on peut maintenant chercher aussi un projet

v4.101.8-3.7.9
CHANGES.txt
... ... @@ -94,7 +94,8 @@ Outre ces changements, voici d'autres changements importants :
94 94 ======= CHANGES =======
95 95  
96 96 -------
97   -16/09/2020 v4.101.7-3.7.9 (EP)
  97 +16/09/2020 v4.101.8-3.7.9 (EP)
  98 + - (b) Bugfixed recherche générale : on peut maintenant chercher aussi un projet
98 99 - (b) Bugfixed et réactivé test date reception > date achat "mais pas trop" (bug sur php5)
99 100  
100 101 -------
... ...
README.md
... ... @@ -43,7 +43,7 @@ Logiciel testé et validé sur les configurations suivantes :
43 43 --------------------------------------------------------------------------------------------
44 44  
45 45 Date: 15/09/2020
46   -Version: 4.101.7-3.7.9
  46 +Version: 4.101.8-3.7.9
47 47  
48 48  
49 49 HISTORIQUE DES CHANGEMENTS DE VERSION : voir le fichier CHANGES.txt (ou la page web /pages/changes)
... ...
src/Controller/MaterielsController.php
... ... @@ -2547,7 +2547,7 @@ class MaterielsController extends AppController {
2547 2547 'Fournisseurs.nom LIKE' => $search_str,
2548 2548 'Categories.nom LIKE' => $search_str,
2549 2549 'Organismes.nom LIKE' => $search_str,
2550   - //'Projets.nom LIKE' => $search_str,
  2550 + 'Projets.nom LIKE' => $search_str,
2551 2551  
2552 2552 ];
2553 2553 }
... ... @@ -2843,7 +2843,7 @@ class MaterielsController extends AppController {
2843 2843  
2844 2844 $lastResults = $this->Materiels->find('all', [
2845 2845 'conditions' => $conditions,
2846   - 'contain' => ['Categories', 'Fournisseurs', 'Organismes']
  2846 + 'contain' => ['Categories', 'Fournisseurs', 'Organismes', 'Projets']
2847 2847 ])->limit(1000);
2848 2848  
2849 2849 $this->paginate = [
... ...