Explanation of the various Order Status

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
7 years ago
What are the meanings of the following order statuses? When each of them are used? Can anyone help me with this? I'm totally new to NOP. I didn't find any explanation of them.

public enum OrderStatus : int
    {
    
        Pending = 10,    
        Processing = 20,
        SentToFullfillment = 25,
        Complete = 30,
        Cancelled = 40,
        FullfillmentError = 50,
        ShippingError = 60,
    }
7 years ago
see https://www.nopcommerce.com/boards/t/38428/salesorders-order-status-payment-status.aspx
7 years ago
I looked at link. It has only 2 order status. What about other statuses?
7 years ago
I could not fond anywhere this enum, just curious where exactly this type of OrderStatus is located?
7 years ago
It is located at \Libraries\Nop.Core\Domain\Orders\OrderStatus.cs
7 years ago
[email protected] wrote:
It is located at \Libraries\Nop.Core\Domain\Orders\OrderStatus.cs


Are you sure?

That class file looks like:

7 years ago
My apology.. I inherited the system. I downloaded source code from NoComm website. It is similar to yours. So the system I've was modified from original source code.
7 years ago
It's alright!, glad to know that issue has been resolved :)
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.