开发者

how to get payment information on Magento?

开发者 https://www.devze.com 2023-02-04 08:11 出处:网络
I have to export the orders to a file, here is my code to go through the orders: $orders = Mage::getModel(\'sales/order\')->getCollection()

I have to export the orders to a file, here is my code to go through the orders:

    $orders = Mage::getModel('sales/order')->getCollection()
    ->addAttributeToSelect(array('status', 'ncm'))
    ->addFieldToFilter(
        array(
            array('attribute' => 'status', 'eq' => 'complete')
        )
    );

    $order = $orders->getFirstItem();

    //print_r($order);
    //exit;
    //foreach($orders as $order){
    $id = $order->getIncrementId();

    $payment = $order->getPayment();
    $method = $payment->getMethodInstance();

    print_r($payment);
    //}

I need to print some information about the payment like the method, the amount, how many months it was split, if was credit ca开发者_如何学Pythonrd, i need the reutrning id of the transaction and so the list goes on

how can I do that?


I think it will be

   $payment = $order->getPayment();

It will retrieve the current order payment instance.


//Get Payment
$payment = $order->getPayment()

//Get card type
$payment->getData('cc_type')

//Get Payment Info
$payment->getMethodInstance()->getCode();
$payment->getMethodInstance()->getTitle();

//Get Credit Card info
$payment->getMethodInstance()->getCardsStorage()
$payment->getMethodInstance()->getCardsStorage()->getCards() //array()


To get the method code only it's far safer to use

$order->getPayment()->getMethod();

Skipping instance object which can generate exception if the payment method was uninstalled.

0

精彩评论

暂无评论...
验证码 换一张
取 消