diff --git a/migration/i8.2/oracle/202111161430_IDEMPIERE-4808.sql b/migration/i8.2/oracle/202111161430_IDEMPIERE-4808.sql new file mode 100644 index 0000000000..bd57ba425d --- /dev/null +++ b/migration/i8.2/oracle/202111161430_IDEMPIERE-4808.sql @@ -0,0 +1,11 @@ +SET SQLBLANKLINES ON +SET DEFINE OFF + +-- IDEMPIERE-4808 Payment Allocation should be IsSOTrx neutral +-- Nov 16, 2021, 2:29:19 PM CET +UPDATE AD_Window SET PredefinedContextVariables='IgnoreIsSOTrxInBPInfo=Y',Updated=TO_DATE('2021-11-16 14:29:19','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Window_ID=140 +; + +SELECT register_migration_script('202111161430_IDEMPIERE-4808.sql') FROM dual +; + diff --git a/migration/i8.2/postgresql/202111161430_IDEMPIERE-4808.sql b/migration/i8.2/postgresql/202111161430_IDEMPIERE-4808.sql new file mode 100644 index 0000000000..6b93cd1243 --- /dev/null +++ b/migration/i8.2/postgresql/202111161430_IDEMPIERE-4808.sql @@ -0,0 +1,8 @@ +-- IDEMPIERE-4808 Payment Allocation should be IsSOTrx neutral +-- Nov 16, 2021, 2:29:19 PM CET +UPDATE AD_Window SET PredefinedContextVariables='IgnoreIsSOTrxInBPInfo=Y',Updated=TO_TIMESTAMP('2021-11-16 14:29:19','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Window_ID=140 +; + +SELECT register_migration_script('202111161430_IDEMPIERE-4808.sql') FROM dual +; +