Page 1 of 1

Printing Packing Slips on Complete Orders

Posted: Mon Oct 20, 2008 10:40 am
by William_firefold
It seems it is impossible to print a packslip from an order that is already marked as complete.
Everything on the page will show, but not the content.
We tested this on FireFold and an almost default installation and it is the case for both.

I believe this thread has the same problem:
viewtopic.php?f=42&t=8553&hilit=slips

Logically, you shouldn't need a packing slip for an order that is already packed, but we defy logic.

Any ideas?

Re: Printing Packing Slips on Complete Orders

Posted: Mon Oct 20, 2008 2:57 pm
by jmestep
What about taking that conditional code off the page? It looks like it only pulls shipments that aren't marked shipped.

Re: Printing Packing Slips on Complete Orders

Posted: Tue Oct 21, 2008 6:30 am
by mazhar
Yes commenting the following line

Code: Select all

if (shipment.ShipDate == System.DateTime.MinValue)
would print the slip. Currently it only add those shipments for printing that doesn't have any valid ShipDate.

Re: Printing Packing Slips on Complete Orders

Posted: Tue Oct 21, 2008 7:29 am
by Robbie@FireFold
mazhar wrote:Yes commenting the following line

Code: Select all

if (shipment.ShipDate == System.DateTime.MinValue)
would print the slip. Currently it only add those shipments for printing that doesn't have any valid ShipDate.
This worked.

Thanks!