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,7 +194,14 @@ class DocumentsTable extends AppTable | ||
194 | $extension = strtolower(pathinfo($file['name'], PATHINFO_EXTENSION)); | 194 | $extension = strtolower(pathinfo($file['name'], PATHINFO_EXTENSION)); |
195 | //nouvelle norme pour les noms de documents uploadés | 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 | if ($entity->get('photo')) { | 205 | if ($entity->get('photo')) { |
199 | //move_uploaded_file($file['tmp_name'], 'img' . DS . 'photos' . DS . $entity->get('id') . '.' . $extension); | 206 | //move_uploaded_file($file['tmp_name'], 'img' . DS . 'photos' . DS . $entity->get('id') . '.' . $extension); |
200 | move_uploaded_file($file['tmp_name'], 'img' . DS . 'photos' . DS . $nom ); | 207 | move_uploaded_file($file['tmp_name'], 'img' . DS . 'photos' . DS . $nom ); |