Commit 173abc3c2a04e3afbaf91ede02d94cd0edd38894

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

(bugfix) re-oups

src/Template/Materiels/add_edit.ctp
... ... @@ -730,7 +730,7 @@ if (isset($cpMateriel)) {
730 730  
731 731 // - Nom utilisateur (ou destination du matériel)
732 732 //$readonly = $USER_IS_UTILISATEUR ? TRUE : FALSE;
733   - echo $this->Form->control('nom_responsable', [
  733 + echo $this->Form->control('nom_user', [
734 734 'label' => "Nom de l'Utilisateur (ou destination du bien)",
735 735 'empty' => 'Choisir une personne',
736 736 //'default' => $username,
... ...
src/Template/Materiels/index.ctp
... ... @@ -894,7 +894,11 @@ if ($SELECTED_STATUS) echo $this->Form->hidden('what', ['value'=>$SELECTED_STATU
894 894 <td class="smallText"><?= $materiel->has('category') ? h($materiel->category->nom) : '' ?></td>
895 895 <td class="smallText"><?= $materiel->has('organisme') ? h($materiel->organisme->nom) : '' ?></td>
896 896 <td class="smallText"><?= h($materiel->numero_inventaire_organisme) ?></td>
897   - <td class="smallText"><?= h($materiel->nom_responsable) ?></td>
  897 +
  898 + <!--
  899 + <td class="smallText"><= h($materiel->nom_responsable) ?></td>
  900 + -->
  901 + <td class="smallText"><?= h($materiel->nom_user) ?></td>
898 902  
899 903 <?php
900 904 // (4) COLONNE MATERIEL STATUS : C/V/TBA/A
... ...
src/Template/Materiels/view.ctp
... ... @@ -690,7 +690,7 @@ $CAN_PRINT_LABEL = $IS_VALIDATED &amp;&amp; $configuration-&gt;hasPrinter &amp;&amp; $USER_IS_ADMIN
690 690 );
691 691  
692 692 // Utilisateur
693   - $displayElement(__("Nom de l'utilisateur (destination du bien)"), h($entity->nom_responsable));
  693 + $displayElement(__("Nom de l'utilisateur (destination du bien)"), h($entity->nom_user));
694 694  
695 695 $displayElement(__('N. interne (labo)'), h($entity->numero_laboratoire));
696 696 if ($entity->gestionnaire_id) {
... ...