IDEMPIERE-4283 QuickInfo showing the wrong orders by default on Generate PO from Sales Order (#48)

This commit is contained in:
Diego Ruiz 2020-05-09 18:51:44 +02:00 committed by GitHub
parent 4c22d862be
commit c369410c48
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,10 @@
SET SQLBLANKLINES ON
SET DEFINE OFF
-- IDEMPIERE-4283 QuickInfo showing the wrong orders by default on Generate PO from Sales Order
-- May 9, 2020, 6:34:13 PM CEST
UPDATE AD_Menu SET IsSOTrx='Y',Updated=TO_DATE('2020-05-09 18:34:13','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Menu_ID=335
;
SELECT register_migration_script('202005091838_IDEMPIERE-4283.sql') FROM dual
;

View File

@ -0,0 +1,7 @@
-- IDEMPIERE-4283 QuickInfo showing the wrong orders by default on Generate PO from Sales Order
-- May 9, 2020, 6:34:13 PM CEST
UPDATE AD_Menu SET IsSOTrx='Y',Updated=TO_TIMESTAMP('2020-05-09 18:34:13','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Menu_ID=335
;
SELECT register_migration_script('202005091838_IDEMPIERE-4283.sql') FROM dual
;