using JiepeiWMS.Common.Helper;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;
namespace JiepeiWMS.Common.Enums
{
///
/// 采购日志类型
///
[Description("采购日志类型")]
public enum EnumWMPurchaseLogType
{
///
/// 1
///
[Description("1")]
InsidePurchase = 1,
///
/// 2
///
[Description("2")]
OuterPurchase = 2,
///
/// 创建报价
///
[Description("创建报价")]
AddQuote = 20,
///
/// 报价中
///
[Description("报价中")]
Quoteing = 30,
///
/// 报价中
///
[Description("报价不通过")]
NoQuoteing = 31,
///
/// 请款中
///
[Description("请款中")]
PayChecking = 40,
///
/// 入库
///
[Description("入库")]
Enter = 90,
///
/// 完成
///
[Description("完成")]
Finish = 100,
}
}