Commit 856422b84334515808b58828fb9bdba3083c5fc5

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

Bugfix champ acheteur doit être non modifiable par role "Utilisateur"

v5.2.20-3.7.9
CHANGELOG
... ... @@ -461,7 +461,8 @@ Commencer à implémenter le nouveau workflow v5 :
461 461 ======= CHANGES =======
462 462  
463 463 -------
464   -25/10/2021 v5.2.19-3.7.9
  464 +25/10/2021 v5.2.20-3.7.9
  465 + - (b) Bugfix champ acheteur doit être non modifiable par role "Utilisateur"
465 466 - (i) Amélioré config des champs matériel obligatoires et readonly
466 467 => certains champs sont readonly dès le départ
467 468 => renommé les sections pour que ça soit plus compréhensible (BEFORE, AFTER)
... ...
README.md
... ... @@ -53,7 +53,7 @@ Logiciel testé et validé sur les configurations suivantes :
53 53 --------------------------------------------------------------------------------------------
54 54  
55 55 Date: 25/10/2021
56   -Version: v5.2.19-3.7.9
  56 +Version: v5.2.20-3.7.9
57 57  
58 58  
59 59  
... ...
src/Controller/MaterielsController.php
... ... @@ -2707,8 +2707,9 @@ class MaterielsController extends AppController {
2707 2707 ));
2708 2708  
2709 2709  
  2710 + $this->set('readonlyFields', $this->getUneditableFieldsForMaterielStatus($materiel->status));
  2711 + //$this->set('readonlyFields', $IS_ADD ? [] : $this->getUneditableFieldsForMaterielStatus($materiel->status));
2710 2712 //debug($this->Materiels->getUneditableFieldsForMaterielStatus($status)); exit;
2711   - $this->set('readonlyFields', $IS_ADD ? [] : $this->getUneditableFieldsForMaterielStatus($materiel->status));
2712 2713 //$this->set('readonlyFields', $IS_ADD ? [] : $this->Materiels->getUneditableFieldsForMaterielStatus($materiel->status));
2713 2714 //$this->set('CAN_PRINT_LABEL', $this->isAuthorizedActionForCurrentUser('printLabelRuban', $id));
2714 2715 $this->set('CAN_PRINT_LABEL', $IS_ADD ? $this->confLabinvent->hasPrinter : $this->isAuthorizedActionForCurrentUser('printLabelRuban'));
... ...