using ICSSoft.Common; using System; using System.Collections.Generic; using System.Configuration; using System.Data; using System.Data.SqlClient; using System.Linq; using System.Text; using System.Threading.Tasks; using ICSSoft.Entity; using UFSoft.UBF.Util.Context; using System.ServiceModel; using www.ufida.org.EntityData; using UFSoft.UBF.Exceptions1; using UFSoft.UBF.Service; namespace ICSSoft.APIApproveTransferIN { public class ApproveTransferIN { private static log4net.ILog log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); private static string connString = System.Configuration.ConfigurationManager.AppSettings["ERPConnStr"]; private static string ERPDB = System.Configuration.ConfigurationManager.AppSettings["ERPDB"]; /// /// 审核一步式调入单(外部通过API调用) /// /// /// public bool Approve(List infos) { bool ResultFlag = false; UFIDAU9ISVTransferInISVITransferInBatchApproveSRVClient client = new UFIDAU9ISVTransferInISVITransferInBatchApproveSRVClient(); MessageBase[] returnMsg; //上下文信息 object context; //传入 参数 try { if (infos == null || infos.Count == 0) { throw new Exception("传入数据不能为空!"); } string OrgID = ""; string orgsql = @"select ID from Base_Organization where Code='{0}'"; orgsql = string.Format(orgsql, infos[0].WorkPoint); DataTable orgdt = DBHelper.Query(orgsql, connString); if (orgdt.Rows.Count != 0) { OrgID = orgdt.Rows[0]["ID"].ToString(); } else { throw new Exception("传入组织编码错误!"); //给上下文信息赋值 context = CreateContextObj(OrgID); //给传入参数赋值 //服务调用 (client.Endpoint.Binding as BasicHttpBinding).MaxReceivedMessageSize = int.MaxValue; (client.Endpoint.Binding as BasicHttpBinding).MaxBufferSize = int.MaxValue; UFIDAU9CBOPubControllerCommonArchiveDataDTOData[] queryArr = new UFIDAU9CBOPubControllerCommonArchiveDataDTOData[] { }; List queryList = new List(); UFIDAU9CBOPubControllerCommonArchiveDataDTOData q = new UFIDAU9CBOPubControllerCommonArchiveDataDTOData(); foreach (ICSTransferDoc Info in infos) { string DocNo = ""; string sql = @"SELECT DocNO FROM InvDoc_TransferIn a WHERE a.ID='" + Info.ID + "' AND Org='" + OrgID + "'"; DataTable dt = DBHelper.Query(sql, connString); if (dt != null && dt.Rows.Count > 0) { string a = dt.Rows[0][0].ToString(); if (string.IsNullOrWhiteSpace(a)) { throw new Exception("传入单据ID有误,请确认!"); } else { DocNo = a; } } else { throw new Exception("传入单据ID有误,请确认!"); } q.m_iD = long.Parse(Info.ID); q.m_code = DocNo; queryList.Add(q); } queryArr = queryList.ToArray(); returnMsg = client.Do(context, queryArr, infos[0].User, DateTime.Now); if (returnMsg != null && returnMsg.Length > 0) { foreach (var item in returnMsg) { throw new Exception(item.localMessage); } } else { ResultFlag = true; } } } catch (Exception ex) { log.Error(GetExceptionMessage(ex)); throw new Exception(GetExceptionMessage(ex)); } return ResultFlag; } /// /// 审核一步式调入单(接口内部调用,如:创建退料单后调用审核单据) /// /// /// /// public bool Approve(List DocIDList, string OrgCode,string UserCode) { bool ResultFlag = false; UFIDAU9ISVTransferInISVITransferInBatchApproveSRVClient client = new UFIDAU9ISVTransferInISVITransferInBatchApproveSRVClient(); MessageBase[] returnMsg; //上下文信息 object context; //传入 参数 try { if (DocIDList == null || DocIDList.Count == 0) { throw new Exception("传入数据不能为空!"); } string OrgID = ""; string orgsql = @"select ID from Base_Organization where Code='{0}'"; orgsql = string.Format(orgsql, OrgCode); DataTable orgdt = DBHelper.Query(orgsql, connString); if (orgdt.Rows.Count != 0) { OrgID = orgdt.Rows[0]["ID"].ToString(); } else { throw new Exception("传入组织编码错误!"); //给上下文信息赋值 context = CreateContextObj(OrgID); //给传入参数赋值 //服务调用 (client.Endpoint.Binding as BasicHttpBinding).MaxReceivedMessageSize = int.MaxValue; (client.Endpoint.Binding as BasicHttpBinding).MaxBufferSize = int.MaxValue; UFIDAU9CBOPubControllerCommonArchiveDataDTOData[] queryArr = new UFIDAU9CBOPubControllerCommonArchiveDataDTOData[] { }; List queryList = new List(); UFIDAU9CBOPubControllerCommonArchiveDataDTOData q = new UFIDAU9CBOPubControllerCommonArchiveDataDTOData(); foreach (string ID in DocIDList) { string DocNo = ""; string sql = @"SELECT DocNO FROM InvDoc_TransferIn a WHERE a.ID='" + ID + "' AND Org='" + OrgID + "'"; DataTable dt = DBHelper.Query(sql, connString); if (dt != null && dt.Rows.Count > 0) { string a = dt.Rows[0][0].ToString(); if (string.IsNullOrWhiteSpace(a)) { throw new Exception("传入单据ID有误,请确认!"); } else { DocNo = a; } } else { throw new Exception("传入单据ID有误,请确认!"); } q.m_iD = long.Parse(ID); q.m_code = DocNo; queryList.Add(q); } queryArr = queryList.ToArray(); returnMsg = client.Do(context, queryArr, UserCode, DateTime.Now); if (returnMsg != null && returnMsg.Length > 0) { foreach (var item in returnMsg) { throw new Exception(item.localMessage); } } else { ResultFlag = true; } } } catch (Exception ex) { log.Error(GetExceptionMessage(ex)); throw new Exception(GetExceptionMessage(ex)); } return ResultFlag; } #region 给上下文信息赋值 /// /// 给上下文信息赋值 /// /// private static ThreadContext CreateContextObj(string OrgID) { // 实例化应用上下文对象 ThreadContext thContext = new ThreadContext(); System.Collections.Generic.Dictionary ns = new Dictionary(); ns.Add("OrgID", OrgID); ns.Add("UserID", ConfigurationManager.AppSettings["userID"].ToString()); ns.Add("UserCode", ConfigurationManager.AppSettings["userCode"].ToString()); ns.Add("Datetime", DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")); ns.Add("CultureName", ConfigurationManager.AppSettings["cultureName"].ToString()); ns.Add("EnterpriseID", ConfigurationManager.AppSettings["enterpriseID"].ToString()); ns.Add("DefaultCultureName", ConfigurationManager.AppSettings["cultureName"].ToString()); thContext.nameValueHas = ns; return thContext; } #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 } }