fixes bug#13271

dev:gleimar
qua:gleimar

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Web/trunk/ventaboletos@88828 d1611594-4594-4d17-8e1d-87c2c4800839
master
gleimar 2019-01-14 16:55:35 +00:00
parent 4345a1e3a6
commit fdc2b421e2
1 changed files with 4 additions and 3 deletions

View File

@ -17,6 +17,7 @@ import java.sql.SQLException;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Calendar;
import java.util.Collections;
import java.util.Date;
import java.util.HashMap;
import java.util.List;
@ -851,7 +852,7 @@ public class EditarPuntoVentaController extends MyGenericForwardComposer {
}
ptovtaAntifraudeList.setItemRenderer(new RenderPtovtaAntifraude());
ptovtaAntifraudeList.setData(puntoVenta.getPtovtaAntifraudes());
ptovtaAntifraudeList.setData(puntoVenta.getPtovtaAntifraudes() == null? Collections.emptyList():puntoVenta.getPtovtaAntifraudes());
ptovtaAntifraudeList.addEventListener("onDoubleClick", new EventListener() {
@Override