PFA patch for fixes related to ticket IDEMPIERE-265 zk - Save/etrieve search problems

This commit is contained in:
Deepak Pansheriya 2012-10-31 11:30:32 -05:00
parent 24e890925d
commit 75b4c86421
3 changed files with 15 additions and 1 deletions

View File

@ -0,0 +1,7 @@
-- Oct 27, 2012 3:42:39 PM IST
-- Allow records to be deleted
UPDATE AD_Table SET IsDeleteable='Y',Updated=TO_DATE('2012-10-27 15:42:39','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Table_ID=814
;
SELECT register_migration_script('949_IDEMPIERE-265.sql') FROM dual
;

View File

@ -0,0 +1,7 @@
-- Oct 27, 2012 3:42:39 PM IST
-- Allow records to be deleted
UPDATE AD_Table SET IsDeleteable='Y',Updated=TO_TIMESTAMP('2012-10-27 15:42:39','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Table_ID=814
;
SELECT register_migration_script('949_IDEMPIERE-265.sql') FROM dual
;

View File

@ -831,7 +831,7 @@ public class FindWindow extends Window implements EventListener<Event>, ValueCha
String value2 = fields.length > INDEX_VALUE2 ? fields[INDEX_VALUE2] : "";
if(value2.length() > 0)
{
cellQueryTo.setAttribute("value", value); // Elaine 2009/03/16 - set attribute value
cellQueryTo.setAttribute("value", value2); // Elaine 2009/03/16 - set attribute value
cellQueryTo.appendChild(parseString(getTargetMField(columnName), value2, listItem, true));
}