2marco, we had this fixed. I looked around in the files as best I could and found the following.
in admin/includes/modules/pdfoc/templates/Packing-Slip.php
I compared an old backup to the more recent file and found the following change. Not sure if this is it but I hope it helps. It's the only change I found in the module.
old:new:Code:$prod_str = $order->products[$i]['qty'] . " x " . $order->products[$i]['name'];Code:$prod_str = $order->products[$i]['qty'] . " x " . html_entity_decode($order->products[$i]['name'], ENT_QUOTES);
thank you very much, I did made the changes to both the Packing-Slip.php as also for the invoice.php. But that is only for the product names offcourse. Maybe I had to clarify a little bit more, but the problem is also in the shipping and invoice adresses. I assume the html_entity_decode , ENT_QUOTES); should be implemented in this section also, but if someone could give me a hint, or the exact codes would be very nice.
Then also another question did came up: I have implemented the VAT-Mod BETA UNOFFICIAL for Zen Cart v. 1.3.9h, (works fine) But i need to show the VAT number of the customer on the invoice. I have tried a little bit, (as far as I could) and added the following line:
The ENTRY_TVA_INTRACOM is shown correctly in bold text, but the "billing_tva_intracom" which is available and filled in the database isn't. I assume it is a small mistake, and hopefully someone is willing to guid me in the right direction.Code:$pos = $pdf->ezText("<b>" . ENTRY_TVA_INTRACOM . "</b> " . $order->info['billing_tva_intracom'],PDFOC_GENERAL_FONT_SIZE);
Hello..anyone successfully make this work with 1.5.5?
Working on an update right now. You can download a development version here from GitHub .
It is for Zen Cart 1.5.6, but it should also work on 1.5.5
Php minimal version is 5.6
!! This is not for a live cart, just for testing. !!