Ejemplo n.º 1
0
                    if ($current_state != Configuration::get('PS_OS_PAYMENT')) {
                        $history = new OrderHistory();
                        $history->id_order = (int) $order->id;
                        $history->changeIdOrderState((int) Configuration::get($state), $order->id);
                        $history->addWithemail(true);
                    }
                } else {
                    $current_state = $order->current_state;
                    if ($current_state != Configuration::get('PS_OS_PAYMENT')) {
                        $history = new OrderHistory();
                        $history->id_order = (int) $order->id;
                        $history->changeIdOrderState((int) Configuration::get($state), $order, true);
                        $history->addWithemail(true);
                    }
                }
            } else {
                $customer = new Customer((int) $cart->id_customer);
                Context::getContext()->customer = $customer;
                Context::getContext()->currency = $currency_cart;
                $payulatam->validateOrder((int) $cart->id, (int) Configuration::get($state), (double) $cart->getordertotal(true), 'PayU Latam', null, array(), (int) $currency_cart->id, false, $customer->secure_key);
                Configuration::updateValue('PAYULATAM_CONFIGURATION_OK', true);
                $order = new Order((int) Order::getOrderByCartId($cart->id));
            }
            if ($state != 'PS_OS_PAYMENT') {
                foreach ($order->getProductsDetail() as $product) {
                    StockAvailable::updateQuantity($product['product_id'], $product['product_attribute_id'], +(int) $product['product_quantity'], $order->id_shop);
                }
            }
        }
    }
}
Ejemplo n.º 2
0
 public function initContent()
 {
     parent::initContent();
     $this->context = Context::getContext();
     $payulatam = new PayuLatam();
     if (isset($_REQUEST['signature'])) {
         $signature = $_REQUEST['signature'];
     } else {
         $signature = $_REQUEST['firma'];
     }
     if (isset($_REQUEST['merchantId'])) {
         $merchant_id = $_REQUEST['merchantId'];
     } else {
         $merchant_id = $_REQUEST['usuario_id'];
     }
     if (isset($_REQUEST['referenceCode'])) {
         $reference_code = $_REQUEST['referenceCode'];
     } else {
         $reference_code = $_REQUEST['ref_venta'];
     }
     if (isset($_REQUEST['TX_VALUE'])) {
         $value = $_REQUEST['TX_VALUE'];
     } else {
         $value = $_REQUEST['valor'];
     }
     if (isset($_REQUEST['currency'])) {
         $currency = $_REQUEST['currency'];
     } else {
         $currency = $_REQUEST['moneda'];
     }
     if (isset($_REQUEST['transactionState'])) {
         $transaction_state = $_REQUEST['transactionState'];
     } else {
         $transaction_state = $_REQUEST['estado'];
     }
     $value = number_format($value, 1, '.', '');
     $api_key = Configuration::get('PAYU_LATAM_API_KEY');
     $signature_local = $api_key . '~' . $merchant_id . '~' . $reference_code . '~' . $value . '~' . $currency . '~' . $transaction_state;
     $signature_md5 = md5($signature_local);
     if (isset($_REQUEST['polResponseCode'])) {
         $pol_response_code = $_REQUEST['polResponseCode'];
     } else {
         $pol_response_code = $_REQUEST['codigo_respuesta_pol'];
     }
     $messageApproved = '';
     if ($transaction_state == 6 && $pol_response_code == 5) {
         $estado_tx = $payulatam->l('Failed Transaction');
     } else {
         if ($transaction_state == 6 && $pol_response_code == 4) {
             $estado_tx = $payulatam->l('Rejected Transaction');
         } else {
             if ($transaction_state == 12 && $pol_response_code == 9994) {
                 $estado_tx = $payulatam->l('Pending Transaction, Please check if the debit was made in the Bank');
             } else {
                 if ($transaction_state == 4 && $pol_response_code == 1) {
                     $estado_tx = $payulatam->l('Transaction Approved');
                     $messageApproved = $payulatam->l('Thank you for your purchase!');
                 } else {
                     if (isset($_REQUEST['message'])) {
                         $estado_tx = $_REQUEST['message'];
                     } else {
                         $estado_tx = $_REQUEST['mensaje'];
                     }
                 }
             }
         }
     }
     if (isset($_REQUEST['transactionId'])) {
         $transaction_id = $_REQUEST['transactionId'];
     } else {
         $transaction_id = $_REQUEST['transaccion_id'];
     }
     if (isset($_REQUEST['reference_pol'])) {
         $reference_pol = $_REQUEST['reference_pol'];
     } else {
         $reference_pol = $_REQUEST['ref_pol'];
     }
     if (isset($_REQUEST['pseBank'])) {
         $pse_bank = $_REQUEST['pseBank'];
     } else {
         $pse_bank = $_REQUEST['banco_pse'];
     }
     $cus = $_REQUEST['cus'];
     if (isset($_REQUEST['description'])) {
         $description = $_REQUEST['description'];
     } else {
         $description = $_REQUEST['descripcion'];
     }
     if (isset($_REQUEST['lapPaymentMethod'])) {
         $lap_payment_method = $_REQUEST['lapPaymentMethod'];
     } else {
         $lap_payment_method = $_REQUEST['medio_pago_lap'];
     }
     $cart = new Cart((int) $reference_code);
     if (Tools::strtoupper($signature) == Tools::strtoupper($signature_md5)) {
         if (!$cart->orderExists()) {
             $customer = new Customer((int) $cart->id_customer);
             $this->context->customer = $customer;
             $payulatam->validateOrder((int) $cart->id, Configuration::get('PAYU_OS_PENDING'), (double) $cart->getordertotal(true), 'PayU', null, array(), (int) $cart->id_currency, false, $customer->secure_key);
             Configuration::updateValue('PAYULATAM_CONFIGURATION_OK', true);
         }
         $this->context->smarty->assign(array('estadoTx' => $estado_tx, 'transactionId' => $transaction_id, 'reference_pol' => $reference_pol, 'referenceCode' => $reference_code, 'pseBank' => $pse_bank, 'cus' => $cus, 'value' => $value, 'currency' => $currency, 'description' => $description, 'lapPaymentMethod' => $lap_payment_method, 'messageApproved' => $messageApproved, 'valid' => true, 'css' => '../modules/payulatam/css/'));
     } else {
         $this->context->smarty->assign(array('valid' => false, 'css' => '../modules/payulatam/css/'));
     }
     $this->setTemplate('response.tpl');
 }
