Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Viewing Pending Orders


Guest

Recommended Posts

Hey all

I noticed that when looking at the list of pending orders you cannot see the order number of each order unless you click the order and it appears on the right where you go to edit and look at invoice etc.

Can someone help with a way to add the Order Number into another column on the Orders Page in the admin section?

Reason I ask is that I use the Credit Card payment module that splits the credit card number (i.e sends you the middle digits to ur admin email, and the remaining digits you look at in the admin area) this allows you to process the payment manually wherever you like.

When you recieve the middle digits in the admin email, it contains the order number. and if you have a large number of orders pending then you need to be able to match the middle digits up to the right order by looking at the order number.

Can still do it by clicking each order and looking at it that way but would be much easier if each order in the list contained its order number straight up.

Hope im making sense. lol

Thanks

Link to comment
Share on other sites

in the admin\orders.php after this

 

<td class="dataTableHeadingContent"><?php echo TABLE_HEADING_CUSTOMERS; ?></td>

 

add

<td class="dataTableHeadingContent" align="center"><?php echo TABLE_HEADING_ORDER_ID; ?></td>

 

further down just before

<td class="dataTableContent" align="right"><?php echo strip_tags($orders['order_total']); ?></td>

 

add this

 

<td class="dataTableContent" align="center"><?php echo $orders['orders_id']; ?></td>

 

and set the strings in the orders language file for the ID.

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...