Magento 1.9 – Change Product Details in Packing Slip Printing

magento-1.9orderspacking-slip

I need to change the product details of magento packing slip currently they are showing as follows
enter image description here

but I need to display as below to reduce the space taken for one product

enter image description here

Which file should I look for doing this I have looked at

app/code/core/Mage/Sales/Model/Order/Pdf/Shipment.php

and

app/code/core/Mage/Sales/Model/Order/Pdf/Items/Invoice/Default.php

but no luck 🙁

Best Answer

The file that is responsible for this task is:

app/code/core/Mage/Sales/Model/Order/Pdf/Shipment/Packaging.php for simple product.

code/core/Mage/Bundle/Model/Sales/Order/Pdf/Items/Shipment.php for bundle product.

For Items Rendering

app/code/core/Mage/Sales/Model/Order/Pdf/Items/Shipment/Default.php

Related Topic