-
Notifications
You must be signed in to change notification settings - Fork 89
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
Add bank accounts modal and table #452
Comments
Just to inform, @Alfredoeb9 is working on this issue. |
@Raju-kadel-27 I can help in with this. Please assign me this if there is inactivity for a long time. Sry for the ping |
@Alfredoeb9 are you picking this up or can @rushikeshg25 help? Please confirm. |
@dahal I am picking this up just waiting for my other PR to merge before I continue on this task. |
@dahal on the new bank modal screen, do I include the respected BankAccount Table schema as inputs? (beneficiaryName, beneficiaryAddress, bankName, bankAddress, companyId etc.) |
Yes please. Company id is only to establish association. |
Some other edge cases for the routing numbers and account number will there be a maxLength limit? |
Is this universal or only specific to US accounts, if its universal we can have that validation. @Alfredoeb9 |
Let dig deeper on that, it didnt specify the country Edit: After some research looks like every country has different max digits. ex. In Germany and Austria, Germany has 8 digits, Austria has 5. In Canada max digits are 8. In India 11-character code with the first four characters representing the bank name, and the last six characters representing the branch. With this I won't be putting a maxLength on the fields |
@dahal Before I continue to connecting to backend, is this UI approved? I added in a confirm routing number as that seems to be standard across other 'Add Bank Account' services. |
Looks good, we dont need the company name though. @Alfredoeb9 |
@dahal are users able to create infinite amount of bank accounts, with the exception that only one can be true for primary and all others as false? With the current schema only two accounts can be created, one for primary and one for non-primary, I can't create any other primary=false bank accounts. I don't think prisma @@unique allows for one true and all others as false. Solution: On the server I can run a check to see if any primary column is true and if there are then return back an error. |
I think one primary and secondary is fine for now with the proper validation in place. When editing the existing account, and if user decide to toggle primary to secondary and vice versa, please update other record to toggle as accordingly. Meaning
Show a |
@dahal I am not able to auto set primary -> secondary and secondary -> primary getting Error: Coming from BankAccount schema: How should we proceed? I could remove the unique constraints and implement the auto setting from primary -> seconary and vise-versa but then users are going to able to create infinite about of accounts unless custom code is placed on backend to check if any other accouts are primary and return an error in that case. |
@Alfredoeb9 we probably can run a raw sql query for this, something like BEGIN;
-- Step 1: Select the current primary account and set it to false
UPDATE BankAccount
SET primary = FALSE
WHERE companyId = :companyId
AND primary = TRUE;
-- Step 2: Select the current non-primary account and set it to true
UPDATE BankAccount
SET primary = TRUE
WHERE companyId = :companyId
AND primary = FALSE
LIMIT 1;
COMMIT; |
can you reassign please @dahal |
@dahal I tried running a raw sql string using queryRaw and executeRaw as provided in the docs but no avail. I recieve the same error message as above I also tried putting query in a $transaction but did not work. I also tried setting the primary value to null then switching to respected value but would get a different error as null cannot be assigned to boolean. This feature is basically finished just need to find a solution for this last automatic primary switch but I'm not sure it is possible due to the @@unique constriant on a boolean column. |
Lets remove the db level validation in that case. @Alfredoeb9 |
We currently have placeholder modal for bank accounts, we need to complete this feature. Completing this feature means:-
Add bank account
modalBank name
Account number
Empty header, but rows should render
Primary
ifprimary
istrue
, elseSecondary
. These primary/secondary should be rendered usingBadge
component.success
for primary andinfo
for secondaryActions, with drop down actions (similar to API Key table)
You can get to this page by going to
Settings > Bank accounts
after you loginThe text was updated successfully, but these errors were encountered: