IDEMPIERE-370 Implement link from process ending message to next records / Fix date format / Thanks to Kirit

This commit is contained in:
Carlos Ruiz 2012-09-10 12:50:05 -05:00
parent 368ce19b6e
commit 1c7ebfb61e
2 changed files with 2 additions and 2 deletions

View File

@ -258,7 +258,7 @@ public class ProcessInfo implements Serializable
return ""; return "";
// //
StringBuffer sb = new StringBuffer (); StringBuffer sb = new StringBuffer ();
SimpleDateFormat dateFormat = DisplayType.getDateFormat(DisplayType.DateTime); SimpleDateFormat dateFormat = DisplayType.getDateFormat(DisplayType.Date);
if (html) if (html)
sb.append("<table width=\"100%\" border=\"1\" cellspacing=\"0\" cellpadding=\"2\">"); sb.append("<table width=\"100%\" border=\"1\" cellspacing=\"0\" cellpadding=\"2\">");
// //

View File

@ -468,7 +468,7 @@ public class ProcessDialog extends Window implements EventListener<Event>, IProc
if (m_logs == null) if (m_logs == null)
return ; return ;
SimpleDateFormat dateFormat = DisplayType.getDateFormat(DisplayType.DateTime); SimpleDateFormat dateFormat = DisplayType.getDateFormat(DisplayType.Date);
logMessageTable = new Table(); logMessageTable = new Table();
logMessageTable.setId("logrecords"); logMessageTable.setId("logrecords");