From 1360e20a4709acf4a81ae3b87547bfb11c475e80 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Pe=C3=B1uela?= Date: Fri, 12 Apr 2013 20:17:30 -0500 Subject: [PATCH] IDEMPIERE-794 Ticket #1001025 - Expand the views to provide more information / Open orders --- .../i1.0a-release/oracle/201304111530_IDEMPIERE-794.sql | 8 ++++++++ .../postgresql/201304111530_IDEMPIERE-794.sql | 7 +++++++ 2 files changed, 15 insertions(+) create mode 100644 migration/i1.0a-release/oracle/201304111530_IDEMPIERE-794.sql create mode 100644 migration/i1.0a-release/postgresql/201304111530_IDEMPIERE-794.sql diff --git a/migration/i1.0a-release/oracle/201304111530_IDEMPIERE-794.sql b/migration/i1.0a-release/oracle/201304111530_IDEMPIERE-794.sql new file mode 100644 index 0000000000..26fd533248 --- /dev/null +++ b/migration/i1.0a-release/oracle/201304111530_IDEMPIERE-794.sql @@ -0,0 +1,8 @@ +-- Apr 11, 2013 3:33:35 PM COT +UPDATE AD_ReportView SET WhereClause='(QtyToDeliver<>0 OR QtyToInvoice<>0) AND RV_OrderDetail.DocStatus NOT IN (''VO'',''CL'')',Updated=TO_DATE('2013-04-11 15:33:35','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_ReportView_ID=104 +; + +SELECT register_migration_script('201304111530_IDEMPIERE-794.sql') FROM dual +; + + diff --git a/migration/i1.0a-release/postgresql/201304111530_IDEMPIERE-794.sql b/migration/i1.0a-release/postgresql/201304111530_IDEMPIERE-794.sql new file mode 100644 index 0000000000..9e2de48780 --- /dev/null +++ b/migration/i1.0a-release/postgresql/201304111530_IDEMPIERE-794.sql @@ -0,0 +1,7 @@ +-- Apr 11, 2013 3:33:35 PM COT +UPDATE AD_ReportView SET WhereClause='(QtyToDeliver<>0 OR QtyToInvoice<>0) AND RV_OrderDetail.DocStatus NOT IN (''VO'',''CL'')',Updated=TO_TIMESTAMP('2013-04-11 15:33:35','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_ReportView_ID=104 +; + +SELECT register_migration_script('201304111530_IDEMPIERE-794.sql') FROM dual +; +