-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bo kc issue ui backend #33
Conversation
Accounts page uses accounts from database, and now passes a long to transactions page with UID in order to pull appropriate transaction data
Updated TransactionEntity to reflect double
…family-bank-app into BO-KC-Issue-UI-Backend
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Checked out branch on my machine and worked as you demoed earlier today. Buttons for withdraw and deposit are still weirdly offset on my screen, I'll add that as something to look into more myself
@theanticrumpet What emulator are you using? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See comment on Entity code. Otherwise looks good
@Entity(foreignKeys = @ForeignKey(entity = AccountEntity.class, | ||
parentColumns = "accountUid", | ||
childColumns = "transactionUid", | ||
onDelete = ForeignKey.CASCADE)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are you using this? The same code is already created in the AccountWithTransactions activity.
Codecov Report
@@ Coverage Diff @@
## master #33 +/- ##
=========================================
Coverage ? 12.31%
Complexity ? 10
=========================================
Files ? 15
Lines ? 276
Branches ? 1
=========================================
Hits ? 34
Misses ? 240
Partials ? 2
Continue to review full report at Codecov.
|
Connects Create Account UI to Create Account DB
Allows for the creation of multiple Accounts in the DB
The Accounts are now reflected in the Main Dashboard