'titre' => "Sortie d'un produit"
]);
}
public function updateStock($qte,$produit,$stock){
$em = $this->getDoctrine()->getManager();
$newStock = $stock-$qte;
$produit->setStock($newStock);
$em->flush();
if($produit->getAlertMail() && $newStock < $produit->getLimiteStock()){
in src/ImieTransportBundle/Controller/SortieController.php, line 49
Posted from SensioLabsInsight