Bug [ 1746366 ] Some Workflow Actions Are Not Implemented
This commit is contained in:
parent
5537e69a4e
commit
2e5714af10
|
@ -902,12 +902,15 @@ public class MWFActivity extends X_AD_WF_Activity implements Runnable
|
|||
return process.processIt(pi, trx);
|
||||
}
|
||||
|
||||
/****** TODO Start Task ******/
|
||||
/****** Start Task (Probably redundant;
|
||||
same can be achieved by attaching a Workflow node sequentially) ******/
|
||||
/*
|
||||
else if (MWFNode.ACTION_AppsTask.equals(action))
|
||||
{
|
||||
log.warning ("Task:AD_Task_ID=" + m_node.getAD_Task_ID());
|
||||
log.warning("Start Task is not implemented yet");
|
||||
}
|
||||
*/
|
||||
|
||||
/****** EMail ******/
|
||||
else if (MWFNode.ACTION_EMail.equals(action))
|
||||
|
@ -984,13 +987,6 @@ public class MWFActivity extends X_AD_WF_Activity implements Runnable
|
|||
} // approval
|
||||
return false; // wait for user
|
||||
}
|
||||
/****** User Workbench ******/
|
||||
else if (MWFNode.ACTION_UserWorkbench.equals(action))
|
||||
{
|
||||
log.fine("Workbench:?");
|
||||
log.warning("User Workbench is not implemented yet");
|
||||
return false;
|
||||
}
|
||||
/****** User Form ******/
|
||||
else if (MWFNode.ACTION_UserForm.equals(action))
|
||||
{
|
||||
|
|
|
@ -0,0 +1,8 @@
|
|||
DELETE FROM AD_Ref_List
|
||||
WHERE AD_Ref_List_ID=638;
|
||||
|
||||
UPDATE AD_Ref_List
|
||||
SET IsActive='N'
|
||||
WHERE AD_Ref_List_ID IN (634,611);
|
||||
|
||||
COMMIT;
|
Loading…
Reference in New Issue