using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WIDESEA_Common.OrderEnum
{
    public enum OutOrderStatusEnum
    {
        /// 
        /// 未开始
        /// 
        [Description("未开始")]
        未开始 = 0,
        /// 
        /// 出库中
        /// 
        [Description("出库中")]
        出库中 = 1,
        /// 
        /// 出库完成
        /// 
        [Description("出库完成")]
        出库完成 = 2,
        /// 
        /// 关闭
        /// 
        [Description("关闭")]
        关闭 = 99,
        /// 
        /// 取消
        /// 
        [Description("取消")]
        取消 = 98
    }
    /// 
    /// 出库单类型
    /// 
    public enum OutOrderTypeEnum
    {
        /// 
        /// 生产返工单
        /// 
        [Description("生产返工单")]
        Rework = 200,
        /// 
        /// 生产发料单
        /// 
        [Description("生产发料单")]
        Issue = 205,
        /// 
        /// 采购退货单
        /// 
        [Description("采购退货单")]
        ProcureReturn = 210,
        /// 
        /// 调拨出库单
        /// 
        [Description("调拨出库单")]
        Allocate = 215,
        /// 
        /// 销售出库单
        /// 
        [Description("销售出库单")]
        SaleOut = 220,
        /// 
        /// 空盘出库单
        /// 
        [Description("空盘出库单")]
        EmptyDisk = 225,
        /// 
        /// 质检出库单
        /// 
        [Description("质检出库单")]
        Quality = 230,
        /// 
        /// 其他出库单
        /// 
        [Description("其他出库单")]
        Other = 235
    }
}