Hi,
I'm programming a module to an analysis before client can pay, but what the controller i need hook/override to make the checkout part?
I think i need to make a new order status, in analysis, this blocks the payment, after this, if i change the status it sent a e-mail for client to continue with order or why he can't continue
Thanks!
Hi @jamaglian
The checkout in Magento 2 is built up from a series of Knockout JS components which are then rendered using the Knockout JS templating system. Magento 2 defines each one of these components and their parent/child relationship in a large XML file which can be extended or overridden in your own theme or module.
Checkout depends on many modules, Magento_Checkout, Magento_Sales, Magento_Quote and many more as per requirement.
There are couple of ways which you can find in here:
https://devdocs.magento.com/guides/v2.4/howdoi/checkout/checkout_overview.html
If requirement clear, please click on 'Kudos' & Accept as Solution!