IDEMPIERE-2609 WebServices - error to Complete Transaction in Composite Interface

This commit is contained in:
sauljabin 2015-05-06 12:19:39 -05:00
parent e79ca200a9
commit aec225230d
1 changed files with 2 additions and 1 deletions

View File

@ -339,7 +339,8 @@ public class AbstractService {
lookup.refresh(); lookup.refresh();
NamePair pair = lookup.getDirect(po.get_Value(indCol), false, false); NamePair pair = lookup.getDirect(po.get_Value(indCol), false, false);
outField.setText(pair.getName()); if (pair != null)
outField.setText(pair.getName());
} }
} }
} }