X-Cart: shopping cart software

X-Cart forums (https://forum.x-cart.com/index.php)
-   Dev Questions (X-Cart 5) (https://forum.x-cart.com/forumdisplay.php?f=56)
-   -   X-cart order status (https://forum.x-cart.com/showthread.php?t=72850)

Scott Godin 09-29-2015 09:16 AM

X-cart order status
 
x-cart 4 had only a single column order status, whereas x-cart 5 has two columns : payment and shipping status, that apply to a single order

since our client had had modifications done to the list of statuses in x-cart 4, there is some confusion over which were the original status codes and their descriptions in x-cart 4 :
what we have now is :

Code:

mysql> select status from xcart_orders group by status;
+--------+
| status |
+--------+
| B      |
| C      |
| D      |
| F      |
| H      |
| I      |
| P      |
| Q      |
| R      |
+--------+


which translate to
Code:

<option value="Q">New Order</option>
<option value="H">Order on Hold</option>
<option value="I" selected="selected">Order in Picking</option>
<option value="P">Payment Accepted</option>
<option value="C">Order Has Been Shipped</option>
<option value="F">Payment Declined</option>
<option value="B">Cancelled by Customer</option>
<option value="D">Order Cancelled</option>
<option value="R">Purchase Refunded</option>


what were the original statuses and their descriptions, so I can correctly determine what was added, and what, if anything, was changed ?

Scott Godin 09-29-2015 09:42 AM

Re: X-cart order status
 
https://demostore.x-cart.com/admin/admin.php?target=order_list in particular with regards to the display of same on their (XC4/5) respective Order List pages

razortw 09-29-2015 10:46 AM

Re: X-cart order status
 
Hello, Scott.
What is the version and the package of your client's X-Cart installation?

Scott Godin 09-29-2015 11:01 AM

Re: X-cart order status
 
they appear to be on 4.2.3 but I do not know the full history of which version it started with. I wasn't aware there was a great deal of variation in the 4.x series with regards to this. we're migrating to 5.x as an ongoing process and trying to make sure we (re)implement as many of the clients original changes as we can

Scott Godin 09-30-2015 09:47 AM

Re: X-cart order status
 
anyone?

seyfin 09-30-2015 10:08 PM

Re: X-cart order status
 
For X-Cart v4.2.x, the default order statuses are:

<select name="status">
<option value="I">Not finished</option>
<option value="Q">Queued</option>
<option selected="selected" value="P">Processed</option>
<option value="B">Backordered</option>
<option value="D">Declined</option>
<option value="F">Failed</option>
<option value="C">Complete</option>
</select>

seyfin 09-30-2015 10:12 PM

Re: X-cart order status
 
For the latest X-Cart version, 4.7.3, the default order statuses are the same:

<select onchange="javascript: func_orderstatuses_change_circle(this);" name="status">
<option selected="selected" value="I">Not finished</option>
<option value="Q">Queued</option>
<option value="P">Processed</option>
<option value="D">Declined</option>
<option value="F">Failed</option>
<option value="C">Complete</option>
<option value="B">Backordered</option>
</select>

Scott Godin 10-01-2015 07:38 AM

Re: X-cart order status
 
okay, so it would appear that the verbiage was changed in the old system, for more than just a few of them.

Thank you.

sinobest 11-03-2015 12:11 AM

Re: X-cart order status
 
can we modify order status? add or remove or modify order status? www.loupesusa.com have different order status.

razortw 11-03-2015 03:56 AM

Re: X-cart order status
 
Quote:

Originally Posted by sinobest
can we modify order status? add or remove or modify order status? www.loupesusa.com have different order status.

Hi.
What exactly you need to modify?
If you just want to change titles of statuses, you will need to edit responsible language labels, e.g. lbl_queued.
If you want to add a new status, use the 'Custom order status' feature, it's under that 'Settings' > 'Order statuses' section in the admin backend. However, it is available only for Gold+ and Platinum packages.


All times are GMT -8. The time now is 01:25 AM.

Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.