using ICS.WCF.Base;
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Data;
using System.Linq;
using System.ServiceModel;
using System.Text;
using System.Threading.Tasks;
using UFSoft.UBF.Service;
using UFSoft.UBF.Util.Context;
using www.ufida.org.EntityData;
namespace UFIDA.ISV.CreateLotMaster
{
public class CustCreateLotMaster
{
///
/// 创建批号
///
///
///
public OperationResule CustCreateRCVLotMaster(string WHCode, string ItemCode, string LotNo, string OrgID, ref string LotID)
{
//U9.PM.PO.POShipLine.CreatePOShipLineDefault();
#region 服务调用框架结构
//实例化代理类 UFIDAU9ISVItemIBatchCreateItemByDTOSRVClient
UFIDAU9ISVCBOLotICommonCreateLotMasterSRVClient client = new UFIDAU9ISVCBOLotICommonCreateLotMasterSRVClient();
//服务返回结果
UFIDAU9BaseDTOsIDCodeNameDTOData[] returnItems;
//返回异常信息,目前还没有使用此属性
UFSoft.UBF.Exceptions1.MessageBase[] returnMsg;
//上下文信息
object context;
//传入 参数
//;
OperationResule result = new OperationResule();
string[] splitBy = new string[] { };
UFIDAU9ISVCBOLotCreateLotMasterDTOData[] createLotMasterDTOList = new UFIDAU9ISVCBOLotCreateLotMasterDTOData[] { };
List list = new List();
UFIDAU9ISVCBOLotCreateLotMasterDTOData _model = new UFIDAU9ISVCBOLotCreateLotMasterDTOData();
_model.m_lotCode = LotNo;//批号
_model.m_item = new UFIDAU9CBOPubControllerCommonArchiveDataDTOData();
_model.m_item.m_code = ItemCode;//料品
_model.m_usedToOrg = new UFIDAU9CBOPubControllerCommonArchiveDataDTOData();
_model.m_usedToOrg.m_iD = long.Parse(OrgID);
//_model.m_lotDisabledTime = Convert.ToDateTime("9999.12.31");
list.Add(_model);
createLotMasterDTOList = list.ToArray();
try
{
//给上下文信息赋值
context = CreateContextObj(OrgID);
//给传入参数赋值
//pOList = SetrCVDtos( rCVInfoList);
//服务调用
(client.Endpoint.Binding as BasicHttpBinding).MaxReceivedMessageSize = int.MaxValue;
(client.Endpoint.Binding as BasicHttpBinding).MaxBufferSize = int.MaxValue;
returnItems = client.Do(out returnMsg, context, createLotMasterDTOList);
foreach (var item in returnItems)
{
long id = item.m_iD;
string sql = @"SELECT lotcode from Lot_LotMaster WHERE ID={0}";
sql = string.Format(sql, id);
DataTable _dtlotcode = DBhlper.Query(sql, Appconfig.GetU9ConnStr());
string lotcode = string.Empty;
if (_dtlotcode != null && _dtlotcode.Rows.Count > 0)
{
lotcode = _dtlotcode.Rows[0][0].ToString();
}
result.DocNo = lotcode;
result.IsSuccess = true;
LotID = id.ToString();
result.Message = "创建库存批号成功";
}
return result;
}
catch (Exception ex)
{
//异常信息捕获
string Message = GetExceptionMessage(ex);
result.DocNo = "";
result.IsSuccess = false;
result.Message = Message;
return result;
}
#endregion
}
///
/// 创建批号(创建时间修改)
///
///
///
public OperationResule CustCreateRCVLotMaster(string WHCode, string ItemCode, string LotNo, DateTime CreateTime, string OrgID, ref string LotID)
{
//U9.PM.PO.POShipLine.CreatePOShipLineDefault();
#region 服务调用框架结构
//实例化代理类 UFIDAU9ISVItemIBatchCreateItemByDTOSRVClient
UFIDAU9ISVCBOLotICommonCreateLotMasterSRVClient client = new UFIDAU9ISVCBOLotICommonCreateLotMasterSRVClient();
//服务返回结果
UFIDAU9BaseDTOsIDCodeNameDTOData[] returnItems;
//返回异常信息,目前还没有使用此属性
UFSoft.UBF.Exceptions1.MessageBase[] returnMsg;
//上下文信息
object context;
//传入 参数
//;
OperationResule result = new OperationResule();
string[] splitBy = new string[] { };
UFIDAU9ISVCBOLotCreateLotMasterDTOData[] createLotMasterDTOList = new UFIDAU9ISVCBOLotCreateLotMasterDTOData[] { };
List list = new List();
UFIDAU9ISVCBOLotCreateLotMasterDTOData _model = new UFIDAU9ISVCBOLotCreateLotMasterDTOData();
_model.m_lotCode = LotNo;//批号
_model.m_item = new UFIDAU9CBOPubControllerCommonArchiveDataDTOData();
_model.m_item.m_code = ItemCode;//料品
_model.m_usedToOrg = new UFIDAU9CBOPubControllerCommonArchiveDataDTOData();
_model.m_usedToOrg.m_iD = long.Parse(OrgID);
//_model.m_lotDisabledTime = Convert.ToDateTime("9999.12.31");
list.Add(_model);
createLotMasterDTOList = list.ToArray();
try
{
//给上下文信息赋值
context = CreateContextObj(OrgID);
//给传入参数赋值
//pOList = SetrCVDtos( rCVInfoList);
//服务调用
(client.Endpoint.Binding as BasicHttpBinding).MaxReceivedMessageSize = int.MaxValue;
(client.Endpoint.Binding as BasicHttpBinding).MaxBufferSize = int.MaxValue;
returnItems = client.Do(out returnMsg, context, createLotMasterDTOList);
foreach (var item in returnItems)
{
long id = item.m_iD;
string sql = @"SELECT lotcode from Lot_LotMaster WHERE ID={0}";
sql = string.Format(sql, id);
DataTable _dtlotcode = DBhlper.Query(sql, Appconfig.GetU9ConnStr());
string lotcode = _dtlotcode.Rows[0][0].ToString();
//if (_dtlotcode != null && _dtlotcode.Rows.Count > 0)
//{
// lotcode = _dtlotcode.Rows[0][0].ToString();
// sql = @"Update Lot_LotMaster set CreatedOn='{0}'
// Where ID='{1}'";
// sql = string.Format(sql, CreateTime, id);
// DBhlper.EXecute(sql, Appconfig.GetU9ConnStr());
//}
result.DocNo = lotcode;
result.IsSuccess = true;
LotID = id.ToString();
result.Message = "创建库存批号成功";
}
return result;
}
catch (Exception ex)
{
//异常信息捕获
string Message = GetExceptionMessage(ex);
result.DocNo = "";
result.IsSuccess = false;
result.Message = Message;
return result;
}
#endregion
}
#region 提取异常信息
///
/// 提取异常信息
///
///
private string GetExceptionMessage(Exception ex)
{
string faultMessage = "未知错误,请查看ERP日志!";
System.TimeoutException timeoutEx = ex as System.TimeoutException;
if (timeoutEx != null)
{
faultMessage = "访问服务超时,请修改配置信息!";
}
else
{
FaultException faultEx = ex as FaultException;
if (faultEx == null)
{
faultMessage = ex.Message;
}
else
{
ServiceException serviceEx = faultEx.Detail;
if (serviceEx != null && !string.IsNullOrEmpty(serviceEx.Message)
&& !serviceEx.Message.Equals("fault", StringComparison.OrdinalIgnoreCase))
{
// 错误信息在faultEx.Message中,请提取,
// 格式为"Fault:料品不能为空,请录入\n 在....."
int startIndex = serviceEx.Message.IndexOf(":");
int endIndex = serviceEx.Message.IndexOf("\n");
if (endIndex == -1)
endIndex = serviceEx.Message.Length;
if (endIndex > 0 && endIndex > startIndex + 1)
{
faultMessage = serviceEx.Message.Substring(startIndex + 1, endIndex - startIndex - 1);
}
else
{
faultMessage = serviceEx.Message;
}
}
}
}
return faultMessage;
}
#endregion
#region 给上下文信息赋值
///
/// 给上下文信息赋值
///
///
private ThreadContext CreateContextObj(string OrgID)
{
// 实例化应用上下文对象
ThreadContext thContext = new ThreadContext();
System.Collections.Generic.Dictionary