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 ReceiveOrderTypeEnum
{
///
/// 采购接收
///
[Description("采购接收")]
PO = 1,
///
/// 无采购接收
///
[Description("无采购接收")]
NPO = 2,
///
/// 客供料接收
///
[Description("客供料接收")]
CustomerSupply = 3
}
public enum ReceiveOrderStatusEnum
{
///
/// 未开始
///
[Description("未开始")]
NotStarted,
///
/// 收货中
///
[Description("收货中")]
Receiving,
///
/// 收货完成
///
[Description("收货完成")]
Completed
}
}