IDEMPIERE-2676 Incorrect context variables - onNavigate Callout / run always callouts on key records

This commit is contained in:
Carlos Ruiz 2016-07-13 16:07:05 +02:00
parent e6125f29f1
commit b5a0e4f321
1 changed files with 1 additions and 1 deletions

View File

@ -2826,7 +2826,7 @@ public class GridTab implements DataStatusListener, Evaluatee, Serializable
public String processCallout (GridField field)
{
//
if (isProcessed() && !field.isAlwaysUpdateable()) // only active records
if (isProcessed() && !field.isAlwaysUpdateable() && !field.isKey()) // only active records
return ""; // "DocProcessed";
Object value = field.getValue();