} // sendAlerts private int SendEmail(MWFActivity activity, String AD_Message, bool toProcess, bool toSupervisor) { if (m_client == null || m_client.GetAD_Client_ID() != activity.GetAD_Client_ID()) { m_client = MClient.Get(GetCtx(), activity.GetAD_Client_ID()); } MWFProcess process = new MWFProcess(GetCtx(), activity.GetAD_WF_Process_ID(), null); String subjectVar = activity.GetNode().GetName(); String message = activity.GetTextMsg(); if (message == null || message.Length == 0) { message = process.GetTextMsg(); } FileInfo pdf = null; PO po = activity.GetPO(); if (po is DocAction) { message = ((DocAction)po).GetDocumentInfo() + "\n" + message; pdf = ((DocAction)po).CreatePDF(); } // Inactivity Alert: Workflow Activity {0} String subject = Msg.GetMsg(m_client.GetAD_Language(), AD_Message, new Object[] { subjectVar }); // Prevent duplicates List <int> list = new List <int>(); int counter = 0; // To Activity Owner if (m_client.SendEMail(activity.GetAD_User_ID(), subject, message, pdf)) { counter++; } list.Add(activity.GetAD_User_ID()); // To Process Owner if (toProcess && process.GetAD_User_ID() != activity.GetAD_User_ID()) { if (m_client.SendEMail(process.GetAD_User_ID(), subject, message, pdf)) { counter++; } list.Add(process.GetAD_User_ID()); } // To Activity Responsible MWFResponsible responsible = MWFResponsible.Get(GetCtx(), activity.GetAD_WF_Responsible_ID()); counter += sendAlertToResponsible(responsible, list, process, subject, message, pdf); // To Process Responsible if (toProcess && process.GetAD_WF_Responsible_ID() != activity.GetAD_WF_Responsible_ID()) { responsible = MWFResponsible.Get(GetCtx(), process.GetAD_WF_Responsible_ID()); counter += sendAlertToResponsible(responsible, list, process, subject, message, pdf); } // Processor SuperVisor if (toSupervisor && m_model.GetSupervisor_ID() != 0 && !list.Contains(m_model.GetSupervisor_ID())) { if (m_client.SendEMail(m_model.GetSupervisor_ID(), subject, message, pdf)) { counter++; } list.Add(m_model.GetSupervisor_ID()); } return(counter); } // sendAlert
/// <summary> /// Start Next Activity /// </summary> /// <param name="last">last activity</param> /// <param name="activities">all activities</param> /// <returns>true if there is a next activity</returns> private bool StartNext(MWFActivity last, MWFActivity[] activities) { log.Config("Last=" + last); // transitions from the last processed node MWFNodeNext[] transitions = GetWorkflow().GetNodeNexts(last.GetAD_WF_Node_ID(), last.GetAD_Client_ID()); if (transitions == null || transitions.Length == 0) { log.Config("none"); return(false); // done } // We need to wait for last activity if (MWFNode.JOINELEMENT_AND.Equals(last.GetNode().GetJoinElement())) { // get previous nodes // check if all have closed activities // return false for all but the last } // eliminate from active processed //last.SetProcessed(true); last.Set_ValueNoCheck("Processed", true); last.Save(); // Start next activity String split = last.GetNode().GetSplitElement(); for (int i = 0; i < transitions.Length; i++) { // Is this a valid transition? if (!transitions[i].IsValidFor(last)) { continue; } // Start new Activity MWFActivity activity = new MWFActivity(this, transitions[i].GetAD_WF_Next_ID()); // new Thread(activity).Start(); //thred = new Thread(new ThreadStart(activity.Run)); //thred.CurrentCulture = Utility.Env.GetLanguage(Utility.Env.GetContext()).GetCulture(Utility.Env.GetLoginLanguage(Utility.Env.GetContext()).GetAD_Language()); //thred.CurrentUICulture = Utility.Env.GetLanguage(Utility.Env.GetContext()).GetCulture(Utility.Env.GetLoginLanguage(Utility.Env.GetContext()).GetAD_Language()); activity.Run(); // thred.Start(); // only the first valid if XOR if (MWFNode.SPLITELEMENT_XOR.Equals(split)) { return(true); } } // for all transitions return(true); }