Bank accounts
This commit is contained in:
parent
a15d74fa26
commit
d0f16d4a80
|
|
@ -7,6 +7,7 @@ import 'package:flutter/material.dart';
|
|||
// Package imports:
|
||||
import 'package:built_collection/built_collection.dart';
|
||||
import 'package:flutter_redux/flutter_redux.dart';
|
||||
import 'package:invoiceninja_flutter/ui/bank_account/bank_account_screen.dart';
|
||||
import 'package:redux/redux.dart';
|
||||
|
||||
// Project imports:
|
||||
|
|
@ -1372,6 +1373,9 @@ void handleEntitiesActions(List<BaseEntity> entities, EntityAction action,
|
|||
case EntityType.subscription:
|
||||
store.dispatch(UpdateCurrentRoute(SubscriptionScreen.route));
|
||||
break;
|
||||
case EntityType.bankAccount:
|
||||
store.dispatch(UpdateCurrentRoute(BankAccountScreen.route));
|
||||
break;
|
||||
default:
|
||||
print(
|
||||
'ERROR: ${entities.first.entityType} entity type not supported');
|
||||
|
|
|
|||
Loading…
Reference in New Issue