private void CarregaItensEventoCartaCorrecao(belPesquisaCCe objbelPesquisa) { try { objEnvEvento.versao = this._VERSAO; objEnvEvento.id = objbelPesquisa.CD_NRLANC; belEvento objEvento = new belEvento(); objEvento.versao = _VERSAO; objEvento.infEvento = new _infEvento(); objEvento.infEvento.CNPJ = objbelPesquisa.CNPJ; objEvento.infEvento.CPF = objbelPesquisa.CPF; objEvento.infEvento.dhEvento = HLP.Util.Util.GetDateServidor().ToString("yyyy-MM-ddTHH:mm:ss" + belStatic.sFuso);//objbelPesquisa.DT_LANC; objEvento.infEvento.verEvento = _VERSAO; objEvento.infEvento.tpAmb = belStatic.TpAmb; objEvento.infEvento.chNFe = objbelPesquisa.CHNFE; objEvento.infEvento.cOrgao = belStatic.cUF.ToString(); objEvento.infEvento.detEvento = new _detEvento { versao = _VERSAO }; objEvento.infEvento.detEvento.xCorrecao = BuscaCorrecoes(objbelPesquisa.CD_NRLANC); objEvento.infEvento.nSeqEvento = objbelPesquisa.QT_ENVIO + 1; objEvento.idLote = "ID" + objEvento.infEvento.tpEvento + objEvento.infEvento.chNFe + objEvento.infEvento.nSeqEvento.ToString().PadLeft(2, '0'); objEnvEvento.evento.Add(objEvento); } catch (Exception) { throw; } finally { cx.Close_Conexao(); } }
private void PoopulaTabVisualizacao(belEvento objEvento) { try { txtNotaFis.Text = (bsGrid.DataSource as List<belPesquisaCCe>).FirstOrDefault(c => c.CHNFE == objEvento.infEvento.chNFe).CD_NOTAFIS; txtChaveNFe.Text = objEvento.infEvento.chNFe; txtRazaoSocial.Text = (bsGrid.DataSource as List<belPesquisaCCe>).FirstOrDefault(c => c.CHNFE == objEvento.infEvento.chNFe).NM_CLIFOR; txtCondUso.Text = objEvento.infEvento.detEvento.xCondUso; txtAjustes.Text = objEvento.infEvento.detEvento.xCorrecao.Replace("|", Environment.NewLine); } catch (Exception ex) { throw ex; } }