From 934dc5ca0324bb4960371aaf498210e94dcec92a Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Tue, 21 Apr 2015 13:26:02 -0500 Subject: [PATCH] IDEMPIERE-2584 Field Sequence items not placed together in Purchase Order --- .../oracle/201504211325_IDEMPIERE-2584.sql | 19 +++++++++++++++++++ .../201504211325_IDEMPIERE-2584.sql | 16 ++++++++++++++++ 2 files changed, 35 insertions(+) create mode 100644 migration/i2.1/oracle/201504211325_IDEMPIERE-2584.sql create mode 100644 migration/i2.1/postgresql/201504211325_IDEMPIERE-2584.sql diff --git a/migration/i2.1/oracle/201504211325_IDEMPIERE-2584.sql b/migration/i2.1/oracle/201504211325_IDEMPIERE-2584.sql new file mode 100644 index 0000000000..414b430863 --- /dev/null +++ b/migration/i2.1/oracle/201504211325_IDEMPIERE-2584.sql @@ -0,0 +1,19 @@ +SET SQLBLANKLINES ON +SET DEFINE OFF + +-- IDEMPIERE-2584 Field Sequence items not placed together in Purchase Order +-- Apr 21, 2015 1:23:36 PM COT +UPDATE AD_Field SET AD_FieldGroup_ID=130,Updated=TO_DATE('2015-04-21 13:23:36','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=55413 +; + +-- Apr 21, 2015 1:23:43 PM COT +UPDATE AD_Field SET AD_FieldGroup_ID=130,Updated=TO_DATE('2015-04-21 13:23:43','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=55414 +; + +-- Apr 21, 2015 1:23:50 PM COT +UPDATE AD_Field SET AD_FieldGroup_ID=130,Updated=TO_DATE('2015-04-21 13:23:50','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=55415 +; + +SELECT register_migration_script('201504211325_IDEMPIERE-2584.sql') FROM dual +; + diff --git a/migration/i2.1/postgresql/201504211325_IDEMPIERE-2584.sql b/migration/i2.1/postgresql/201504211325_IDEMPIERE-2584.sql new file mode 100644 index 0000000000..978edd5d9b --- /dev/null +++ b/migration/i2.1/postgresql/201504211325_IDEMPIERE-2584.sql @@ -0,0 +1,16 @@ +-- IDEMPIERE-2584 Field Sequence items not placed together in Purchase Order +-- Apr 21, 2015 1:23:36 PM COT +UPDATE AD_Field SET AD_FieldGroup_ID=130,Updated=TO_TIMESTAMP('2015-04-21 13:23:36','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=55413 +; + +-- Apr 21, 2015 1:23:43 PM COT +UPDATE AD_Field SET AD_FieldGroup_ID=130,Updated=TO_TIMESTAMP('2015-04-21 13:23:43','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=55414 +; + +-- Apr 21, 2015 1:23:50 PM COT +UPDATE AD_Field SET AD_FieldGroup_ID=130,Updated=TO_TIMESTAMP('2015-04-21 13:23:50','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=55415 +; + +SELECT register_migration_script('201504211325_IDEMPIERE-2584.sql') FROM dual +; +