Example #1
0
        private void BtnConsultarReciboLote2_Click(object sender, RoutedEventArgs e)
        {
            try
            {
                #region Consulta Recibo de lote

                var recibo = Funcoes.InpuBox(this, "Consultar processamento de lote de NF-e", "Número do recibo:");
                if (String.IsNullOrEmpty(recibo))
                {
                    throw new Exception("O número do recibo deve ser informado!");
                }
                var servicoNFe    = new ServicosNFe(_configuracoes.CfgServico);
                var retornoRecibo = servicoNFe.NfeRetRecepcao(recibo);

                TrataRetorno(retornoRecibo);

                #endregion
            }
            catch (Exception ex)
            {
                if (!String.IsNullOrEmpty(ex.Message))
                {
                    Funcoes.Mensagem(ex.Message, "Erro", MessageBoxButton.OK);
                }
            }
        }