maria_skyyield Posted April 28, 2015 Share Posted April 28, 2015 Buenas, soy nueva con Prestashop y tengo algunas dudas sobre como obtener el valor total de los descuentos aplicados y usar dicho valor en el order-confirmation para pasarlo a una variable script de afiliacion. Me podriais ayudar? Gracias Link to comment Share on other sites More sharing options...
Fernando91 Posted April 28, 2015 Share Posted April 28, 2015 descuentos de cupones o descuentos de un precio especifico? Link to comment Share on other sites More sharing options...
maria_skyyield Posted April 28, 2015 Author Share Posted April 28, 2015 Descuento de cupones. Link to comment Share on other sites More sharing options...
Fernando91 Posted April 28, 2015 Share Posted April 28, 2015 Vale puedes hacer un override de la controllador y agregar esto /** * Assign template vars related to page content * @see FrontController::initContent() */ public function initContent() { parent::initContent(); $order = new Order($this->id_order); $this->context->smarty->assign(array( 'is_guest' => $this->context->customer->is_guest, 'HOOK_ORDER_CONFIRMATION' => $this->displayOrderConfirmation(), 'HOOK_PAYMENT_RETURN' => $this->displayPaymentReturn(), 'descuento' => $order->total_discounts )); if ($this->context->customer->is_guest) { $this->context->smarty->assign(array( 'id_order' => $this->id_order, 'reference_order' => $this->reference, 'id_order_formatted' => sprintf('#%06d', $this->id_order), 'email' => $this->context->customer->email, )); /* If guest we clear the cookie for security reason */ $this->context->customer->mylogout(); } $this->setTemplate(_PS_THEME_DIR_.'order-confirmation.tpl'); } y al tpl le pasas la varable descuento. 1 Link to comment Share on other sites More sharing options...
maria_skyyield Posted April 28, 2015 Author Share Posted April 28, 2015 Perfecto!! Funciono. Muchas gracias!!! Link to comment Share on other sites More sharing options...
Fernando91 Posted April 28, 2015 Share Posted April 28, 2015 de nada Link to comment Share on other sites More sharing options...
Recommended Posts