IDEMPIERE-5863 - Fixed bug that copies isVerified when copying a BOM product (#2022)

This commit is contained in:
Diego Ruiz 2023-09-23 04:12:50 +02:00 committed by GitHub
parent 55760215a4
commit d1ffb621b1
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 @@
-- IDEMPIERE-5863 - When copying a BOM product, verified is copied leaving an invalid BOM marked as verified
SELECT register_migration_script('202309221355_IDEMPIERE-5863.sql') FROM dual;
SET SQLBLANKLINES ON
SET DEFINE OFF
-- Sep 22, 2023, 1:55:49 PM CEST
UPDATE AD_Column SET IsAllowCopy='N',Updated=TO_TIMESTAMP('2023-09-22 13:55:49','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=4711
;

View File

@ -0,0 +1,7 @@
-- IDEMPIERE-5863 - When copying a BOM product, verified is copied leaving an invalid BOM marked as verified
SELECT register_migration_script('202309221355_IDEMPIERE-5863.sql') FROM dual;
-- Sep 22, 2023, 1:55:49 PM CEST
UPDATE AD_Column SET IsAllowCopy='N',Updated=TO_TIMESTAMP('2023-09-22 13:55:49','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=4711
;