Magento customize html print order

I am trying to set up an html print order (url http://www.yoursite.com/index.php/sales/order/print/order_id/8/ ), but I can not find the file I need for this.

I am working on template / sales / order / print files, but all changes made are not displayed.

Could you give me a hint?

Thank you so much

Regards

EDIT: ok, i found the file i need to change is print-phtml in app / design / frontend / default / MYTEMPLATE / template / sales / order

Now I would like to add a product description to every line on this html print page, but I do not know how to do this

Exist

<?php $_items = $_order->getItemsCollection(); ?>
<?php $_count = $_items->count(); ?>
<?php foreach ($_items as $_item): ?>
<?php if ($_item->getParentItem()) continue; ?>
<tbody>
    <?php echo $this->getItemHtml($_item) ?>
</tbody>
    <?php endforeach; ?>

so I think I need to change something in $ this-> getItemHtml ($ _ item), but I don’t know where this getItemHtml is

Could you help me? many thanks

+5
1

, , - \sales\order\items\renderer\default.phtml, . , phtml ( ):

<?php if ($this->getPrintStatus()): ?>
....        
<?php endif;?>

.. : "/", " ", "" / "" " ". "", , .

+5

All Articles