From c8cee246dad56141300bfaa855ead6e6892675f7 Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Fri, 11 Sep 2009 07:56:29 +0000 Subject: [PATCH] FR [1756793] - RMA Feature https://sourceforge.net/tracker/?func=detail&atid=879334&aid=1756793&group_id=176962 --- migration/353a-trunk/oracle/566_FR1756793_RMA.sql | 4 ++++ migration/353a-trunk/postgresql/566_FR1756793_RMA.sql | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/migration/353a-trunk/oracle/566_FR1756793_RMA.sql b/migration/353a-trunk/oracle/566_FR1756793_RMA.sql index 3c9d0761c2..0951c5444f 100644 --- a/migration/353a-trunk/oracle/566_FR1756793_RMA.sql +++ b/migration/353a-trunk/oracle/566_FR1756793_RMA.sql @@ -3552,3 +3552,7 @@ UPDATE AD_Tab SET IsSingleRow='Y',Updated=TO_DATE('2009-09-11 01:19:45','YYYY-MM UPDATE AD_Tab SET IsSingleRow='Y',Updated=TO_DATE('2009-09-11 01:20:02','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Tab_ID=53276 ; +-- update wrongly created document types on other tenants +update c_doctype set issotrx = 'N' where docbasetype = 'MMS' and name = 'MM Vendor Return'; + +update c_doctype set issotrx = 'Y' where docbasetype = 'MMR' and name = 'MM Returns'; diff --git a/migration/353a-trunk/postgresql/566_FR1756793_RMA.sql b/migration/353a-trunk/postgresql/566_FR1756793_RMA.sql index 2c1cf0280a..ab1f25f5e0 100644 --- a/migration/353a-trunk/postgresql/566_FR1756793_RMA.sql +++ b/migration/353a-trunk/postgresql/566_FR1756793_RMA.sql @@ -3552,3 +3552,7 @@ UPDATE AD_Tab SET IsSingleRow='Y',Updated=TO_TIMESTAMP('2009-09-11 01:19:45','YY UPDATE AD_Tab SET IsSingleRow='Y',Updated=TO_TIMESTAMP('2009-09-11 01:20:02','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Tab_ID=53276 ; +-- update wrongly created document types on other tenants +update c_doctype set issotrx = 'N' where docbasetype = 'MMS' and name = 'MM Vendor Return'; + +update c_doctype set issotrx = 'Y' where docbasetype = 'MMR' and name = 'MM Returns';