fixes bug #7139
git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@53053 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
dd2bc75588
commit
d1e214e55d
|
@ -422,12 +422,14 @@ public class ConferenciaComissaoServiceImpl implements ConferenciaComissaoServic
|
|||
conferencia.setPuntoVenta(puntoVenta);
|
||||
|
||||
conferencia = suscribirOrActualizacion(conferencia);
|
||||
} else if(conferencia != null && conferencia.getIndmaloterecebido()) {
|
||||
}
|
||||
cDataInicial.add(Calendar.DAY_OF_MONTH, 1);
|
||||
|
||||
if(conferencia != null && conferencia.getIndmaloterecebido()) {
|
||||
continue;
|
||||
}
|
||||
confirmarChegadaMalote(conferencia);
|
||||
|
||||
cDataInicial.add(Calendar.DAY_OF_MONTH, 1);
|
||||
|
||||
}
|
||||
|
||||
|
|
|
@ -123,11 +123,11 @@ public class MovimentosAtrasoVO implements Comparable<MovimentosAtrasoVO> {
|
|||
}
|
||||
|
||||
public String getDescricaoSituacao() {
|
||||
return getSituacao().toString();
|
||||
return getSituacao() != null ? getSituacao().toString() : "";
|
||||
}
|
||||
|
||||
public String getShortDescricaoSituacao() {
|
||||
return getSituacao().getShortDescricao();
|
||||
return getSituacao() != null ? getSituacao().getShortDescricao() : "";
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in New Issue