-
Notifications
You must be signed in to change notification settings - Fork 106
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
feat(Bonus Pagamenti Digitali): [#175488300,#175662744] Iban insertion and workflow (rework due to change request) #2360
Conversation
…179-transaction-details
…668-unsubscribe-bpd
…on-details' into 175266668-unsubscribe-bpd
Affected stories
|
Codecov Report
@@ Coverage Diff @@
## master #2360 +/- ##
==========================================
- Coverage 49.26% 49.23% -0.04%
==========================================
Files 636 635 -1
Lines 17832 17829 -3
Branches 3511 3229 -282
==========================================
- Hits 8785 8778 -7
- Misses 9004 9008 +4
Partials 43 43
Continue to review full report at Codecov.
|
…nItem.tsx Co-authored-by: Matteo Boschi <[email protected]>
…ansactionDetailComponent.tsx Co-authored-by: Matteo Boschi <[email protected]>
…ansactionDetailComponent.tsx Co-authored-by: Matteo Boschi <[email protected]>
…on-details' into 175266668-unsubscribe-bpd
…668-unsubscribe-bpd
…be-bpd' into 175488300-iban-cr-rework
…75269179-transaction-details
…om:pagopa/io-app into 175266668-unsubscribe-bpd
…be-bpd' into 175488300-iban-cr-rework
…75266668-unsubscribe-bpd
…agopa/io-app into 175488300-iban-cr-rework
@@ -32,13 +33,17 @@ const IbanKoBody: React.FunctionComponent<Props> = props => { | |||
"", | |||
iban => iban as string | |||
); | |||
const style = fromNullable(props.isFlex).getOrElse(true) ? IOStyles.flex : {}; |
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.
const style = fromNullable(props.isFlex).getOrElse(true) ? IOStyles.flex : {}; | |
const style = props.isFlex ?? true ? IOStyles.flex : {}; |
This pr depends on #2355
Short description
This pr changes the Iban insertion workflow in order to accept a change request and api modification.
IbanKoNotOwned
List of changes proposed in this pull request
case IbanStatus.OK: and case IbanStatus.CANT_VERIFY:
: now allows the user to continue in the workflow (before was onlycase IbanStatus.OK:
.bpdIbanPrefillSelector
in order to calculate the "prefill" value for the IBAN input textfield (should be upsertvalue if !== undefined, else payoffInstr value if present, else "").IbanKOCannotVerify.tsx
screen, not accessible but kept in case of second thoughts.IbanKONotOwned.tsx
to accept the design changes.