Quellcode durchsuchen

[Backend] Produits : target blank + rester sur la page du formulaire après l'édition

feature/export_comptable
Guillaume vor 4 Jahren
Ursprung
Commit
82b858a69f
1 geänderte Dateien mit 2 neuen und 1 gelöschten Zeilen
  1. +2
    -1
      ShopBundle/Controller/Backend/ProductFamilyController.php

+ 2
- 1
ShopBundle/Controller/Backend/ProductFamilyController.php Datei anzeigen

@@ -312,7 +312,8 @@ class ProductFamilyController extends AdminController
$this->executeDynamicMethod('update<EntityName>Entity', [$entity, $editForm]);
$this->dispatch(EasyAdminEvents::POST_UPDATE, ['entity' => $entity]);

return $this->redirectToReferrer();
$this->utils->addFlash('success', 'Produit sauvegardé') ;
return $this->redirectToRoute('easyadmin', ['entity' => 'ProductFamily', 'action' => 'edit', 'id' => $id]) ;
}

$this->dispatch(EasyAdminEvents::POST_EDIT);

Laden…
Abbrechen
Speichern