Ejemplo n.º 3
0
    $reference_pol = $_REQUEST['ref_pol'];
}
if (isset($_REQUEST['pseBank'])) {
    $pse_bank = $_REQUEST['pseBank'];
} else {
    $pse_bank = $_REQUEST['banco_pse'];
}
$cus = $_REQUEST['cus'];
if (isset($_REQUEST['description'])) {
    $description = $_REQUEST['description'];
} else {
    $description = $_REQUEST['descripcion'];
}
if (isset($_REQUEST['lapPaymentMethod'])) {
    $lap_payment_method = $_REQUEST['lapPaymentMethod'];
} else {
    $lap_payment_method = $_REQUEST['medio_pago_lap'];
}
$cart = new Cart((int) $reference_code);
if (Tools::strtoupper($signature) == Tools::strtoupper($signature_md5)) {
    if (!$cart->orderExists()) {
        $customer = new Customer((int) $cart->id_customer);
        Context::getContext()->customer = $customer;
        $payulatam->validateOrder((int) $cart->id, Configuration::get('PAYU_OS_PENDING'), (double) $cart->getordertotal(true), 'PayU', null, array(), (int) $cart->id_currency, false, $customer->secure_key);
    }
    Context::getContext()->smarty->assign(array('estadoTx' => $estado_tx, 'transactionId' => $transaction_id, 'reference_pol' => $reference_pol, 'referenceCode' => $reference_code, 'pseBank' => $pse_bank, 'cus' => $cus, 'value' => $value, 'currency' => $currency, 'description' => $description, 'lapPaymentMethod' => $lap_payment_method, 'messageApproved' => $messageApproved, 'valid' => true, 'css' => '../modules/payulatam/css/'));
} else {
    Context::getContext()->smarty->assign(array('valid' => false, 'css' => '../modules/payulatam/css/'));
}
Context::getContext()->smarty->display(dirname(__FILE__) . '/../views/templates/front/response.tpl');
include dirname(__FILE__) . '/../../../footer.php';