From 09750e1e4788fbc8c46990cf19c5b5c232037a0e Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Wed, 30 Oct 2013 11:23:40 -0500 Subject: [PATCH] IDEMPIERE-1478 Usability improvement - closing without saving --- .../oracle/201310301122_IDEMPIERE-1478.sql | 11 +++++++++++ .../postgresql/201310301122_IDEMPIERE-1478.sql | 8 ++++++++ 2 files changed, 19 insertions(+) create mode 100644 migration/i1.0c-release/oracle/201310301122_IDEMPIERE-1478.sql create mode 100644 migration/i1.0c-release/postgresql/201310301122_IDEMPIERE-1478.sql diff --git a/migration/i1.0c-release/oracle/201310301122_IDEMPIERE-1478.sql b/migration/i1.0c-release/oracle/201310301122_IDEMPIERE-1478.sql new file mode 100644 index 0000000000..7751af0f1e --- /dev/null +++ b/migration/i1.0c-release/oracle/201310301122_IDEMPIERE-1478.sql @@ -0,0 +1,11 @@ +SET SQLBLANKLINES ON +SET DEFINE OFF + +-- Oct 30, 2013 11:22:12 AM COT +-- IDEMPIERE-1478 Usability improvement - closing without saving +INSERT INTO AD_Message (MsgType,MsgText,AD_Message_ID,EntityType,AD_Message_UU,Value,IsActive,Updated,CreatedBy,UpdatedBy,AD_Org_ID,Created,AD_Client_ID) VALUES ('I','There are unsaved changes - are you sure to close?',200238,'D','276708d4-7bd0-4241-b996-4213e0c47144','CloseUnSave?','Y',TO_DATE('2013-10-30 11:22:11','YYYY-MM-DD HH24:MI:SS'),100,100,0,TO_DATE('2013-10-30 11:22:11','YYYY-MM-DD HH24:MI:SS'),0) +; + +SELECT register_migration_script('201310301122_IDEMPIERE-1478.sql') FROM dual +; + diff --git a/migration/i1.0c-release/postgresql/201310301122_IDEMPIERE-1478.sql b/migration/i1.0c-release/postgresql/201310301122_IDEMPIERE-1478.sql new file mode 100644 index 0000000000..b95f219f6b --- /dev/null +++ b/migration/i1.0c-release/postgresql/201310301122_IDEMPIERE-1478.sql @@ -0,0 +1,8 @@ +-- Oct 30, 2013 11:22:12 AM COT +-- IDEMPIERE-1478 Usability improvement - closing without saving +INSERT INTO AD_Message (MsgType,MsgText,AD_Message_ID,EntityType,AD_Message_UU,Value,IsActive,Updated,CreatedBy,UpdatedBy,AD_Org_ID,Created,AD_Client_ID) VALUES ('I','There are unsaved changes - are you sure to close?',200238,'D','276708d4-7bd0-4241-b996-4213e0c47144','CloseUnSave?','Y',TO_TIMESTAMP('2013-10-30 11:22:11','YYYY-MM-DD HH24:MI:SS'),100,100,0,TO_TIMESTAMP('2013-10-30 11:22:11','YYYY-MM-DD HH24:MI:SS'),0) +; + +SELECT register_migration_script('201310301122_IDEMPIERE-1478.sql') FROM dual +; +