1
このコードを使用して注文書の請求書日付をPDFで取得し、"app/code/core/Mage/Sales/Model/Order/Pdf/Abstract .php " しかし、請求書作成日の代わりに現在の日付が表示されています。請求書の作成日を請求書PDFで取得する
$invoice = Mage::getModel('sales/order_invoice')->loadByIncrementId($invoiceIncrementId);
$createdDate = strtotime($invoice->getCreatedAt());
$page->drawText(
Mage::helper('sales')->__('Invoice Creation Date: ') . Mage::helper('core')->formatDate(
$createdDate, 'medium', false
),
35,
($top -= 15),
'UTF-8'
);
返信いただきありがとうございますが、依然として現在の日付が表示されています。スナップショットを確認する:http://prntscr.com/bftf2d –
この 'Mage :: helper( 'core') - > formatDate( $ createdDate、 'medium'、false )の出力をエコーし、 –
を表示しています。この値には現在の日付「2016年6月13日」が表示されています。 –