IDEMPIERE-5755 - Empty value preference logs false parsing error on Dates (#1875)
This commit is contained in:
parent
5602a15f04
commit
34aa34d55f
|
@ -1069,7 +1069,9 @@ public class GridField
|
||||||
SimpleDateFormat dateFormat = DisplayType.getDateFormat_JDBC();
|
SimpleDateFormat dateFormat = DisplayType.getDateFormat_JDBC();
|
||||||
SimpleDateFormat timeFormat = DisplayType.getTimeFormat_Default();
|
SimpleDateFormat timeFormat = DisplayType.getTimeFormat_Default();
|
||||||
try {
|
try {
|
||||||
if (m_vo.displayType == DisplayType.Date) {
|
if(Util.isEmpty(value, true)) {
|
||||||
|
return null;
|
||||||
|
} else if (m_vo.displayType == DisplayType.Date) {
|
||||||
date = dateFormat.parse (value);
|
date = dateFormat.parse (value);
|
||||||
} else if (m_vo.displayType == DisplayType.Time) {
|
} else if (m_vo.displayType == DisplayType.Time) {
|
||||||
date = timeFormat.parse (value);
|
date = timeFormat.parse (value);
|
||||||
|
|
Loading…
Reference in New Issue