mirror of
https://dev.azure.com/hugendubel/ISA/_git/ISA-Frontend
synced 2025-12-31 09:37:15 +01:00
Merged PR 711: #1883 WA - Routing nach Klick auf abgeholt und Lieferschein drucken
#1883 WA - Routing nach Klick auf abgeholt und Lieferschein drucken Related work items: #1883
This commit is contained in:
committed by
Lorenz Hilpert
parent
b61ea10fe3
commit
7f439573b3
@@ -295,7 +295,12 @@ export class ShelfOrderDetailsComponent {
|
||||
async handleActionClick(action: KeyValueDTOOfStringAndString, target: HTMLButtonElement) {
|
||||
this.activeButton = target;
|
||||
await this.setState(action);
|
||||
if (action.label === 'abgeholt' || action.value === 'abgeholt') {
|
||||
if (
|
||||
action.label === 'abgeholt' ||
|
||||
action.value === 'abgeholt' ||
|
||||
action.label === 'abgeholt und Lieferschein drucken' ||
|
||||
action.value === 'abgeholt und Lieferschein drucken'
|
||||
) {
|
||||
this.router.navigate(['/shelf', 'search']);
|
||||
this.store.dispatch(
|
||||
new ResetBreadcrumbsTo(
|
||||
|
||||
Reference in New Issue
Block a user