/// <summary>
 /// 获取用户有哪些未处理的单据
 /// </summary>
 /// <param name="UserID"></param>
 /// <returns></returns>
 public List<SMT.Workflow.Common.Model.FLOW_FLOWRECORDMASTER_T> GetFlowDataByUserID( string UserID)
 {
     try
     {
         FlowBLL Flow = new FlowBLL();
         return Flow.GetFlowDataByUserID( UserID);
     }
     catch (Exception ex)
     {
         Tracer.Debug("GetFlowDataByUserID:" + UserID + " Ex:" + ex.Message);
         throw ex;
     }
 }
Exemple #2
0
 /// <summary>
 /// 获取用户有哪些未处理的单据
 /// </summary>
 /// <param name="UserID"></param>
 /// <returns></returns>
 public List<FLOW_FLOWRECORDMASTER_T> GetFlowDataByUserID(OracleConnection con, string UserID)
 {
     try
     {
         FlowBLL Flow = new FlowBLL();
         return Flow.GetFlowDataByUserID(con, UserID);
     }
     catch (Exception ex)
     {
         LogHelper.WriteLog("GetFlowDataByUserID:" + UserID + " Ex:" + ex.Message);
         throw ex;
     }
 }