IDEMPIERE-2676 Incorrect context variables - onNavigate Callout / run always callouts on key records
This commit is contained in:
parent
e6125f29f1
commit
b5a0e4f321
|
@ -2826,7 +2826,7 @@ public class GridTab implements DataStatusListener, Evaluatee, Serializable
|
||||||
public String processCallout (GridField field)
|
public String processCallout (GridField field)
|
||||||
{
|
{
|
||||||
//
|
//
|
||||||
if (isProcessed() && !field.isAlwaysUpdateable()) // only active records
|
if (isProcessed() && !field.isAlwaysUpdateable() && !field.isKey()) // only active records
|
||||||
return ""; // "DocProcessed";
|
return ""; // "DocProcessed";
|
||||||
|
|
||||||
Object value = field.getValue();
|
Object value = field.getValue();
|
||||||
|
|
Loading…
Reference in New Issue