From 5861f8be722c983b6456aa356328abb553f7554f Mon Sep 17 00:00:00 2001 From: Heng Sin Low Date: Wed, 14 Aug 2013 18:12:26 +0800 Subject: [PATCH] IDEMPIERE-1243 It shall not be possible to change Organization on the Order Line. --- .../oracle/201308141244_IDEMPIERE-1243.sql | 27 +++++++++++++++++++ .../201308141244_IDEMPIERE-1243.sql | 27 +++++++++++++++++++ 2 files changed, 54 insertions(+) create mode 100644 migration/i1.0c-release/oracle/201308141244_IDEMPIERE-1243.sql create mode 100644 migration/i1.0c-release/postgresql/201308141244_IDEMPIERE-1243.sql diff --git a/migration/i1.0c-release/oracle/201308141244_IDEMPIERE-1243.sql b/migration/i1.0c-release/oracle/201308141244_IDEMPIERE-1243.sql new file mode 100644 index 0000000000..f803a46bfe --- /dev/null +++ b/migration/i1.0c-release/oracle/201308141244_IDEMPIERE-1243.sql @@ -0,0 +1,27 @@ +-- Aug 14, 2013 12:20:12 PM IST +-- IDEMPIERE-1243 It shall not be possible to change Organization on the Order Line +UPDATE AD_Field SET IsReadOnly='Y',Updated=TO_DATE('2013-08-14 12:20:12','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=2053 +; + +-- Aug 14, 2013 12:22:49 PM IST +-- IDEMPIERE-1243 It shall not be possible to change Organization on the Order Line +UPDATE AD_Column SET AD_Val_Rule_ID=189,Updated=TO_DATE('2013-08-14 12:22:49','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=2223 +; + +-- Aug 14, 2013 12:34:17 PM IST +-- IDEMPIERE-1243 It shall not be possible to change Organization on the Order Line +UPDATE AD_Field SET IsReadOnly='Y',Updated=TO_DATE('2013-08-14 12:34:17','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=3409 +; + +-- Aug 14, 2013 6:06:28 PM MYT +-- IDEMPIERE-1243 It shall not be possible to change Organization on the Order Line +UPDATE AD_Field SET IsReadOnly='Y',Updated=TO_DATE('2013-08-14 18:06:28','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=1129 +; + +-- Aug 14, 2013 6:10:37 PM MYT +-- IDEMPIERE-1243 It shall not be possible to change Organization on the Order Line +UPDATE AD_Field SET IsReadOnly='Y',Updated=TO_DATE('2013-08-14 18:10:37','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=3388 +; + +SELECT register_migration_script('201308141244_IDEMPIERE-1243.sql') FROM dual +; \ No newline at end of file diff --git a/migration/i1.0c-release/postgresql/201308141244_IDEMPIERE-1243.sql b/migration/i1.0c-release/postgresql/201308141244_IDEMPIERE-1243.sql new file mode 100644 index 0000000000..66071ab58f --- /dev/null +++ b/migration/i1.0c-release/postgresql/201308141244_IDEMPIERE-1243.sql @@ -0,0 +1,27 @@ +-- Aug 14, 2013 12:20:12 PM IST +-- IDEMPIERE-1243 It shall not be possible to change Organization on the Order Line +UPDATE AD_Field SET IsReadOnly='Y',Updated=TO_TIMESTAMP('2013-08-14 12:20:12','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=2053 +; + +-- Aug 14, 2013 12:22:49 PM IST +-- IDEMPIERE-1243 It shall not be possible to change Organization on the Order Line +UPDATE AD_Column SET AD_Val_Rule_ID=189,Updated=TO_TIMESTAMP('2013-08-14 12:22:49','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=2223 +; + +-- Aug 14, 2013 12:34:17 PM IST +-- IDEMPIERE-1243 It shall not be possible to change Organization on the Order Line +UPDATE AD_Field SET IsReadOnly='Y',Updated=TO_TIMESTAMP('2013-08-14 12:34:17','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=3409 +; + +-- Aug 14, 2013 6:06:28 PM MYT +-- IDEMPIERE-1243 It shall not be possible to change Organization on the Order Line +UPDATE AD_Field SET IsReadOnly='Y',Updated=TO_TIMESTAMP('2013-08-14 18:06:28','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=1129 +; + +-- Aug 14, 2013 6:10:37 PM MYT +-- IDEMPIERE-1243 It shall not be possible to change Organization on the Order Line +UPDATE AD_Field SET IsReadOnly='Y',Updated=TO_TIMESTAMP('2013-08-14 18:10:37','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=3388 +; + +SELECT register_migration_script('201308141244_IDEMPIERE-1243.sql') FROM dual +; \ No newline at end of file