feat: Smart Checkout con múltiples métodos de pago#3
Open
Conversation
Adds a new admin multiselect field allowing merchants to choose which payment methods (bank_transfer, card, installments_payment) to offer at checkout. Defaults to bank_transfer for backwards compatibility. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Injects ConfigurationService into RequestBuilder to pass the configured payment method types to the Fintoc API, enabling Smart Checkout with multiple payment methods (bank transfer, card, BNPL). Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Resumen
payment_method_typesen el payload de creación de checkout sessions hacia la API de Fintoc.Cambios
Model/Config/Source/PaymentMethodTypes.php— Nuevo source model con las opciones:bank_transfer,card,installments_payment.etc/adminhtml/config/payment_methods/redirect.xml— Campo multiselect "Payment Methods" en la sección Payment Initiation del admin.etc/config.xml— Valor por defectobank_transferpara compatibilidad hacia atrás.Api/ConfigurationServiceInterface.php/Service/ConfigurationService.php— Nuevo métodogetPaymentMethodTypes().Service/Checkout/RequestBuilder.php— InyectaConfigurationServicey agregapayment_method_typesal payload del checkout session.Notas
payment_intent.succeeded,checkout_session.finished, etc.) ya cubren todos los eventos.bank_transfer, por lo que no hay cambio de comportamiento para comerciantes existentes.Plan de pruebas
bank_transfer) el comportamiento es idéntico al actualcarden el admin y verificar que el checkout de Fintoc muestra la opción de tarjetainstallments_paymenty verificar que aparece la opción BNPL (requiere monto entre CLP 20.000 y 400.000)🤖 Generated with Claude Code