Commit 60ce0b3c7a075162b401b5e7d89ae6de81bfd1c8
1 parent
b368f882
Exists in
master
and in
1 other branch
bugfix dates sur php5...
Showing
3 changed files
with
8 additions
and
4 deletions
Show diff stats
CHANGES.txt
... | ... | @@ -109,7 +109,7 @@ Outre ces changements, voici d'autres changements importants : |
109 | 109 | ------- |
110 | 110 | 11/09/2020 v3.7.9.100 (EP) |
111 | 111 | - (e) Nouveau filtre de la liste des matériels (index) => par "projet" |
112 | - - (i) Enorme refactorisation de tous les filtres (nb lignes, age, domaine, projet) de la page index (liste des matériels) => une fonction unique $displayFilter() dans index.ctp | |
112 | + - (i) Grosse refactorisation de tous les filtres (nb lignes, age, domaine, projet) de la page index (liste des matériels) => une fonction unique $displayFilter() dans index.ctp | |
113 | 113 | |
114 | 114 | ------- |
115 | 115 | 10-11/09/2020 v3.7.9.97-99 (EP) | ... | ... |
src/Controller/MaterielsController.php
... | ... | @@ -1600,11 +1600,15 @@ class MaterielsController extends AppController { |
1600 | 1600 | if ($this->isLabinventDebugMode()) { |
1601 | 1601 | $d2 = $materiel->date_reception; |
1602 | 1602 | $d1 = $materiel->date_acquisition; |
1603 | + debug("d1 achat avant:"); debug($d1); | |
1604 | + debug("d2 recep avant:"); debug($d2); | |
1605 | + /* | |
1603 | 1606 | $tz = new \DateTimeZone('Europe/Paris'); |
1604 | 1607 | $d1 = new \DateTime(strtr($d1,'/','-'),$tz); |
1605 | 1608 | $d2 = new \DateTime(strtr($d2,'/','-'),$tz); |
1606 | - debug("d1 achat:"); debug($d1); | |
1607 | - debug("d2 recep:"); debug($d2); | |
1609 | + debug("d1 achat après:"); debug($d1); | |
1610 | + debug("d2 recep après:"); debug($d2); | |
1611 | + */ | |
1608 | 1612 | if ($d2 < $d1) debug("d2 < d1 !!!"); |
1609 | 1613 | // $d2 > $d1 oui mais pas trop... |
1610 | 1614 | $diff = $d2->diff($d1); | ... | ... |
src/Template/Projets/add_edit.ctp
... | ... | @@ -54,7 +54,7 @@ else { |
54 | 54 | <?php |
55 | 55 | echo $this->Form->control('nom'); |
56 | 56 | echo $this->Form->control('description'); |
57 | - echo $this->Form->control('groupes_thematique_id', ['options' => $groupes_thematiques, 'empty' => true]); | |
57 | + echo $this->Form->control('groupes_thematique_id', ['label'=>'Groupe thématique', 'options' => $groupes_thematiques, 'empty' => true]); | |
58 | 58 | echo $this->Form->control('chef_science_id', ['label' => 'Responsable scientifique', 'options' => $pis, 'empty' => true]); |
59 | 59 | echo $this->Form->control('chef_projet_id', ['label' => 'Chef de projet', 'options' => $pms, 'empty' => true]); |
60 | 60 | ... | ... |