/// <summary> /// 下个流程发送给谁 /// </summary> /// <param name="userInfo">用户</param> /// <param name="id">当前主键</param> /// <param name="sendToUserId">用户主键</param> /// <param name="auditIdea">审核意见</param> /// <returns>数据权限</returns> public int AuditTransmit(BaseUserInfo userInfo, string[] ids, string workFlowCategory, string sendToUserId, string auditIdea) { int result = 0; var parameter = ServiceInfo.Create(userInfo, MethodBase.GetCurrentMethod()); ServiceUtil.ProcessWorkFlowDbWithTransaction(userInfo, parameter, (dbHelper) => { var workFlowCurrentManager = new BaseWorkFlowCurrentManager(dbHelper, userInfo); result = workFlowCurrentManager.AuditTransmit(ids, workFlowCategory, sendToUserId, auditIdea); }); return(result); }
/// <summary> /// 下个流程发送给谁 /// </summary> /// <param name="userInfo">用户</param> /// <param name="id">当前主键</param> /// <param name="sendToUserId">用户主键</param> /// <param name="auditIdea">审核意见</param> /// <returns>数据权限</returns> public int AuditTransmit(BaseUserInfo userInfo, string id, string workFlowCategory, string sendToUserId, string auditIdea) { // 写入调试信息 #if (DEBUG) int milliStart = BaseBusinessLogic.StartDebug(userInfo, MethodBase.GetCurrentMethod()); #endif // 加强安全验证防止未授权匿名调用 #if (!DEBUG) LogOnService.UserIsLogOn(userInfo); #endif int returnValue = 0; using (IDbHelper dbHelper = DbHelperFactory.GetHelper(BaseSystemInfo.WorkFlowDbType)) { try { dbHelper.Open(WorkFlowDbConnection); BaseWorkFlowCurrentManager workFlowCurrentManager = new BaseWorkFlowCurrentManager(dbHelper, userInfo); dbHelper.BeginTransaction(); returnValue = workFlowCurrentManager.AuditTransmit(id, workFlowCategory, sendToUserId, auditIdea); dbHelper.CommitTransaction(); BaseLogManager.Instance.Add(dbHelper, userInfo, this.serviceName, MethodBase.GetCurrentMethod()); } catch (Exception ex) { dbHelper.RollbackTransaction(); BaseExceptionManager.LogException(dbHelper, userInfo, ex); throw ex; } finally { dbHelper.Close(); } } // 写入调试信息 #if (DEBUG) BaseBusinessLogic.EndDebug(MethodBase.GetCurrentMethod(), milliStart); #endif return(returnValue); }