WYB
2021-03-22 91b8cdad021ab052e4991f3d41834a6f0ddc36b8
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
using JiepeiWMS.Common.Helper;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace JiepeiWMS.Common.Enums
{
    /// <summary>
    /// 采购状态枚举
    /// </summary>
    public enum EnumWMPurchaseStatus
    {
        /// <summary>
        /// 采购作废
        /// </summary>
        [Description("采购作废")]
        Cancellation = -1,
 
        /// <summary>
        /// 待审核
        /// </summary>
        [Description("待审核")]
        WaitCheck = 0,
 
        /// <summary>
        /// 审核中
        /// </summary>
        [Description("审核中")]
        Checking = 10,
 
        /// <summary>
        /// 审核不通过
        /// </summary>
        [Description("审核不通过")]
        CheckedNoPass = 20,
 
        /// <summary>
        /// 审核通过
        /// </summary>
        [Description("审核通过")]
        CheckedPass = 30,
 
        /// <summary>
        /// 报价中
        /// </summary>
        [Description("报价中")]
        Quoteing = 40,
 
        /// <summary>
        /// 待下单
        /// </summary>
        [Description("待下单")]
        ToPlaceOrder = 50,
 
        /// <summary>
        /// 请款审核中
        /// </summary>
        [Description("请款审核中")]
        PayChecking = 55,
 
        /// <summary>
        /// 采购中
        /// </summary>
        [Description("采购中")]
        Purchasing = 60,
 
        /// <summary>
        /// 入库中
        /// </summary>
        [Description("入库中")]
        Storageing = 70,
 
        /// <summary>
        /// 交易成功
        /// </summary>
        [Description("交易成功")]
        Finish = 100
    }
}