/// <summary> /// 根据扩展单编号查询申请单编号。 /// </summary> /// <param name="orderID">扩展单编号。</param> /// <returns>返回申请单编号。</returns> public string GetApplyOrderID(string orderID) { string strRes = string.Empty; try { OaInterfaceDAL dal = new OaInterfaceDAL(); strRes = dal.GetApplyOrderID(orderID); } catch (Exception ex) { Utility.SaveLog(ex.ToString()); } return strRes; }
/// <summary> /// 根据扩展单编号查询申请单编号。 /// </summary> /// <param name="orderID">扩展单编号。</param> /// <returns>返回申请单编号。</returns> public string GetApplyOrderID(string orderID) { string strRes = string.Empty; try { OaInterfaceDAL dal = new OaInterfaceDAL(); strRes = dal.GetApplyOrderID(orderID); } catch (Exception ex) { Utility.SaveLog(ex.ToString()); } return(strRes); }