IDEMPIERE-6076 Fix Default Locator on InfoWindow Create lines from Receipt/Shipment (#2281)

* Fix InfoWindow
* Added to V11
* Remove from V12
This commit is contained in:
Orlando Curieles 2024-03-30 17:57:15 -04:00 committed by Carlos Ruiz
parent 0ffcc794b3
commit 0f326c7e04
2 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,10 @@
-- IDEMPIERE-6076
SELECT register_migration_script('202403271137_IDEMPIERE-6076.sql') FROM dual;
SET SQLBLANKLINES ON
SET DEFINE OFF
-- Mar 27, 2024, 11:37:00 AM VET
UPDATE AD_InfoColumn SET DefaultValue='@SQL=SELECT M_Locator_ID FROM M_Locator WHERE M_Warehouse_ID=@M_Warehouse_ID@ ORDER BY IsDefault DESC, M_Locator_ID DESC',Updated=TO_TIMESTAMP('2024-03-27 11:37:00','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_InfoColumn_ID=200248
;

View File

@ -0,0 +1,7 @@
-- IDEMPIERE-6076
SELECT register_migration_script('202403271137_IDEMPIERE-6076.sql') FROM dual;
-- Mar 27, 2024, 11:37:00 AM VET
UPDATE AD_InfoColumn SET DefaultValue='@SQL=SELECT M_Locator_ID FROM M_Locator WHERE M_Warehouse_ID=@M_Warehouse_ID@ ORDER BY IsDefault DESC, M_Locator_ID DESC',Updated=TO_TIMESTAMP('2024-03-27 11:37:00','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_InfoColumn_ID=200248
;