I need to edit the pdf creditmemo generated from backend with the print button. I don't find the template. What is the path?
2 Answers
Magento credit Memo pdf is generate from class Mage_Sales_Model_Order_Pdf_Creditmemo.
it is use magento zend pdf for created pdf.
If you want to something then you need do code at
Mage_Sales_Model_Order_Pdf_Creditmemo Mage_Sales_Model_Order_Pdf_Items_Creditmemo_Default Mage_Sales_Model_Order_Pdf_Items_Creditmemo_Group Default magento create pdf for credit memo from below file, if you wants to make change then you need to override that file with some of your custom extension, because if you upgrade magento then your changes will be oveeride with new version,
vendor/magento/module-sales/Model/Order/Pdf/Creditmemo.php
Hope this will help,
- This is M2 path, not M1PY Yick– PY Yick2018-01-18 10:30:37 +00:00Commented Jan 18, 2018 at 10:30