IDEMPIERE-1117 Attachment -> Disable preview over certain size (#366)

* IDEMPIERE-1117 Attachment -> Disable preview over certain size

Add message Preview

* IDEMPIERE-1117 Attachment -> Disable preview over certain size

Move to correct folder
This commit is contained in:
Carlos Ruiz 2020-11-10 03:03:16 +01:00 committed by GitHub
parent 4e121d20ee
commit 0a597943f5
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-1117 Attachment -> Disable preview over certain size
-- 11.2020.09 20:42:00
INSERT INTO AD_Message (MsgType,MsgText,AD_Client_ID,AD_Org_ID,IsActive,Created,CreatedBy,Updated,UpdatedBy,AD_Message_ID,Value,EntityType,AD_Message_UU) VALUES ('I','Preview',0,0,'Y',TO_DATE('2020-11-09 20:42:00','YYYY-MM-DD HH24:MI:SS'),100,TO_DATE('2020-11-09 20:42:00','YYYY-MM-DD HH24:MI:SS'),100,200651,'Preview','D','ee9dfe12-97b3-41fb-8449-e47dbb6d5fe2')
;
SELECT register_migration_script('202011092042_IDEMPIERE-1117.sql') FROM dual
;

View File

@ -0,0 +1,8 @@
-- IDEMPIERE-1117 Attachment -> Disable preview over certain size
-- 11.2020.09 20:42:00
INSERT INTO AD_Message (MsgType,MsgText,AD_Client_ID,AD_Org_ID,IsActive,Created,CreatedBy,Updated,UpdatedBy,AD_Message_ID,Value,EntityType,AD_Message_UU) VALUES ('I','Preview',0,0,'Y',TO_TIMESTAMP('2020-11-09 20:42:00','YYYY-MM-DD HH24:MI:SS'),100,TO_TIMESTAMP('2020-11-09 20:42:00','YYYY-MM-DD HH24:MI:SS'),100,200651,'Preview','D','ee9dfe12-97b3-41fb-8449-e47dbb6d5fe2')
;
SELECT register_migration_script('202011092042_IDEMPIERE-1117.sql') FROM dual
;