I got around your problem by adding a old orders supplier. thus allowing me to send all old orders to this supplier and remove them from the unprocessed order list :)
Printable View
Great idea! I will try that.
Thank you!!
Kelly
That will also work, but once orders are marked shipped they won't show up anymore.
Mine are maked shipped, but they are still showing up until I send them to the "supplier". The only thing is this could take a while. I have almost 600 to do!
Thanks,
Kelly
This mod is setup to work with the standard :
Pending
Processing
Delivered
Update
Each of these is assigned a number by Zen Cart. The standard install has Delivered as 3. So, it excludes 3 from you list. If you've changed your setup, Delivered might no longer be the 3rd option, hence your problem.
If you can figure out what number you are using as shipped, I can find the line of code you'll need to edit to change this. In the future, I'd like to make this admin configurable, but for now, it is not.
Hi,
I have it set up as follows:
Pending (default)
Processing
Delivered
Update
Shipped
Backordered
Unable to process
Cancelled
Picked Up
Thanks!
Kelly
Hmmm.. That would seem to indicate that Delivered is 3. Can you poke around in your database? Go to Cpanel and run phpmyadmin. Then click on the table called "zen_orders_status", then click the "Browse" tab. Under "orders_status_id" what number is defined for Delivered? Once you get that number for me, I'll tell you what you need to change.
BTW -- I just realized that there is a simple way to make this feature admin editable. I will certainly implement this in the next version. But, I'm still not sure whether I will release the next version for free or not.
I've implemented a much better tracking entering system for the next version. It's pretty sweet. When you click on a PO, the tracking page pops up in a greybox (kind of like lightbox, but looks more like a window.) Then, once you enter the tracking, the greybox closes, and the page refreshes so the PO you just entered is no longer there. It's a much better system for entering the tracking from the admin side.
Here is what I have. I kind of remember switching something because I rarely use delivered. To me that indicates the item has already been received by the customer.
I do in home shows and if for some reason I bring the item to a show or drop it off locally that is the only time I would use that.
The updates you have planned sound great! I look forward to it!
4 - Update
3 - Delivered
2 - Processing
1 - Pending
5 - Shipped
6 - Backordered
7 - Unable to process
8 - Cancelled
9 - Picked Up
Thanks,
Kelly
You'll want to find this:
Keep in mind when you search that sometimes I put a space between the s and the ! and the = and the 3, and sometimes I don't, and sometimes I put it on one side. (Sorry...sloppy coding...)Code:o.orders_status != 3
Change the 3 to a 5 everytime you find this.
You'll find this in these files:
admin/send_pos.php
admin/confirm_track.php
That should solve your problem. :)
That worked great!
Thank you!
Kelly