Skip to content

Commit cb2a66e

Browse files
authored
Feature/invoice refinement (#13)
* feat(invoice): enhance invoice details * refactor: renamed routes to pages * fix(invoice): enhance invoice content CRUDs * fix(invoice): add due date & fix calc
1 parent 70896dc commit cb2a66e

29 files changed

+3048
-778
lines changed

lib/src/isar_collection/isar_collections.dart

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,14 @@ class Store {
77
Id id = Isar.autoIncrement;
88
String? name;
99
String? email;
10+
String? bankName;
11+
String? accountNumber;
12+
String? accountHolderName;
13+
String? swiftCode;
14+
double? tax;
15+
String? thankNote;
16+
String? locale;
17+
String? symbol;
1018
}
1119

1220
@collection
@@ -41,4 +49,5 @@ class Recipient {
4149
Id id = Isar.autoIncrement;
4250
String? name;
4351
String? address;
52+
bool? pinned;
4453
}

0 commit comments

Comments
 (0)