Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Archive shipped orders?


Guest

Recommended Posts

Posted

Is it possible to archive shipped orders so there is not hundreds of pages?

Posted

s where o.orders_status != 4 and o.orders_status = s.orders_status_id

 

!= 4 is the code in orders.php, 4= the orders_status_id for shipped

 

Is it possible to have 2 codes archived?

Posted
s where o.orders_status != 4 and o.orders_status = s.orders_status_id

 

!= 4 is the code in orders.php, 4= the orders_status_id for shipped

 

Is it possible to have 2 codes archived?

 

Figured it

 

add

and o.orders_status != 101 

 

101 = 2nd code archived, in this case refunded

 

so it looks like

 

where o.orders_status != 4 and o.orders_status != 101 and o.orders_status = s.orders_status_id

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...