#4201 Bearbeitung von Bestellung ohne Konto deaktiviert

This commit is contained in:
Lorenz Hilpert
2023-07-20 14:21:14 +02:00
parent c9fbbd78a8
commit 59e650a1f1

View File

@@ -44,7 +44,7 @@ export function selectHasStoreFeature(s: CustomerSearchState) {
}
export function selectIsBestellungOhneKonto(s: CustomerSearchState) {
return selectHasWebshopFeature(s) && selectHasGuestFeature(s);
return (selectHasWebshopFeature(s) && selectHasGuestFeature(s)) || (selectHasStoreFeature(s) && selectHasGuestFeature(s));
}
export function selectIsOnlinekonto(s: CustomerSearchState) {