[ 1949324 ] Can't trigger workflow before commit
This commit is contained in:
parent
9e5979268e
commit
1315cc4757
|
@ -249,9 +249,10 @@ public final class ProcessUtil {
|
|||
MWorkflow wf = MWorkflow.get (ctx, AD_Workflow_ID);
|
||||
MWFProcess wfProcess = null;
|
||||
if (pi.isBatch())
|
||||
wfProcess = wf.start(pi, null); // may return null
|
||||
else
|
||||
wfProcess = wf.start(pi, pi.getTransactionName()); // may return null
|
||||
else {
|
||||
wfProcess = wf.startWait(pi); // may return null
|
||||
}
|
||||
log.fine(pi.toString());
|
||||
return wfProcess;
|
||||
}
|
||||
|
|
|
@ -371,7 +371,7 @@ public class MWFActivity extends X_AD_WF_Activity implements Runnable
|
|||
*/
|
||||
public PO getPO()
|
||||
{
|
||||
return getPO(null);
|
||||
return getPO(get_TrxName() != null ? Trx.get(get_TrxName(), false) : null);
|
||||
} // getPO
|
||||
|
||||
/**
|
||||
|
@ -381,7 +381,7 @@ public class MWFActivity extends X_AD_WF_Activity implements Runnable
|
|||
public int getPO_AD_Client_ID()
|
||||
{
|
||||
if (m_po == null)
|
||||
getPO(null);
|
||||
getPO(get_TrxName() != null ? Trx.get(get_TrxName(), false) : null);
|
||||
if (m_po != null)
|
||||
return m_po.getAD_Client_ID();
|
||||
return 0;
|
||||
|
|
|
@ -710,7 +710,7 @@ public class MWorkflow extends X_AD_Workflow
|
|||
final int SLEEP = 500; // 1/2 sec
|
||||
final int MAXLOOPS = 30; // 15 sec
|
||||
//
|
||||
MWFProcess process = start(pi, null);
|
||||
MWFProcess process = start(pi, pi.getTransactionName());
|
||||
if (process == null)
|
||||
return null;
|
||||
Thread.yield();
|
||||
|
|
|
@ -571,6 +571,8 @@ public class ProcessCtl implements Runnable
|
|||
// Run locally
|
||||
if (!started && !m_IsServerProcess)
|
||||
{
|
||||
if (m_trx != null)
|
||||
m_pi.setTransactionName(m_trx.getTrxName());
|
||||
MWFProcess wfProcess = ProcessUtil.startWorkFlow(Env.getCtx(), m_pi, AD_Workflow_ID);
|
||||
started = wfProcess != null;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue