在 Magento 中如何显示发票号?
In Magento how to show invoice no.?
我想显示发票号。在页面中,插入发票号的代码是什么?对于特定订单并显示特定发票号。有什么办法可以显示。
$order = Mage::getModel('sales/order')->load($orderid);
if ($order->hasInvoices()) { // check if order has invoice
foreach ($order->getInvoiceCollection() as $inv) {
$invIncrementIDs[] = $inv->getIncrementId();
//other invoice details...
}
print_r($invIncrementIDs);
}
我想这可能对你有帮助
我想显示发票号。在页面中,插入发票号的代码是什么?对于特定订单并显示特定发票号。有什么办法可以显示。
$order = Mage::getModel('sales/order')->load($orderid);
if ($order->hasInvoices()) { // check if order has invoice
foreach ($order->getInvoiceCollection() as $inv) {
$invIncrementIDs[] = $inv->getIncrementId();
//other invoice details...
}
print_r($invIncrementIDs);
}
我想这可能对你有帮助