IDEMPIERE-2678 Allow to set explicit NULL value for fields
This commit is contained in:
parent
99f08dbdee
commit
7ae9056c5b
|
@ -745,7 +745,7 @@ public class GridField
|
|||
private Object createDefault (String value)
|
||||
{
|
||||
// true NULL
|
||||
if (value == null || value.toString().length() == 0)
|
||||
if (value == null || value.toString().length() == 0 || value.toUpperCase().equals("NULL"))
|
||||
return null;
|
||||
// see also MTable.readData
|
||||
try
|
||||
|
|
Loading…
Reference in New Issue