Re: Drop Shipping Purchase Orders Module for v1.3.8
Just put it before the if statement, like this:
Code:
$tmpt[0][7]=strip_tags($tmpt[0][7]);
$tmpt[0][7]=htmlspecialchars_decode($tmpt[0][7],ENT_QUOTES);
if ($countproductsonpo != $countproducts)
$pdf->addNotes(SHIPPING_OPTION.": ".$tmpt[0][7]."\n\n".PO_PARTIALSHIP_PACKINGLIST."\n".$_POST[plistcomments]);
else
$pdf->addNotes(SHIPPING_OPTION.": ".$tmpt[0][7]."\n\n".PO_FULLSHIP_PACKINGLIST."\n".$_POST[plistcomments]);
$pdf->Output(PO_PACKINGLIST_FILENAME, "F");
if ($_POST[reviewthensend] == 'yes') {
?>
Re: Drop Shipping Purchase Orders Module for v1.3.8
Very close - this is what I am getting now:
Shipping Option: (FedEx Home Delivery® ). Any other ideas?
THANKS again for helping me!
-Christopher
Re: Drop Shipping Purchase Orders Module for v1.3.8
htmlspecialchars_decode() only converts the most common HTML special characters: &, ", ', <, and >. But it looks like you've got a rights reserved/trademark symbol.
html_entity_decode() should do the trick for you as it decodes all html special characters.
Just replace "htmlspecialchars_decode" in the code I gave you with "html_entity_decode".
Enjoy!
Re: Drop Shipping Purchase Orders Module for v1.3.8
:clap: YES that nailed it. THANK YOU SO MUCH!! I just love zen cart and the community around it.
Now the output is like this:
SHIPPING METHOD: (FedEx Home DeliveryŽ )
Yeah there is an extra space at the end but I don't think I care about that too much.
Re: Drop Shipping Purchase Orders Module for v1.3.8
Yeah Thanks for that solved it for me to. i had just removed it but got it back on now and it works correct now :bigups:
Re: Drop Shipping Purchase Orders Module for v1.3.8
Great addon! I just can't seem to get the sub notified when using a money order (still in testing so I haven't tried anything else). I have the sub and product linked and the sub email address set to mine (so I will get the email), but it doesn't send the email out to sub. It does send the customer notify and the store manager notify email.
Can anyone help????
Re: Drop Shipping Purchase Orders Module for v1.3.8
Re: Drop Shipping Purchase Orders Module for v1.3.8
Re: Drop Shipping Purchase Orders Module for v1.3.8
Hi excellent module. Just installed it.
Here is couple improvement succestions.
1.
Add shipping fee field for the suplier to input.
Also possibility for store owner to add the actual shipping fee after the package has arrived. These are not usually the same.
Some suppliers agree to pay back the differens of the actual shipping price and payed shipping price. Information would then be in database for later calculation.
2.
Also it would be nice to have comment field where supplier can put any crucial shipping information for the shop owner.
Then display red plag or something on PO order list on each order if unread supplier comments exist.
Better yet red flag of unread comment and green flag on read comment.
Well maybe also comments automatically emailed tostore owner.
Just my thoughts
Re: Drop Shipping Purchase Orders Module for v1.3.8
Well one major missing feature is that I cant store supliers own product id. It send only my stores model ID which does not help supplier at all.