From 2e5714af10b9fd38828b4862c7048b9d87cf31cb Mon Sep 17 00:00:00 2001 From: kthiemann Date: Fri, 27 Jul 2007 10:24:25 +0000 Subject: [PATCH] Bug [ 1746366 ] Some Workflow Actions Are Not Implemented --- base/src/org/compiere/wf/MWFActivity.java | 12 ++++-------- migration/330-trunk/002_BF_1746366.sql | 8 ++++++++ 2 files changed, 12 insertions(+), 8 deletions(-) create mode 100644 migration/330-trunk/002_BF_1746366.sql diff --git a/base/src/org/compiere/wf/MWFActivity.java b/base/src/org/compiere/wf/MWFActivity.java index 81c641f107..129428cef1 100644 --- a/base/src/org/compiere/wf/MWFActivity.java +++ b/base/src/org/compiere/wf/MWFActivity.java @@ -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)) { diff --git a/migration/330-trunk/002_BF_1746366.sql b/migration/330-trunk/002_BF_1746366.sql new file mode 100644 index 0000000000..876b4e9a9d --- /dev/null +++ b/migration/330-trunk/002_BF_1746366.sql @@ -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; \ No newline at end of file