Commit fedf28f20b43ca12a1670438fd2da5b020d05658

Authored by Etienne Pallier
1 parent 39547043
Exists in master and in 2 other branches dev, dev-IRAP

petit oubli sur numero_laboratoire (optimisation)

Showing 2 changed files with 4 additions and 4 deletions   Show diff stats
README.md
... ... @@ -56,7 +56,7 @@ VERSION ACTUELLE
56 56 Date: 17/01/2019
57 57 Version: 2.10.1
58 58 Author: EP
59   - Mise à jour framework cakephp et amélioration recherche matériel
  59 + Mise à jour framework cakephp et amélioration recherche matériel:
60 60 - Mise à jour du framework cakephp à la version courante : passage de v3.5 à v3.7
61 61 - Bugfixes et améliorations recherche matériel, notamment sur la désignation (si elle contient plusieurs mots)
62 62  
... ... @@ -79,7 +79,7 @@ Liste complète des évolutions: https://gitlab.irap.omp.eu/epallier/labinvent/c
79 79  
80 80 -----------------------------------------------------------------------------------------------------------
81 81 17/01/2019 Version: 2.10.1 (EP)
82   - Mise à jour framework cakephp et amélioration recherche matériel
  82 + Mise à jour framework cakephp et amélioration recherche matériel:
83 83 - Mise à jour du framework cakephp à la version courante : passage de v3.5 à v3.7:
84 84 ($ php composer.phar require --update-with-dependencies "cakephp/cakephp:3.7.*")
85 85 - Bugfixes et améliorations recherche matériel, notamment sur la désignation (si elle contient plusieurs mots)
... ...
src/Controller/MaterielsController.php
... ... @@ -1680,8 +1680,8 @@ class MaterielsController extends AppController
1680 1680 //'Materiels.designation LIKE' => '%' . $designation[0] . '%',
1681 1681 //'Materiels.designation LIKE' => '%' . $this->request->getData('s_designation'). '%',
1682 1682 $designation,
1683   - 'Materiels.numero_laboratoire LIKE' => '%' . $this->request->getData('s_numero_laboratoire') . '%',
1684   - //$this->getConditionForField('numero_laboratoire'),
  1683 + //'Materiels.numero_laboratoire LIKE' => '%' . $this->request->getData('s_numero_laboratoire') . '%',
  1684 + $this->getConditionForField('numero_laboratoire'),
1685 1685 $this->getConditionForField('numero_commande'),
1686 1686 $date_acquisition,
1687 1687 $periode_acquisitionRequest,
... ...