public void TestInitialize() { arquivoRetorno = new ArquivoRetornoCrb643(); using (new MemoryStream(Encoding.UTF8.GetBytes(ARQUIVO_RETORNO))) arquivoRetorno.LerArquivoRetorno(new Banco(001), new MemoryStream(Encoding.UTF8.GetBytes(ARQUIVO_RETORNO))); arquivoRetornoCNAB400 = new ArquivoRetornoCNAB400(); using (new MemoryStream(Encoding.UTF8.GetBytes(ARQUIVO_RETORNO))) arquivoRetornoCNAB400.LerArquivoRetorno(new Banco(001), new MemoryStream(Encoding.UTF8.GetBytes(ARQUIVO_RETORNO))); }
private void LerRetorno(int codigo) { try { Banco bco = new Banco(codigo); openFileDialog.FileName = ""; openFileDialog.Title = "Selecione um arquivo de retorno"; openFileDialog.Filter = "Arquivos de Retorno (*.ret;*.crt)|*.ret;*.crt|Todos Arquivos (*.*)|*.*"; if (openFileDialog.ShowDialog() == DialogResult.OK) { if (radioButtonCNAB400.Checked) { ArquivoRetornoCNAB400 cnab400 = null; if (openFileDialog.CheckFileExists == true) { cnab400 = new ArquivoRetornoCNAB400(); cnab400.LinhaDeArquivoLida += new EventHandler<LinhaDeArquivoLidaArgs>(cnab400_LinhaDeArquivoLida); cnab400.LerArquivoRetorno(bco, openFileDialog.OpenFile()); } if (cnab400 == null) { MessageBox.Show("Arquivo não processado!"); return; } lstReturnFields.Items.Clear(); foreach (DetalheRetorno detalhe in cnab400.ListaDetalhe) { ListViewItem li = new ListViewItem(detalhe.NomeSacado.ToString().Trim()); li.Tag = detalhe; li.SubItems.Add(detalhe.DataVencimento.ToString("dd/MM/yy")); li.SubItems.Add(detalhe.DataCredito.ToString("dd/MM/yy")); li.SubItems.Add(detalhe.ValorTitulo.ToString("###,###.00")); li.SubItems.Add(detalhe.ValorPago.ToString("###,###.00")); li.SubItems.Add(detalhe.CodigoOcorrencia.ToString()); li.SubItems.Add(""); li.SubItems.Add(detalhe.NossoNumeroComDV); // = detalhe.NossoNumero.ToString() + "-" + detalhe.DACNossoNumero.ToString()); li.SubItems.Add(detalhe.NumeroDocumento); lstReturnFields.Items.Add(li); } } else if (radioButtonCNAB240.Checked) { ArquivoRetornoCNAB240 cnab240 = null; if (openFileDialog.CheckFileExists == true) { cnab240 = new ArquivoRetornoCNAB240(); cnab240.LinhaDeArquivoLida += new EventHandler<LinhaDeArquivoLidaArgs>(cnab240_LinhaDeArquivoLida); cnab240.LerArquivoRetorno(bco, openFileDialog.OpenFile()); } if (cnab240 == null) { MessageBox.Show("Arquivo não processado!"); return; } lstReturnFields.Items.Clear(); foreach (DetalheRetornoCNAB240 detalhe in cnab240.ListaDetalhes) { ListViewItem li = new ListViewItem(detalhe.SegmentoT.NomeSacado.Trim()); li.Tag = detalhe; li.SubItems.Add(detalhe.SegmentoT.DataVencimento.ToString("dd/MM/yy")); li.SubItems.Add(detalhe.SegmentoU.DataCredito.ToString("dd/MM/yy")); li.SubItems.Add(detalhe.SegmentoT.ValorTitulo.ToString("###,###.00")); li.SubItems.Add(detalhe.SegmentoU.ValorPagoPeloSacado.ToString("###,###.00")); li.SubItems.Add(detalhe.SegmentoU.CodigoOcorrenciaSacado.ToString()); li.SubItems.Add(""); li.SubItems.Add(detalhe.SegmentoT.NossoNumero); lstReturnFields.Items.Add(li); } } MessageBox.Show("Arquivo aberto com sucesso!"); } } catch (Exception ex) { MessageBox.Show(ex.Message, "Erro ao abrir arquivo de retorno."); } }