Invoices to PDF for OpenCart 2.x
note: developed on version 2.3.2, other versions can need some edits - fell free to contribute!
- Requiring installed vQmod because vQmod doesn't support installing via composer itself.
composer require burdapraha/oc_invoice_pdf
composer require sasedev/composer-plugin-filecopier
for files manipulating- Add this code to your composer.json project file, extra section:
"extra": {
"filescopier": [
{
"source": "vendor/burdapraha/oc_invoice_pdf/upload",
"destination": "upload",
"debug": "true"
}
]
}
It will move vQmod xml file to correct folder.
- add constant to your config.php & admin/config.php for storage PDF files:
For example:
define('INVOICES_DIR', DIR_IMAGE . '/invoices');
and fix this folder for reading from web by .htaccess - optionally you can add row to your
.gitignore
file with path to invoice_pdf.xml (example: upload/vqmod/xml/invoice_pdf.xml) - celebrate!
- using dompdf to printing
- inspired by Invoice to PDF
- hawkey for talking about solution