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?
Printing Packing Slips on Complete Orders
- William_firefold
- Commander (CMDR)
- Posts: 186
- Joined: Fri Aug 01, 2008 8:38 am
- jmestep
- AbleCommerce Angel
- Posts: 8164
- Joined: Sun Feb 29, 2004 8:04 pm
- Location: Dayton, OH
- Contact:
Re: Printing Packing Slips on Complete Orders
What about taking that conditional code off the page? It looks like it only pulls shipments that aren't marked shipped.
Judy Estep
Web Developer
jestep@web2market.com
http://www.web2market.com
708-653-3100 x209
New search report plugin for business intelligence:
http://www.web2market.com/Search-Report ... -P154.aspx
Web Developer
jestep@web2market.com
http://www.web2market.com
708-653-3100 x209
New search report plugin for business intelligence:
http://www.web2market.com/Search-Report ... -P154.aspx
Re: Printing Packing Slips on Complete Orders
Yes commenting the following line
would print the slip. Currently it only add those shipments for printing that doesn't have any valid ShipDate.
Code: Select all
if (shipment.ShipDate == System.DateTime.MinValue)
-
- Commodore (COMO)
- Posts: 433
- Joined: Wed May 28, 2008 9:42 am
- Location: Concord, NC
- Contact:
Re: Printing Packing Slips on Complete Orders
This worked.mazhar wrote:Yes commenting the following linewould print the slip. Currently it only add those shipments for printing that doesn't have any valid ShipDate.Code: Select all
if (shipment.ShipDate == System.DateTime.MinValue)
Thanks!