|
I can’t get it printed, please someone who knows tell me what is the product attribute to be used in here?
Magento v.1.3.0 (in 1.3.1 it is similar)
Here is the call Mage_Sales_Model_Order_Pdf_Items_Invoice_Default::draw(), line 78
foreach ($this->_parseDescription() as $description){
This is the implementation Mage_Sales_Model_Order_Pdf_Items_Abstract::_parseDescription(), line 229
protected function _parseDescription() { $description = $this->getItem()->getDescription(); if (preg_match_all('/<li.*?>(.*?)<\/li>/i', $description, $matches)) { return $matches[1]; }
return array($description); }
I’ve even tried to fill in the product’s full and brief descriptions with the html-text like this:
<li>test1</li> <li>test2</li> <li>test3</li>
But nothing appeared in the resulting PDF :(
|