| | |
| | | public enum TaskTypeEnum |
| | | { |
| | | /// <summary> |
| | | /// 出库 =100 |
| | | /// 领料出库 |
| | | /// </summary> |
| | | [Description("出库")] |
| | | [Description("领料出库")] |
| | | Outbound = 100, |
| | | |
| | | /// <summary> |
| | | /// 盘点出库 |
| | | /// </summary> |
| | | /*[Description("盘点出库")] |
| | | OutInventory = 101, |
| | | [Description("盘点出库")] |
| | | OutInventory = 110, |
| | | |
| | | /// <summary> |
| | | /// 分拣出库 |
| | | /// </summary> |
| | | [Description("分拣出库")] |
| | | OutPick = 102, |
| | | OutPick = 120, |
| | | |
| | | /// <summary> |
| | | /// 质检出库 |
| | | /// </summary> |
| | | [Description("质检出库")] |
| | | OutQuality = 103,*/ |
| | | OutQuality = 130, |
| | | |
| | | /// <summary> |
| | | /// 出空 |
| | | /// 空箱出库 |
| | | /// </summary> |
| | | [Description("出空")] |
| | | PalletOutbound = 104, |
| | | [Description("空箱出库")] |
| | | OutEmpty = 140, |
| | | |
| | | /// <summary> |
| | | /// 补空 |
| | | /// 调拨出库 |
| | | /// </summary> |
| | | /*[Description("补空")] |
| | | PalletFillOutbound = 105,*/ |
| | | [Description("调拨出库")] |
| | | OutAllocate = 150, |
| | | |
| | | /// <summary> |
| | | /// 入库 |
| | | /// 成品出库 |
| | | /// </summary> |
| | | [Description("入库")] |
| | | Inbound = 200, |
| | | [Description("成品出库")] |
| | | OutProduct = 230, |
| | | |
| | | /// <summary> |
| | | /// 成品寄售出库 |
| | | /// </summary> |
| | | [Description("成品寄售出库")] |
| | | OutSendProduct = 240, |
| | | |
| | | /// <summary> |
| | | /// 采购入库 |
| | | /// </summary> |
| | | [Description("采购入库")] |
| | | Inbound = 510, |
| | | |
| | | /// <summary> |
| | | /// 盘点入库 |
| | | /// </summary> |
| | | /*[Description("盘点入库")] |
| | | InInventory = 201, |
| | | [Description("盘点入库")] |
| | | InInventory = 520, |
| | | |
| | | /// <summary> |
| | | /// 分拣入库 |
| | | /// </summary> |
| | | [Description("分拣入库")] |
| | | InPick = 202, |
| | | InPick = 530, |
| | | |
| | | /// <summary> |
| | | /// 质检入库 |
| | | /// </summary> |
| | | [Description("质检入库")] |
| | | InQuality = 203,*/ |
| | | InQuality = 540, |
| | | |
| | | /// <summary> |
| | | /// 入空 |
| | | /// 生产退料 |
| | | /// </summary> |
| | | [Description("入空")] |
| | | PalletInbound = 204, |
| | | [Description("生产退料")] |
| | | ProductionReturn = 550, |
| | | |
| | | /// <summary> |
| | | /// 回空 |
| | | /// 调拨入库 |
| | | /// </summary> |
| | | /*[Description("回空")] |
| | | PalletReturnInbound = 205,*/ |
| | | [Description("调拨入库")] |
| | | InAllocate = 570, |
| | | |
| | | /// <summary> |
| | | /// 移库 |
| | | /// 空箱入库 |
| | | /// </summary> |
| | | [Description("移库")] |
| | | Relocation = 300, |
| | | [Description("空箱入库")] |
| | | InEmpty = 600, |
| | | |
| | | /// <summary> |
| | | /// 库内移库 |
| | | /// 成品入库 |
| | | /// </summary> |
| | | [Description("库内移库")] |
| | | RelocationIn = 301, |
| | | [Description("成品入库")] |
| | | InProduct = 610, |
| | | |
| | | /// <summary> |
| | | /// 库外移库 |
| | | /// 成品余料回库 |
| | | /// </summary> |
| | | /*[Description("库外移库")] |
| | | RelocationOut = 302, |
| | | [Description("成品余料回库")] |
| | | InProductBack = 620, |
| | | /// <summary> |
| | | /// 成品空框回库 |
| | | /// </summary> |
| | | [Description("成品空框回库")] |
| | | EmptyProductBack = 630, |
| | | |
| | | [Description("AGV搬运")] |
| | | AGVCarry = 500,*/ |
| | | /// <summary> |
| | | /// 巷道内移库 |
| | | /// </summary> |
| | | [Description("巷道内移库")] |
| | | Relocation = 900 |
| | | } |
| | | |
| | | #endregion 任务类型 |