IDEMPIERE-370 Implement link from process ending message to next records / Fix date format / Thanks to Kirit
This commit is contained in:
parent
368ce19b6e
commit
1c7ebfb61e
|
@ -258,7 +258,7 @@ public class ProcessInfo implements Serializable
|
|||
return "";
|
||||
//
|
||||
StringBuffer sb = new StringBuffer ();
|
||||
SimpleDateFormat dateFormat = DisplayType.getDateFormat(DisplayType.DateTime);
|
||||
SimpleDateFormat dateFormat = DisplayType.getDateFormat(DisplayType.Date);
|
||||
if (html)
|
||||
sb.append("<table width=\"100%\" border=\"1\" cellspacing=\"0\" cellpadding=\"2\">");
|
||||
//
|
||||
|
|
|
@ -468,7 +468,7 @@ public class ProcessDialog extends Window implements EventListener<Event>, IProc
|
|||
if (m_logs == null)
|
||||
return ;
|
||||
|
||||
SimpleDateFormat dateFormat = DisplayType.getDateFormat(DisplayType.DateTime);
|
||||
SimpleDateFormat dateFormat = DisplayType.getDateFormat(DisplayType.Date);
|
||||
|
||||
logMessageTable = new Table();
|
||||
logMessageTable.setId("logrecords");
|
||||
|
|
Loading…
Reference in New Issue