Commit 379f42e9778b246350103508f79348d7df1928d4
1 parent
b584227a
Exists in
master
and in
3 other branches
Last update
Bdd en création mise a jour
Showing
3 changed files
with
4 additions
and
2 deletions
Show diff stats
database/labinvent_last_version.sql
@@ -723,9 +723,11 @@ ALTER TABLE `variables` | @@ -723,9 +723,11 @@ ALTER TABLE `variables` | ||
723 | 723 | ||
724 | -- Insertion par défaut | 724 | -- Insertion par défaut |
725 | Insert into type_suivis(nom) values ('Réparation'); | 725 | Insert into type_suivis(nom) values ('Réparation'); |
726 | +Insert into type_suivis(id,nom) values ('2','Panne'); | ||
726 | Insert into sites(id, nom) values (9, 'N/A'); | 727 | Insert into sites(id, nom) values (9, 'N/A'); |
727 | 728 | ||
728 | Insert into type_documents(id, nom) values (1, 'N/A'); | 729 | Insert into type_documents(id, nom) values (1, 'N/A'); |
730 | +Insert into type_documents(id, nom) values (13, 'Devis'); | ||
729 | Insert into type_documents(nom) values ('Bon de commande'); | 731 | Insert into type_documents(nom) values ('Bon de commande'); |
730 | Insert into type_documents(nom) values ('Bon de livraison'); | 732 | Insert into type_documents(nom) values ('Bon de livraison'); |
731 | Insert into type_documents(nom) values ('Photo'); | 733 | Insert into type_documents(nom) values ('Photo'); |
src/Controller/AppController.php
@@ -1253,7 +1253,7 @@ class AppController extends Controller | @@ -1253,7 +1253,7 @@ class AppController extends Controller | ||
1253 | if ($configuration->envoi_mail && $action != 'printLabelRuban') { | 1253 | if ($configuration->envoi_mail && $action != 'printLabelRuban') { |
1254 | 1254 | ||
1255 | // owner's mail (utilisateur du matériel associé ) | 1255 | // owner's mail (utilisateur du matériel associé ) |
1256 | - $mailList[0] = $entity->materiel->email_responsable; | 1256 | + //$mailList[0] = $entity->materiel->email_responsable; |
1257 | 1257 | ||
1258 | //MI - gestionaire ratachée au matériel | 1258 | //MI - gestionaire ratachée au matériel |
1259 | $mailList[1]= TableRegistry::get('Users')->find() | 1259 | $mailList[1]= TableRegistry::get('Users')->find() |
src/Controller/MaterielsController.php
@@ -1237,7 +1237,7 @@ class MaterielsController extends AppController | @@ -1237,7 +1237,7 @@ class MaterielsController extends AppController | ||
1237 | //évite le double envoi car il y a un envoi de mail a la fonction add et à l'état created | 1237 | //évite le double envoi car il y a un envoi de mail a la fonction add et à l'état created |
1238 | //évite les envois succcessifs si qqn fait une erreur sur la fiche, valide la fiche, et dévalide pour remodifier | 1238 | //évite les envois succcessifs si qqn fait une erreur sur la fiche, valide la fiche, et dévalide pour remodifier |
1239 | if ($newStatus == 'ARCHIVED' || $newStatus == 'TOBEARCHIVED') { | 1239 | if ($newStatus == 'ARCHIVED' || $newStatus == 'TOBEARCHIVED') { |
1240 | - $this->sendmail($materiel); | 1240 | + $this->sendmail($materiel,3); |
1241 | } | 1241 | } |
1242 | } | 1242 | } |
1243 | 1243 |