示例#1
0
 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;
 }
示例#2
0
 public Boleto setPago(String id) {
   Boleto b = getOne(id);
   b.setStatusPago(true);
   b.setDataPago(getDate());
   return boletoRepository.saveAndFlush(b);
 }