179 lines
6.5 KiB
C#
179 lines
6.5 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>
|
|
/// 业务类型TypeId
|
|
/// </summary>
|
|
public const string WMS_BIZTYPE_ID = "25043955941909";
|
|
/// <summary>
|
|
/// 预任务生成EnCode
|
|
/// </summary>
|
|
public const string WMS_PRETASK_H_ENCODE = "PreTaskGen";
|
|
/// <summary>
|
|
/// 载具移入生成Encode
|
|
/// </summary>
|
|
public const string WMS_CARRYMOINSTK_ENCODE = "CarryMoInStk";
|
|
/// <summary>
|
|
/// 任务执行ENCODE
|
|
/// </summary>
|
|
public const string WMS_TASK_EXECUTE_ENCODE = "WmsTaskRequest";
|
|
/// <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 = "26126838773285";
|
|
/// <summary>
|
|
/// 预任务单据状态-已完成Id
|
|
/// </summary>
|
|
public const string PRETASK_BILL_STATUS_CANCEL_ID = "26126842129701";
|
|
|
|
//
|
|
/// <summary>
|
|
/// 任务单据状态-待执行Id
|
|
/// </summary>
|
|
public const string TASK_BILL_STATUS_DZX_ID = "26126851525157";
|
|
//
|
|
/// <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 TASK_BILL_STATUS_CANCEL_ID = "26126863175461";
|
|
|
|
/// <summary>
|
|
/// 单据状态-作业中
|
|
/// </summary>
|
|
public const string BILLSTATUS_ON_ID = "25065143245845";
|
|
/// <summary>
|
|
/// 单据状态-完成
|
|
/// </summary>
|
|
public const string BILLSTATUS_COMPLETE_ID = "25065149810453";
|
|
/// <summary>
|
|
/// 单据状态-取消
|
|
/// </summary>
|
|
public const string BILLSTATUS_CANCEL_ID = "25065146252309";
|
|
/// <summary>
|
|
/// 单据状态-新增
|
|
/// </summary>
|
|
public const string BILLSTATUS_ADD_ID = "25065138925589";
|
|
/// <summary>
|
|
/// 单据状态-已呼叫
|
|
/// </summary>
|
|
public const string BILLSTATUS_CALLED_ID = "25065138925589";
|
|
/// <summary>
|
|
/// 单据状态-待配送
|
|
/// </summary>
|
|
public const string BILLSTATUS_TOBESHIPPED_ID = "26169434213669";
|
|
|
|
/// <summary>
|
|
/// 任务类型-入库TypeId
|
|
/// </summary>
|
|
public const string WMS_PRETASK_INSTOCK_TYPE_ID = "26126748597797";
|
|
/// <summary>
|
|
/// 任务类型-出库TypeId
|
|
/// </summary>
|
|
public const string WMS_PRETASK_OUTSTOCK_TYPE_ID = "26126751446821";
|
|
/// <summary>
|
|
/// 任务类型-转移TypeId
|
|
/// </summary>
|
|
public const string WMS_PRETASK_TRANSFER_TYPE_ID = "26126753796389";
|
|
|
|
/// <summary>
|
|
/// 预任务生成业务类型-空载具出库
|
|
/// </summary>
|
|
public const string BIZTYPE_WMSEPTYOUTSTK_ID = "26122265173285";
|
|
/// <summary>
|
|
/// 预任务生成业务类型-载具移出
|
|
/// </summary>
|
|
public const string BIZTYPE_WMSMOOUTSTK_ID = "26122271183141";
|
|
/// <summary>
|
|
/// 预任务生成业务类型-空载具入库
|
|
/// </summary>
|
|
public const string BIZTYPE_WMSEMPTYINSTOCK_ID = "26121986416677";
|
|
/// <summary>
|
|
/// 预任务生成业务类型-载具移入
|
|
/// </summary>
|
|
public const string BIZTYPE_CARRYMOVEINSTOCK_ID = "26121988909861";
|
|
/// <summary>
|
|
/// 预任务生成业务类型-库内转移
|
|
/// </summary>
|
|
public const string BIZTYPE_WMSTRANSFER_ID = "26125644258853";
|
|
/// <summary>
|
|
/// 预任务生成业务类型-齐套分拣
|
|
/// </summary>
|
|
public const string BIZTYPE_WMSSETSORTING_ID = "26186830379045";
|
|
/// <summary>
|
|
/// 预任务生成业务类型-寄存捆包
|
|
/// </summary>
|
|
public const string BIZTYPE_WMSINBALE_ID = "26191517767205";
|
|
/// <summary>
|
|
/// 预任务生成业务类型-一般入库
|
|
/// </summary>
|
|
public const string BIZTYPE_WMSINSTOCK_ID = "26191496816421";
|
|
/// <summary>
|
|
/// 预任务生成业务类型-一般出库
|
|
/// </summary>
|
|
public const string BIZTYPE_WMSOUTSTOCK_ID = "26191522660645";
|
|
/// <summary>
|
|
/// 预任务生成业务类型-齐套入库
|
|
/// </summary>
|
|
public const string BIZTYPE_WMSKITTINGINSTK_ID = "26165655816741";
|
|
/// <summary>
|
|
/// 预任务生成业务类型-齐套出库
|
|
/// </summary>
|
|
public const string BIZTYPE_WMSKITTINGOUTSTK_ID = "26169472620837";
|
|
/// <summary>
|
|
/// 预任务生成业务类型-寄存出库
|
|
/// </summary>
|
|
public const string BIZTYPE_WMSOUTBALE_ID = "26191525396517";
|
|
/// <summary>
|
|
/// 预任务生成业务类型-寄存入库
|
|
/// </summary>
|
|
public const string BIZTYPE_WMSINBALEINSTK_ID = "26501508971285";
|
|
/// <summary>
|
|
/// 预任务生成业务类型-配送申请
|
|
/// </summary>
|
|
public const string BIZTYPE_WMSDELIVERY_ID = "26585291847957";
|
|
|
|
/// <summary>
|
|
/// 条码打印状态-已完成
|
|
/// </summary>
|
|
public const string BARCODE_PRINT_STATUS_COMPLETE_ID = "26191372853541";
|
|
|
|
}
|
|
}
|