From 9a464977a4af72892c439a48017eb2177949fe88 Mon Sep 17 00:00:00 2001 From: hieplq Date: Sun, 16 Mar 2014 13:51:20 +0700 Subject: [PATCH] IDEMPIERE-1820:node parameter tab (in workfow window) should hidden when not need --- migration/i2.1z/oracle/210509280947_IDEMPIERE-1820.sql | 9 +++++++++ .../i2.1z/postgresql/210509280947_IDEMPIERE-1820.sql | 6 ++++++ 2 files changed, 15 insertions(+) create mode 100644 migration/i2.1z/oracle/210509280947_IDEMPIERE-1820.sql create mode 100644 migration/i2.1z/postgresql/210509280947_IDEMPIERE-1820.sql diff --git a/migration/i2.1z/oracle/210509280947_IDEMPIERE-1820.sql b/migration/i2.1z/oracle/210509280947_IDEMPIERE-1820.sql new file mode 100644 index 0000000000..b730828a9b --- /dev/null +++ b/migration/i2.1z/oracle/210509280947_IDEMPIERE-1820.sql @@ -0,0 +1,9 @@ +SET SQLBLANKLINES ON +SET DEFINE OFF + +-- Mar 16, 2014 1:47:55 PM ICT +-- IDEMPIERE-1820 node parameter tab (in workfow window) should hidden when not need +UPDATE AD_Tab SET DisplayLogic='@Action@=P|@Action@=R',Updated=TO_DATE('2015-09-28 09:48:22','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Tab_ID=577 +; +SELECT register_migration_script('210509280947_IDEMPIERE-1820.sql') FROM dual +; diff --git a/migration/i2.1z/postgresql/210509280947_IDEMPIERE-1820.sql b/migration/i2.1z/postgresql/210509280947_IDEMPIERE-1820.sql new file mode 100644 index 0000000000..36ac28e251 --- /dev/null +++ b/migration/i2.1z/postgresql/210509280947_IDEMPIERE-1820.sql @@ -0,0 +1,6 @@ +-- Mar 16, 2014 1:47:55 PM ICT +-- IDEMPIERE-1820 node parameter tab (in workfow window) should hidden when not need +UPDATE AD_Tab SET DisplayLogic='@Action@=P|@Action@=R',Updated=TO_TIMESTAMP('2015-09-28 09:48:22','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Tab_ID=577 +; +SELECT register_migration_script('210509280947_IDEMPIERE-1820.sql') FROM dual +;