search widget : widget numeric bugfix for between

when a date was empty the datetime plugin added the hours as a suffix

SVN:b1162[5599]
This commit is contained in:
Bruno Da Silva
2018-04-03 16:27:28 +00:00
parent b1c48929e4
commit 5f08d98f66

View File

@@ -232,7 +232,7 @@ $(function()
{
sValue = oOpElem.find('input[name="'+oInputParam.getter_code+'"]').val();
}
else if (typeof oInputParam.getter_suffix != 'undefined')
else if (sLabel != "" && typeof oInputParam.getter_suffix != 'undefined')
{
sValue = sLabel + oInputParam.getter_suffix;
}