81 lines
2.8 KiB
C#
81 lines
2.8 KiB
C#
using System;
|
|
using System.CodeDom;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Org.BouncyCastle.Asn1.Mozilla;
|
|
|
|
namespace Tnb.WarehouseMgr.Entities.Consts
|
|
{
|
|
public class WmsWareHouseConst
|
|
{
|
|
/// <summary>
|
|
/// 出入库单据状态TypeID
|
|
/// </summary>
|
|
public const string WMS_INSTOCK_D_BILL_STATUS_TYPEID = "25065133038101";
|
|
/// <summary>
|
|
/// 预任务生成EnCode
|
|
/// </summary>
|
|
public const string WMS_PRETASK_H_ENCODE = "PreTaskGen";
|
|
/// <summary>
|
|
/// 预任务单据状态-待下发Id
|
|
/// </summary>
|
|
public const string PRETASK_BILL_STATUS_DXF_ID = "26126822610469";
|
|
/// <summary>
|
|
/// 预任务单据状态-已下发Id
|
|
/// </summary>
|
|
public const string PRETASK_BILL_STATUS_YXF_ID = "26126830290469";
|
|
/// <summary>
|
|
/// 预任务单据状态-已开始Id
|
|
/// </summary>
|
|
public const string PRETASK_BILL_STATUS_START_ID = "26126834032677";
|
|
/// <summary>
|
|
/// 预任务单据状态-已完成Id
|
|
/// </summary>
|
|
public const string PRETASK_BILL_STATUS_COMPLE_ID = "26126860808229";
|
|
//
|
|
/// <summary>
|
|
/// 任务单据状态-已下达Id
|
|
/// </summary>
|
|
public const string TASK_BILL_STATUS_YXD_ID = "26126853976101";
|
|
/// <summary>
|
|
/// 任务单据状态-执行中Id
|
|
/// </summary>
|
|
public const string TASK_BILL_STATUS_RUNING_ID = "26126856028453";
|
|
/// <summary>
|
|
/// 任务单据状态-已完成ID
|
|
/// </summary>
|
|
public const string TASK_BILL_STATUS_COMPLE_ID = "26126860808229";
|
|
/// <summary>
|
|
/// 预任务生成业务类型-载具移入Id
|
|
/// </summary>
|
|
public const string BIZTYPE_MOVEIN_ID = "26121988909861";
|
|
/// <summary>
|
|
/// 单据状态-作业中
|
|
/// </summary>
|
|
public const string BILLSTATUS_ON_ID = "25065143245845";
|
|
/// <summary>
|
|
/// 预任务类型-入库TypeId
|
|
/// </summary>
|
|
public const string WMS_PRETASK_INSTOCK_TYPE_ID = "26126748597797";
|
|
/// <summary>
|
|
/// 预任务生成业务类型-空载具入库ID
|
|
/// </summary>
|
|
public const string BIZTYPE_EMPTYIN_ID = "26120915344165";
|
|
/// <summary>
|
|
/// 预任务生成业务类型-空载具出库ID
|
|
/// </summary>
|
|
public const string BIZTYPE_EMPTYOUT_ID = "26122798979365";
|
|
/// <summary>
|
|
/// 预任务生成业务类型-PDA空载具入库ID
|
|
/// </summary>
|
|
public const string BIZTYPE_EMPTYINPDA_ID = "26475795363877";
|
|
/// <summary>
|
|
/// 预任务生成业务类型-PDA空载具出库ID
|
|
/// </summary>
|
|
public const string BIZTYPE_EMPTYOUTPDA_ID = "26475845405733";
|
|
|
|
}
|
|
}
|