Commit 379f42e9778b246350103508f79348d7df1928d4

Authored by Malik Imelhaine
1 parent b584227a

Last update

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