From c2207d70057f6c4a666950f84021e80dc98e26fe Mon Sep 17 00:00:00 2001 From: vpj-cd Date: Fri, 6 Feb 2009 23:29:48 +0000 Subject: [PATCH] It creates incorrect document type for PO from outsourced http://sourceforge.net/tracker/?func=detail&atid=879332&aid=2530223&group_id=176962 --- migration/353a-trunk/oracle/415_BF2530223_FixDocTypePO.sql | 5 +++++ .../353a-trunk/postgresql/415_BF2530223_FixDocTypePO.sql | 5 +++++ 2 files changed, 10 insertions(+) create mode 100644 migration/353a-trunk/oracle/415_BF2530223_FixDocTypePO.sql create mode 100644 migration/353a-trunk/postgresql/415_BF2530223_FixDocTypePO.sql diff --git a/migration/353a-trunk/oracle/415_BF2530223_FixDocTypePO.sql b/migration/353a-trunk/oracle/415_BF2530223_FixDocTypePO.sql new file mode 100644 index 0000000000..ac2536ad6c --- /dev/null +++ b/migration/353a-trunk/oracle/415_BF2530223_FixDocTypePO.sql @@ -0,0 +1,5 @@ +-- Feb 6, 2009 6:24:58 PM ECT +-- Fix DocType Purchase Order +UPDATE C_DocType SET IsDefault='Y',Updated=TO_DATE('2009-02-06 18:24:58','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE C_DocType_ID=126 +; + diff --git a/migration/353a-trunk/postgresql/415_BF2530223_FixDocTypePO.sql b/migration/353a-trunk/postgresql/415_BF2530223_FixDocTypePO.sql new file mode 100644 index 0000000000..cc6948aba7 --- /dev/null +++ b/migration/353a-trunk/postgresql/415_BF2530223_FixDocTypePO.sql @@ -0,0 +1,5 @@ +-- Feb 6, 2009 6:24:58 PM ECT +-- Fix DocType Purchase Order +UPDATE C_DocType SET IsDefault='Y',Updated=TO_TIMESTAMP('2009-02-06 18:24:58','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE C_DocType_ID=126 +; +