@SuppressWarnings("unchecked")
private boolean haveOrdersNotPaid(
final List<TransportListable> listTransportListable) {
Iterator<TransportListable> it = transportableList.iterator();
while (it.hasNext()) {
TransportListable transportListable = it.next();
if (!transportListable.isPaid()
&& transportListable.getProductAreaGroup().usePrepayment()) {
return true;
}
}
return false;