From 701fe7ccfe4fb83c7c0fb35911f91bb2682231c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Pe=C3=B1uela?= Date: Sat, 13 Apr 2013 10:43:57 -0500 Subject: [PATCH] IDEMPIERE-794 Ticket #1001025 - Expand the views to provide more information / Fix Shipment Details --- .../oracle/201304111600_IDEMPIERE-794.sql | 12 ++++++++++++ .../postgresql/201304111600_IDEMPIERE-794.sql | 11 +++++++++++ 2 files changed, 23 insertions(+) create mode 100644 migration/i1.0a-release/oracle/201304111600_IDEMPIERE-794.sql create mode 100644 migration/i1.0a-release/postgresql/201304111600_IDEMPIERE-794.sql diff --git a/migration/i1.0a-release/oracle/201304111600_IDEMPIERE-794.sql b/migration/i1.0a-release/oracle/201304111600_IDEMPIERE-794.sql new file mode 100644 index 0000000000..13b8e300dc --- /dev/null +++ b/migration/i1.0a-release/oracle/201304111600_IDEMPIERE-794.sql @@ -0,0 +1,12 @@ +-- Apr 11, 2013 3:57:16 PM COT +UPDATE AD_ReportView SET WhereClause='RV_InOutDetails.IsSOTrx=''N''',Updated=TO_DATE('2013-04-11 15:57:16','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_ReportView_ID=152 +; + +-- Apr 11, 2013 3:57:24 PM COT +UPDATE AD_ReportView SET WhereClause='RV_InOutDetails.IsSOTrx=''Y''',Updated=TO_DATE('2013-04-11 15:57:24','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_ReportView_ID=151 +; + +SELECT register_migration_script('201304111600_IDEMPIERE-794.sql') FROM dual +; + + diff --git a/migration/i1.0a-release/postgresql/201304111600_IDEMPIERE-794.sql b/migration/i1.0a-release/postgresql/201304111600_IDEMPIERE-794.sql new file mode 100644 index 0000000000..40672060e6 --- /dev/null +++ b/migration/i1.0a-release/postgresql/201304111600_IDEMPIERE-794.sql @@ -0,0 +1,11 @@ +-- Apr 11, 2013 3:57:16 PM COT +UPDATE AD_ReportView SET WhereClause='RV_InOutDetails.IsSOTrx=''N''',Updated=TO_TIMESTAMP('2013-04-11 15:57:16','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_ReportView_ID=152 +; + +-- Apr 11, 2013 3:57:24 PM COT +UPDATE AD_ReportView SET WhereClause='RV_InOutDetails.IsSOTrx=''Y''',Updated=TO_TIMESTAMP('2013-04-11 15:57:24','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_ReportView_ID=151 +; + +SELECT register_migration_script('201304111600_IDEMPIERE-794.sql') FROM dual +; +