public boolean updateInfos(Boleto b, Contador p) { Boleto boleto = boletoRepository.findById(b.getId()); if (boleto.getContador() == p) { boleto.setEmpresa(b.getEmpresa()); boleto.setListaNotas(b.getListaNotas()); boleto.setValor(b.getValor()); boletoRepository.saveAndFlush(boleto); return true; } return false; }
public Boleto setPago(String id) { Boleto b = getOne(id); b.setStatusPago(true); b.setDataPago(getDate()); return boletoRepository.saveAndFlush(b); }