IDEMPIERE-4808 Payment Allocation should be IsSOTrx neutral + Product Window (#984)

This commit is contained in:
Carlos Ruiz 2021-11-17 02:25:52 +01:00 committed by GitHub
parent e27a8b8aab
commit 549a9ddef1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 19 additions and 0 deletions

View File

@ -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
;

View File

@ -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
;