Magento:将客户重定向到第三方支付网站

时间:2012-04-21 17:37:59

标签: php magento checkout

我目前正在Magento中创建我的第一个自定义结帐页面。我有一个有效的代码 - 它会创建一个未付的订单,因此下一步是根据所选的付款方式将客户重定向到第三方付款网站。

经过一些研究后,似乎有一个名为 redirectUrl 的参数,我应该能够以某种方式获得,但我无法弄清楚如何。

如果我错了,请指出我回到正轨!提前谢谢。

<?php
    require_once 'app/Mage.php';

    Mage::app();

    $quote = Mage::getModel('sales/quote')->setStoreId(Mage::app()->getStore('default')->getId());

    // guest order
    $quote->setCustomerEmail('customer@example.com');

    // add sample product
    $product = Mage::getModel('catalog/product')->load(8);
    $buyInfo = array(
            'qty' => 1,
    );
    $quote->addProduct($product, new Varien_Object($buyInfo));

    $addressData = array(
            'firstname' => 'Test',
            'lastname' => 'Test',
            'street' => 'Sample Street 10',
            'city' => 'Somewhere',
            'postcode' => '123456',
            'telephone' => '123456',
            'country_id' => 'SE'
    );

    $billingAddress = $quote->getBillingAddress()->addData($addressData);
    $shippingAddress = $quote->getShippingAddress()->addData($addressData);

    $shippingAddress->setCollectShippingRates(true)->collectShippingRates()->setShippingMethod('flatrate_flatrate')->setPaymentMethod('checkmo');

    $quote->getPayment()->importData(array('method' => 'checkmo'));

    $quote->collectTotals()->save();

    $service = Mage::getModel('sales/service_quote', $quote);
    $service->submitAll();
    $order = $service->getOrder();

    echo 'Created order #' . $order->getIncrementId();
?>

1 个答案:

答案 0 :(得分:1)

在示例代码中,您将Magento类用于独立的PHP文件。这样,Magento重定向将无效,因为它是Mage_Core_Controller_Front_Action的方法。您必须使用Magento控制器来尝试这种重定向方式。

无论如何,您可以使用PHP header函数:header("Location: http://somepayment.com/complexUrl"); die;