using System;
using System.Collections.Generic;
using System.Xml.Serialization;
namespace RGD.MdsAPI.WMS
{
public class getFreeLocNum : PlatformBase
{
/// 入参定义
/// 入参定义
///
[Serializable]
public class PARA : Base.InPara
{
private string _wh_id;
//private string _oper_no;
public string WH_ID
{
get { return this._wh_id; }
set { this._wh_id = value; }
}
//public string OPER_NO
//{
// get { return this._oper_no; }
// set { this._oper_no = value; }
//}
}
/// 出参定义
/// 出参定义
///
[Serializable]
public class DATA : Base.OutPara
{
private List _lane_list;
///
/// 任务号
///
[XmlArrayItem(ElementName = "LANE_LIST")]
public List LANE_LIST
{
get { return this._lane_list; }
set { this._lane_list = value; }
}
}
/// 入参实体
/// 入参实体
///
private PARA _inPara;
/// 出参实体
/// 出参实体
///
private DATA _outPara;
public getFreeLocNum()
{
this._inPara = new PARA();
}
/// 通知
/// 通知
///
/// 任务单号
/// 任务状态
/// 返回结果
///
public bool Notify(out string sResult)
{
bool bResult = true;
sResult = string.Empty;
string sXmlOut = string.Empty;
try
{
this._inPara.WH_ID = GetWarehouseIndex();
//this._inPara.OPER_NO = GetOperNo();
string sXmlIn = this.Serializer(this._inPara);
bResult = this.getFreeLocNum(sXmlIn, out sXmlOut);
//调用服务成功
if (bResult)
{
this._outPara = this.DeSerialize(sXmlOut);
bResult = this._outPara.RESULT_FLAG.Equals(Enum.RESULT_FLAG.Success.ToString("d"));
sResult = sXmlOut;
}
return bResult;
}
catch (Exception ex)
{
bResult = false;
sResult = string.Format(ex.Message);
}
return bResult;
}
}
}