[CRUD] Forward query parameters when pushing button "save and new" in "create" page

This commit is contained in:
Julien Fastré 2020-07-06 13:30:01 +02:00
parent a732393100
commit 567f3f7ec9
2 changed files with 3 additions and 2 deletions

View File

@ -143,4 +143,5 @@ Master Branch
============= =============
- [Export list] improve alignment of last line - [Export list] improve alignment of last line
- [CRUD] Forward query parameters when pushing button "save and new" in "create" page;

View File

@ -999,7 +999,7 @@ class CRUDController extends AbstractController
case "save-and-close": case "save-and-close":
return $this->redirectToRoute('chill_crud_'.$this->getCrudName().'_index'); return $this->redirectToRoute('chill_crud_'.$this->getCrudName().'_index');
case "save-and-new": case "save-and-new":
return $this->redirectToRoute('chill_crud_'.$this->getCrudName().'_new'); return $this->redirectToRoute('chill_crud_'.$this->getCrudName().'_new', $request->query->all());
default: default:
return $this->redirectToRoute('chill_crud_'.$this->getCrudName().'_view', [ return $this->redirectToRoute('chill_crud_'.$this->getCrudName().'_view', [
'id' => $entity->getId() 'id' => $entity->getId()