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 "";
|
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\">");
|
||||||
//
|
//
|
||||||
|
|
|
@ -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");
|
||||||
|
|
Loading…
Reference in New Issue