cancel
Showing results for 
Search instead for 
Did you mean: 

Credit memo display invoice number and created on date

Credit memo display invoice number and created on date

Hello,

 

is there a way to display Invoice Number and the CreatedOn Date on the Creditmemo PDF?

 

Thank you for any help

1 REPLY 1

Re: Credit memo display invoice number and created on date

Got the Date by inserting

 

public function insertDocumentCreditDate(Zend_Pdf_Page $page, $text)
{
$page->setFillColor(new Zend_Pdf_Color_GrayScale(0));
$this->_setFontRegular($page, 10);
$docHeader = $this->getDocHeaderCoordinates();
$page->drawText($text, 35, 547 - 10, 'UTF-8');
}

 

to Abstract.php

 

and then 

 

$this->insertDocumentCreditDate(
$page,
Mage::helper('sales')->__('Created: ') . date( 'd.m.Y', strtotime($creditmemo->getCreatedAt()))
);

 

 to Creditmemo.php