nancyfs Posted June 21, 2021 Share Posted June 21, 2021 Buenas noches, Contacto con los foros con la intención de ver si alguien me puede orientar con un error al cual no logro localizar la solución. Indicar lo primero de todo que estoy con la versión 1.7.7.0 de Prestashop. Consultando el log de errores me indica lo siguiente: PHP Fatal error: Uncaught Error: Call to undefined method Cart::checkAllProductsAreStillAvailableInThisState() in /public_html/classes/checkout/CheckoutPaymentStep.php:48 Stack trace: #0 /public_html/classes/checkout/CheckoutProcess.php(59): CheckoutPaymentStepCore->handleRequest(Array) #1 /public_html/controllers/front/OrderController.php(278): CheckoutProcessCore->handleRequest(Array) #2 /public_html/classes/controller/Controller.php(306): OrderControllerCore->initContent() #3 /public_html/classes/Dispatcher.php(518): ControllerCore->run() #4 /public_html/index.php(28): DispatcherCore->dispatch() #5 {main} thrown in /public_html/classes/checkout/CheckoutPaymentStep.php on line 48 Los pasos seguidos es añadir un producto a la cesta, ver la cesta e intentar finalizar la compra. Ya he probado desactivando los módulos de prestashop que no son nativos y con el tema visual clásico de prestashop con los mismos resultados. ¿Alguien tienen alguna otra idea que pueda intentar? Gracias. Link to comment Share on other sites More sharing options...
nancyfs Posted June 22, 2021 Author Share Posted June 22, 2021 Por si fuera de utilidad a otros usuarios, la solución ha sido comentar ciertas líneas de código del archivo php: CheckoutPaymentStep.php Classes > Checkout > CheckoutPaymentStep.php public function handleRequest(array $requestParams = []) { $cart = $this->getCheckoutSession()->getCart(); $allProductsInStock = $cart->isAllProductsInStock(); //$allProductsExist = $cart->checkAllProductsAreStillAvailableInThisState(); /*-- Comentar esta línea --*/ //$allProductsHaveMinimalQuantity = $cart->checkAllProductsHaveMinimalQuantities(); /*-- Comentar esta línea --*/ //if ($allProductsInStock !== true || $allProductsExist !== true || $allProductsHaveMinimalQuantity !== true) /*-- Comentar esta línea --*/ if ($allProductsInStock !== true) { $cartShowUrl = $this->context->link->getPageLink( 'cart', null, $this->context->language->id, [ 'action' => 'show', ], false, null, false ); Tools::redirect($cartShowUrl); } if (isset($requestParams['select_payment_option'])) { $this->selected_payment_option = $requestParams['select_payment_option']; } $this->setTitle( $this->getTranslator()->trans( 'Payment', [], 'Shop.Theme.Checkout' ) ); } Con esto, ya procede a la finalización de la compra y a solicitar los datos al usuario. 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