I have a system that generates an accounts receivable, and I'm trying to implement the generation of bank boletos, my teacher Advisor has indicated me the tool 'Bopepo' Jrmum. I inserted it into my system and was able to generate a sample ticket, but I want to pass the information to the ticket per parameter as the user types it. Has anyone used this tool or know how to do it? I await reply, Thank you.
final Titulo crieOsDadosDoNovoTitulo(Titulo titulo) {
/*
* DADOS BÁSICOS.
*/
titulo.setNumeroDoDocumento("12345");
titulo.setNossoNumero("00234569812345");
titulo.setDigitoDoNossoNumero("5");
titulo.setValor(BigDecimal.valueOf(0.23));
// Para informar a data de maneira simples você pode utilizar as
// classes utilitárias do JRimum. Abaixo temos alguns exemplos:
// (1) titulo.setDataDoVencimento( DateFormat.DDMMYYYY_B.parse("11/03/2011") );
// (2) titulo.setDataDoVencimento( Dates.parse("11/03/2011", "dd/MM/yyyy") );
titulo.setDataDoDocumento(new Date());
titulo.setDataDoVencimento(new Date());
titulo.setTipoDeDocumento(TipoDeTitulo.DM_DUPLICATA_MERCANTIL);
titulo.setAceite(Aceite.A);
titulo.setDesconto(new BigDecimal(0.05));
titulo.setDeducao(BigDecimal.ZERO);
titulo.setMora(BigDecimal.ZERO);
titulo.setAcrecimo(BigDecimal.ZERO);
titulo.setValorCobrado(BigDecimal.ZERO);
return titulo;
}