Skip to content

Commit

Permalink
OPEN - jrimum#9: Campos formatados em função do padrão de cada Banco
Browse files Browse the repository at this point in the history
http://github.com/jrimum/bopepo/issues/issue/9

 * Classes para implementação dos campos formatados exibidos no boleto
Bradesco e SICREDI.
  • Loading branch information
gilmatryx committed Jan 31, 2014
1 parent 603562c commit 71946fb
Showing 1 changed file with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,8 @@ public static BoletoInfoCampoView create(ResourceBundle resourceBundle,
.getCodigoDeCompensacaoBACEN().getCodigoFormatado());

if (isNotNull(banco)) {
// switch (banco) {
// case BANCO_BRADESCO: return new
// BoletoInfoViewBradesco(resourceBundle,boleto);
switch (banco) {
case BANCO_BRADESCO: return new BoletoInfoViewBradesco(resourceBundle, boleto);
// case BANCO_DO_BRASIL: return new ..;
// case BANCO_DO_NORDESTE_DO_BRASIL: return new ..;
// case BANCO_ABN_AMRO_REAL: return new ..;
Expand All @@ -68,11 +67,11 @@ public static BoletoInfoCampoView create(ResourceBundle resourceBundle,
// case BANCO_RURAL: return new ..;
// case BANCO_SANTANDER: return new ..;
// case BANCO_INTEMEDIUM: return nCew ..;
// case BANCO_SICREDI: return new ..;
case BANCO_SICREDI: return new BoletoInfoViewSicredi(resourceBundle, boleto);
// case BANCOOB: return new ..;
// case CITIBANK: return new ..;
// case BANCO_DE_BRASILIA: return new ..;
// }
}
}

return new BoletoInfoViewDefault(resourceBundle, boleto);
Expand Down

0 comments on commit 71946fb

Please sign in to comment.