You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
136 lines
3.7 KiB
136 lines
3.7 KiB
using System.ComponentModel;
|
|
using Newtonsoft.Json;
|
|
using Newtonsoft.Json.Converters;
|
|
|
|
namespace ChangKeTec.Wms.Models.Enums
|
|
{
|
|
[JsonConverter(typeof(StringEnumConverter))]
|
|
|
|
public enum EnumBillType
|
|
{
|
|
[Description("原料收货")]
|
|
MaterialReceive=101,
|
|
[Description("原料入库")]
|
|
MaterialIn = 102,
|
|
[Description("原料出库")]
|
|
MaterialDeliver=103,
|
|
[Description("生产叫料")]
|
|
MaterialAsk=104,
|
|
[Description("原料退货")]
|
|
MatertialReturn = 105,
|
|
[Description("生产退库")]
|
|
MaterialBack = 106,
|
|
|
|
|
|
[Description("委外出库")]
|
|
OutsourceDeliver = 109,
|
|
|
|
// [Description("原料退货")]
|
|
// MaterialBack = 105,
|
|
// [Description("生产退库")]
|
|
// MaterialReturn = 106,
|
|
[Description("成品按器具收货")]
|
|
ProductReceiveByEqpt = 230,
|
|
[Description("成品负收货")]
|
|
ProductRecycle = 200,
|
|
[Description("成品收货")]
|
|
ProductReceive = 201,
|
|
[Description("成品入库")]
|
|
ProductIn=202,
|
|
[Description("发运计划")]
|
|
DeliverPlan = 203,
|
|
[Description("发运申请")]
|
|
DeliverAsk = 204,
|
|
[Description("客户退货")]
|
|
ProductReturn = 205,
|
|
[Description("成品顺序发货")]
|
|
ProductSortedDeliver = 206,
|
|
[Description("成品校验发货")]
|
|
ProductBatchDeliver = 216,
|
|
[Description("成品发货")]
|
|
ProductDeliver = 210,
|
|
|
|
[Description("成品销售")]
|
|
ProductSell = 207,
|
|
[Description("成品返修")]
|
|
ProductRepair = 208,
|
|
|
|
[Description("委外入库")]
|
|
OutsourceReceive = 209,
|
|
|
|
[Description("发往中转库")]
|
|
SendToTransit = 220,
|
|
|
|
[Description("中转库接收")]
|
|
TransitReceive = 221,
|
|
[Description("中转库发出")]
|
|
TransitSendOut = 222,
|
|
|
|
[Description("中转库退回")]
|
|
TransitReject = 223,
|
|
[Description("接收中转库退货")]
|
|
TransitRejectReceive = 224,
|
|
|
|
[Description("其它入库")]
|
|
OtherIn = 300,
|
|
[Description("其它出库")]
|
|
OtherOut = 301,
|
|
[Description("移库")]
|
|
StockMove = 302,
|
|
[Description("打包")]
|
|
StockPack = 303,
|
|
[Description("拆包")]
|
|
StockUnpack = 304,
|
|
[Description("盘点")]
|
|
CheckPlan = 305,
|
|
[Description("盘点库位")]
|
|
CheckLoc = 306,
|
|
[Description("结算比对")]
|
|
BalanceCompare = 307,
|
|
[Description("标签盘点")]
|
|
TagCheck = 308,
|
|
|
|
[Description("器具初始化")]
|
|
EqptRecover = 401,
|
|
[Description("器具保养")]
|
|
EqptMaintain = 402,
|
|
[Description("器具报废")]
|
|
EqptScrap = 403,
|
|
[Description("码托")]
|
|
EqptLoad = 404,
|
|
|
|
[Description("JIS收货")]
|
|
VinReceive = 501,
|
|
[Description("JIS发货")]
|
|
VinDeliver = 502,
|
|
[Description("JIS销售")]
|
|
VinSell = 503,
|
|
|
|
[Description("报检")]
|
|
Inspect =601,
|
|
[Description("追溯")]
|
|
TraceBack = 602,
|
|
[Description("备货单")]
|
|
PickPlan = 603,
|
|
[Description("发料单")]
|
|
PickFact = 604,
|
|
[Description("生产计划")]
|
|
ProducePlan = 605,
|
|
[Description("委外计划")]
|
|
OutsourcePlan = 606,
|
|
|
|
ReHandleVin = 701,
|
|
[Description("采购订单")]
|
|
PuchaseOrder = 702,
|
|
[Description("发货单")]
|
|
AsnOrder = 703,
|
|
[Description("销售订单")]
|
|
SaleOrder = 704,
|
|
|
|
[Description("机台绑定料筒")]
|
|
TankUpdate = 902,
|
|
MachineUpdate = 901,
|
|
|
|
None = 0,
|
|
}
|
|
}
|