Commit 73d40e69db785a37d2b972ac70b6fa5eaa432cb2
1 parent
e477fdb1
Exists in
master
and in
3 other branches
Partie VII - Mail avec doc en pj
ajout d'un test pour nommer le document différement en fonction de si on l'ajoute à un suivi ou à un matériel
Showing
1 changed file
with
8 additions
and
1 deletions
Show diff stats
src/Model/Table/DocumentsTable.php
... | ... | @@ -194,7 +194,14 @@ class DocumentsTable extends AppTable |
194 | 194 | $extension = strtolower(pathinfo($file['name'], PATHINFO_EXTENSION)); |
195 | 195 | //nouvelle norme pour les noms de documents uploadés |
196 | 196 | // |
197 | - $nom=$entity->get('materiel_id')."_".$entity->get('nom')."_".$entity->get('id'). '.' . $extension; | |
197 | + $idMat=$entity->get('materiel_id'); | |
198 | + $idSuiv=$entity->get('suivi_id'); | |
199 | + if(!$idMat == Null ) { | |
200 | + $id=$idMat; | |
201 | + } else { | |
202 | + $id=$idSuiv; | |
203 | + } | |
204 | + $nom=$id."_".$entity->get('nom')."_".$entity->get('id'). '.' . $extension; | |
198 | 205 | if ($entity->get('photo')) { |
199 | 206 | //move_uploaded_file($file['tmp_name'], 'img' . DS . 'photos' . DS . $entity->get('id') . '.' . $extension); |
200 | 207 | move_uploaded_file($file['tmp_name'], 'img' . DS . 'photos' . DS . $nom ); | ... | ... |