如何从Magento的php获取所有订单和所有发票?

前端之家收集整理的这篇文章主要介绍了如何从Magento的php获取所有订单和所有发票?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何以编程方式从Magento中的PHP访问所有订单和所有发票?
<?PHP
require_once("app/Mage.PHP");
$app = Mage::app('');

$salesModel=Mage::getModel("sales/order");
$salesCollection = $salesModel->getCollection();
foreach($salesCollection as $order)
{
    $orderId= $order->getIncrementId();
    echo $orderId;
}
?>
原文链接:https://www.f2er.com/php/136556.html

猜你在找的PHP相关文章