davi7873 Posted June 26, 2019 Share Posted June 26, 2019 Buenas tardes. Estoy intentando integrar Paypal en mi negocio online pero necesito poder filtrar los pagos, es decir, si es menor de una cantidad van a una cuenta y si supera esa cantidad van a otra. Se me ocurre hacerlo de dos formas, aunque no las he probado por falta de conocimientos y de seguridad. - Duplicando el módulo Paypal (algo que a priori se me antoja bastante complicado). - A través de un módulo de multiples vendedores (aunque no me queda muy claro que pueda filtrar de esa forma, por importe total del carrito) ¿Podéis echarme una mano con el tema? Gracias. Link to comment Share on other sites More sharing options...
Rodrigo B Laurindo Posted June 27, 2019 Share Posted June 27, 2019 Hola, Y si modificas el módulo Paypal? Algo como: $order_total = Context::getContext()->cart->getOrderTotal(true, Cart::ONLY_PRODUCTS); if ($order_total > 500) { $apiUserName = (Configuration::get('PAYPAL_SANDBOX')?Configuration::get('PAYPAL_USERNAME_SANDBOX'):Configuration::get('PAYPAL_USERNAME_LIVE')); } else { $apiUserName = (Configuration::get('PAYPAL_SANDBOX')?Configuration::get('PAYPAL_USERNAME_SANDBOX2'):Configuration::get('PAYPAL_USERNAME_LIVE2')); } Link to comment Share on other sites More sharing options...
davi7873 Posted July 3, 2019 Author Share Posted July 3, 2019 Muchas gracias por responder Rodrigo B Laurindo El problema es meter dos cuentas. que Paypal mediante su módulo solo te deja iniciar cuenta en una. ¿Crees que con ese cambio podría solicitar dos cuentas? Gracias. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now