How to navigate to Different PaymentView in POS based on user payment method selection #189
-
Beta Was this translation helpful? Give feedback.
Answered by
madyke
Oct 3, 2023
Replies: 2 comments
-
Hello @LavanyaNiki - unfortunately, we don't support calling the payment operations/navigating to the payment view from extensions today so it would not be possible to implement the requirement exactly as requested. Our recommendation to achieve a similar result to meet the business requirement would be:
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
madyke
-
Hello @madyke: Thank you for the input. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello @LavanyaNiki - unfortunately, we don't support calling the payment operations/navigating to the payment view from extensions today so it would not be possible to implement the requirement exactly as requested. Our recommendation to achieve a similar result to meet the business requirement would be:
ConcludeTransaction
operation as a single point of entry on the button grid.PreSelectTransactionPaymentMethodTrigger
that will show aListInputDialog
where the user will select which payment method group to use. The trigger implementation will then filter out the payment methods that are not applicable to the scenario, and the payment workflow will continue usi…