Admin
5 天以前 bd6818fc9d40f343547bafca0743658f3c0379dc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
using System;
using System.Collections.Generic;
using System.Text;
 
namespace WIDESEA.Common
{
    public enum OrderState
    {
        /// <summary>
        /// WMS读取到本地数据库
        /// </summary>
        WMSReaded = 23,
 
        /// <summary>
        /// WMS待释放(部分完成)
        /// </summary>
        WMSExecuting = 24,
 
        /// <summary>
        /// WMS已完成该订单明细的处理
        /// </summary>
        WMSFinished = 25,
 
 
        /// <summary>
        /// WMS已分配完成,任务执行中或待执行
        /// </summary>
        WMSProgressed = 30,
 
        /// <summary>
        /// 关闭的订单
        /// </summary>
        WMSClosed = 99
    }
}