private void afectarBancos(final CargoAbono pago) { AsientoDeGasto a1 = new AsientoDeGasto(); a1.setCuenta(pago.getCuenta().getCuentaContable()); String c = MessageFormat.format( "{0} {1}", pago.getCuenta().getDescripcion(), pago.getCuenta().getNumero()); c = StringUtils.substring(c, 0, 28); a1.setConcepto(c); a1.setHaber(pago.getImporteMN().abs()); a1.setDescripcion(StringUtils.substring(getConcepto(), 0, 28)); registros.add(a1); }
private void registrarTipo(final CargoAbono pago) { this.tipo = pago.getCuenta().getClave(); }