├── .gitignore ├── CONTRIBUTING.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── doc ├── campinas │ ├── WebService.pdf │ ├── exemplos │ │ ├── Cancelar │ │ │ ├── cancelamento-20100302.xml │ │ │ ├── cancelamento-20100303.xml │ │ │ ├── retorno_cancelamento-20100302.xml │ │ │ └── retorno_cancelamento-20100303.xml │ │ ├── ConsultaLote │ │ │ ├── ConsultaLote01.xml │ │ │ ├── remessa_consultalote13344.xml │ │ │ ├── remessa_consultalote27455.xml │ │ │ ├── retorno_consultalote13344.xml │ │ │ └── retorno_consultalote27455.xml │ │ ├── ConsultaNFSeRPS │ │ │ ├── consultanfse-20100611.xml │ │ │ ├── retorno_Tomador_Estrangeiro.xml │ │ │ └── retorno_consultanfse-20100611.xml │ │ ├── ConsultaSequencialRPS │ │ │ ├── remessa_consultaseqrps-20100624.xml │ │ │ └── retorno_consultaseqrps-20100624.xml │ │ ├── ConsultarNotas │ │ │ ├── remessa_consultanotas-inicial1-01-01-2009ate30-12-2010-20100624.xml │ │ │ ├── remessa_consultanotas_assinado.xml │ │ │ ├── retorno_Tomador_Estrangeiro.xml │ │ │ └── retorno_consultanotas-inicial1-01-01-2009ate30-12-2010-20100624.xml │ │ └── Envio │ │ │ ├── EnvioAssinado01.xml │ │ │ ├── EnvioAssinado01RetornoAssincrono.xml │ │ │ ├── EnvioAssinado02.xml │ │ │ ├── EnvioAssinado02RetornoAssincrono.xml │ │ │ ├── EnvioNaoAssinado01.xml │ │ │ ├── EnvioNaoAssinado02.xml │ │ │ ├── EnvioNaoAssinado02RetornoAssincrono.xml │ │ │ ├── EnvioNaoAssinado03.xml │ │ │ ├── EnvioNaoAssinado04.xml │ │ │ ├── EnvioNaoAssinado04RetornoAssincronoErro.xml │ │ │ └── Lote_TomadorEstrangeiro.xml │ └── schemas │ │ ├── ConsultaSeqRps.xsd │ │ ├── ReqCancelamentoNFSe.xsd │ │ ├── ReqConsultaLote.xsd │ │ ├── ReqConsultaNFSeRPS.xsd │ │ ├── ReqConsultaNotas.xsd │ │ ├── ReqEnvioLoteRPS.xsd │ │ ├── RetornoCancelamentoNFSe.xsd │ │ ├── RetornoConsultaLote.xsd │ │ ├── RetornoConsultaNFSeRPS.xsd │ │ ├── RetornoConsultaNotas.xsd │ │ ├── RetornoConsultaSeqRps.xsd │ │ ├── RetornoEnvioLoteRPS.xsd │ │ ├── Tipos.xsd │ │ └── xmldsig-core-schema_v1.01.xsd └── rj │ ├── NFSe_Layout_RPS.pdf │ ├── NFSe_Layout_RPS_XML.pdf │ ├── WsNFSeNacional.pdf │ ├── exemplos │ ├── CancelarNfseEnvio.xml │ ├── CancelarNfseResposta.xml │ ├── ConsultaNfseEnvio.xml │ ├── ConsultaNfseResposta.xml │ ├── ConsultarLoteRpsEnvio.xml │ ├── ConsultarLoteRpsResposta.xml │ ├── ConsultarNfseRpsEnvio.xml │ ├── ConsultarNfseRpsResposta.xml │ ├── ConsultarSituacaoLoteRpsEnvio.xml │ ├── ConsultarSituacaoLoteRpsResposta.xml │ ├── EnviarLoteRpsEnvio.xml │ ├── EnviarLoteRpsResposta.xml │ ├── GerarNfseEnvio.xml │ └── GerarNfseResposta.xml │ ├── nfse_abrasf_conceitual.pdf │ ├── nfse_abrasf_integracao.pdf │ ├── rps.xml │ └── schemas │ ├── nfse_pcrj_v01.xsd │ ├── tipos_nfse_v01.xsd │ └── xmldsig-core-schema_v01.xsd ├── lib ├── nfse.rb ├── nfse │ ├── base.rb │ ├── cancelamento │ │ ├── lote.rb │ │ └── nota.rb │ ├── consultalote.rb │ ├── envio │ │ ├── deducao.rb │ │ ├── item.rb │ │ ├── lote.rb │ │ ├── prestador.rb │ │ ├── rps.rb │ │ └── tomador.rb │ └── version.rb └── templates │ ├── campinas │ └── nfse │ │ ├── cancelamento │ │ ├── lote.mustache │ │ └── nota.mustache │ │ ├── consulta_lote.mustache │ │ └── envio │ │ ├── deducao.mustache │ │ ├── item.mustache │ │ ├── lote.mustache │ │ └── rps.mustache │ └── rio_de_janeiro │ └── nfse │ └── envio │ ├── lote.mustache │ └── rps.mustache ├── nfse.gemspec └── test ├── fixtures ├── campinas │ ├── cancelamento.xml │ ├── consultalote.xml │ └── envio.xml └── rio_de_janeiro │ ├── envio.xml │ └── envio_cpf.xml ├── lib └── nfse │ ├── cancelamento │ ├── lote_test.rb │ └── nota_test.rb │ ├── consultalote_test.rb │ ├── envio │ ├── deducao_test.rb │ ├── item_test.rb │ ├── lote_test.rb │ ├── prestador_test.rb │ ├── rps_test.rb │ └── tomador_test.rb │ └── version_test.rb └── test_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/Rakefile -------------------------------------------------------------------------------- /doc/campinas/WebService.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/doc/campinas/WebService.pdf -------------------------------------------------------------------------------- /doc/campinas/exemplos/Cancelar/cancelamento-20100302.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/doc/campinas/exemplos/Cancelar/cancelamento-20100302.xml -------------------------------------------------------------------------------- /doc/campinas/exemplos/Cancelar/cancelamento-20100303.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/doc/campinas/exemplos/Cancelar/cancelamento-20100303.xml -------------------------------------------------------------------------------- /doc/campinas/exemplos/Cancelar/retorno_cancelamento-20100302.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/doc/campinas/exemplos/Cancelar/retorno_cancelamento-20100302.xml -------------------------------------------------------------------------------- /doc/campinas/exemplos/Cancelar/retorno_cancelamento-20100303.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/doc/campinas/exemplos/Cancelar/retorno_cancelamento-20100303.xml -------------------------------------------------------------------------------- /doc/campinas/exemplos/ConsultaLote/ConsultaLote01.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/doc/campinas/exemplos/ConsultaLote/ConsultaLote01.xml -------------------------------------------------------------------------------- /doc/campinas/exemplos/ConsultaLote/remessa_consultalote13344.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/doc/campinas/exemplos/ConsultaLote/remessa_consultalote13344.xml -------------------------------------------------------------------------------- /doc/campinas/exemplos/ConsultaLote/remessa_consultalote27455.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/doc/campinas/exemplos/ConsultaLote/remessa_consultalote27455.xml -------------------------------------------------------------------------------- /doc/campinas/exemplos/ConsultaLote/retorno_consultalote13344.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/doc/campinas/exemplos/ConsultaLote/retorno_consultalote13344.xml -------------------------------------------------------------------------------- /doc/campinas/exemplos/ConsultaLote/retorno_consultalote27455.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/doc/campinas/exemplos/ConsultaLote/retorno_consultalote27455.xml -------------------------------------------------------------------------------- /doc/campinas/exemplos/ConsultaNFSeRPS/consultanfse-20100611.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/doc/campinas/exemplos/ConsultaNFSeRPS/consultanfse-20100611.xml -------------------------------------------------------------------------------- /doc/campinas/exemplos/ConsultaNFSeRPS/retorno_Tomador_Estrangeiro.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/doc/campinas/exemplos/ConsultaNFSeRPS/retorno_Tomador_Estrangeiro.xml -------------------------------------------------------------------------------- /doc/campinas/exemplos/ConsultaNFSeRPS/retorno_consultanfse-20100611.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/doc/campinas/exemplos/ConsultaNFSeRPS/retorno_consultanfse-20100611.xml -------------------------------------------------------------------------------- /doc/campinas/exemplos/ConsultaSequencialRPS/remessa_consultaseqrps-20100624.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/doc/campinas/exemplos/ConsultaSequencialRPS/remessa_consultaseqrps-20100624.xml -------------------------------------------------------------------------------- /doc/campinas/exemplos/ConsultaSequencialRPS/retorno_consultaseqrps-20100624.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/doc/campinas/exemplos/ConsultaSequencialRPS/retorno_consultaseqrps-20100624.xml -------------------------------------------------------------------------------- /doc/campinas/exemplos/ConsultarNotas/remessa_consultanotas-inicial1-01-01-2009ate30-12-2010-20100624.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/doc/campinas/exemplos/ConsultarNotas/remessa_consultanotas-inicial1-01-01-2009ate30-12-2010-20100624.xml -------------------------------------------------------------------------------- /doc/campinas/exemplos/ConsultarNotas/remessa_consultanotas_assinado.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/doc/campinas/exemplos/ConsultarNotas/remessa_consultanotas_assinado.xml -------------------------------------------------------------------------------- /doc/campinas/exemplos/ConsultarNotas/retorno_Tomador_Estrangeiro.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/doc/campinas/exemplos/ConsultarNotas/retorno_Tomador_Estrangeiro.xml -------------------------------------------------------------------------------- /doc/campinas/exemplos/ConsultarNotas/retorno_consultanotas-inicial1-01-01-2009ate30-12-2010-20100624.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/doc/campinas/exemplos/ConsultarNotas/retorno_consultanotas-inicial1-01-01-2009ate30-12-2010-20100624.xml -------------------------------------------------------------------------------- /doc/campinas/exemplos/Envio/EnvioAssinado01.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/doc/campinas/exemplos/Envio/EnvioAssinado01.xml -------------------------------------------------------------------------------- /doc/campinas/exemplos/Envio/EnvioAssinado01RetornoAssincrono.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/doc/campinas/exemplos/Envio/EnvioAssinado01RetornoAssincrono.xml -------------------------------------------------------------------------------- /doc/campinas/exemplos/Envio/EnvioAssinado02.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/doc/campinas/exemplos/Envio/EnvioAssinado02.xml -------------------------------------------------------------------------------- /doc/campinas/exemplos/Envio/EnvioAssinado02RetornoAssincrono.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/doc/campinas/exemplos/Envio/EnvioAssinado02RetornoAssincrono.xml -------------------------------------------------------------------------------- /doc/campinas/exemplos/Envio/EnvioNaoAssinado01.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/doc/campinas/exemplos/Envio/EnvioNaoAssinado01.xml -------------------------------------------------------------------------------- /doc/campinas/exemplos/Envio/EnvioNaoAssinado02.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/doc/campinas/exemplos/Envio/EnvioNaoAssinado02.xml -------------------------------------------------------------------------------- /doc/campinas/exemplos/Envio/EnvioNaoAssinado02RetornoAssincrono.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/doc/campinas/exemplos/Envio/EnvioNaoAssinado02RetornoAssincrono.xml -------------------------------------------------------------------------------- /doc/campinas/exemplos/Envio/EnvioNaoAssinado03.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/doc/campinas/exemplos/Envio/EnvioNaoAssinado03.xml -------------------------------------------------------------------------------- /doc/campinas/exemplos/Envio/EnvioNaoAssinado04.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/doc/campinas/exemplos/Envio/EnvioNaoAssinado04.xml -------------------------------------------------------------------------------- /doc/campinas/exemplos/Envio/EnvioNaoAssinado04RetornoAssincronoErro.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/doc/campinas/exemplos/Envio/EnvioNaoAssinado04RetornoAssincronoErro.xml -------------------------------------------------------------------------------- /doc/campinas/exemplos/Envio/Lote_TomadorEstrangeiro.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/doc/campinas/exemplos/Envio/Lote_TomadorEstrangeiro.xml -------------------------------------------------------------------------------- /doc/campinas/schemas/ConsultaSeqRps.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/doc/campinas/schemas/ConsultaSeqRps.xsd -------------------------------------------------------------------------------- /doc/campinas/schemas/ReqCancelamentoNFSe.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/doc/campinas/schemas/ReqCancelamentoNFSe.xsd -------------------------------------------------------------------------------- /doc/campinas/schemas/ReqConsultaLote.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/doc/campinas/schemas/ReqConsultaLote.xsd -------------------------------------------------------------------------------- /doc/campinas/schemas/ReqConsultaNFSeRPS.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/doc/campinas/schemas/ReqConsultaNFSeRPS.xsd -------------------------------------------------------------------------------- /doc/campinas/schemas/ReqConsultaNotas.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/doc/campinas/schemas/ReqConsultaNotas.xsd -------------------------------------------------------------------------------- /doc/campinas/schemas/ReqEnvioLoteRPS.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/doc/campinas/schemas/ReqEnvioLoteRPS.xsd -------------------------------------------------------------------------------- /doc/campinas/schemas/RetornoCancelamentoNFSe.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/doc/campinas/schemas/RetornoCancelamentoNFSe.xsd -------------------------------------------------------------------------------- /doc/campinas/schemas/RetornoConsultaLote.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/doc/campinas/schemas/RetornoConsultaLote.xsd -------------------------------------------------------------------------------- /doc/campinas/schemas/RetornoConsultaNFSeRPS.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/doc/campinas/schemas/RetornoConsultaNFSeRPS.xsd -------------------------------------------------------------------------------- /doc/campinas/schemas/RetornoConsultaNotas.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/doc/campinas/schemas/RetornoConsultaNotas.xsd -------------------------------------------------------------------------------- /doc/campinas/schemas/RetornoConsultaSeqRps.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/doc/campinas/schemas/RetornoConsultaSeqRps.xsd -------------------------------------------------------------------------------- /doc/campinas/schemas/RetornoEnvioLoteRPS.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/doc/campinas/schemas/RetornoEnvioLoteRPS.xsd -------------------------------------------------------------------------------- /doc/campinas/schemas/Tipos.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/doc/campinas/schemas/Tipos.xsd -------------------------------------------------------------------------------- /doc/campinas/schemas/xmldsig-core-schema_v1.01.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/doc/campinas/schemas/xmldsig-core-schema_v1.01.xsd -------------------------------------------------------------------------------- /doc/rj/NFSe_Layout_RPS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/doc/rj/NFSe_Layout_RPS.pdf -------------------------------------------------------------------------------- /doc/rj/NFSe_Layout_RPS_XML.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/doc/rj/NFSe_Layout_RPS_XML.pdf -------------------------------------------------------------------------------- /doc/rj/WsNFSeNacional.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/doc/rj/WsNFSeNacional.pdf -------------------------------------------------------------------------------- /doc/rj/exemplos/CancelarNfseEnvio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/doc/rj/exemplos/CancelarNfseEnvio.xml -------------------------------------------------------------------------------- /doc/rj/exemplos/CancelarNfseResposta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/doc/rj/exemplos/CancelarNfseResposta.xml -------------------------------------------------------------------------------- /doc/rj/exemplos/ConsultaNfseEnvio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/doc/rj/exemplos/ConsultaNfseEnvio.xml -------------------------------------------------------------------------------- /doc/rj/exemplos/ConsultaNfseResposta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/doc/rj/exemplos/ConsultaNfseResposta.xml -------------------------------------------------------------------------------- /doc/rj/exemplos/ConsultarLoteRpsEnvio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/doc/rj/exemplos/ConsultarLoteRpsEnvio.xml -------------------------------------------------------------------------------- /doc/rj/exemplos/ConsultarLoteRpsResposta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/doc/rj/exemplos/ConsultarLoteRpsResposta.xml -------------------------------------------------------------------------------- /doc/rj/exemplos/ConsultarNfseRpsEnvio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/doc/rj/exemplos/ConsultarNfseRpsEnvio.xml -------------------------------------------------------------------------------- /doc/rj/exemplos/ConsultarNfseRpsResposta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/doc/rj/exemplos/ConsultarNfseRpsResposta.xml -------------------------------------------------------------------------------- /doc/rj/exemplos/ConsultarSituacaoLoteRpsEnvio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/doc/rj/exemplos/ConsultarSituacaoLoteRpsEnvio.xml -------------------------------------------------------------------------------- /doc/rj/exemplos/ConsultarSituacaoLoteRpsResposta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/doc/rj/exemplos/ConsultarSituacaoLoteRpsResposta.xml -------------------------------------------------------------------------------- /doc/rj/exemplos/EnviarLoteRpsEnvio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/doc/rj/exemplos/EnviarLoteRpsEnvio.xml -------------------------------------------------------------------------------- /doc/rj/exemplos/EnviarLoteRpsResposta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/doc/rj/exemplos/EnviarLoteRpsResposta.xml -------------------------------------------------------------------------------- /doc/rj/exemplos/GerarNfseEnvio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/doc/rj/exemplos/GerarNfseEnvio.xml -------------------------------------------------------------------------------- /doc/rj/exemplos/GerarNfseResposta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/doc/rj/exemplos/GerarNfseResposta.xml -------------------------------------------------------------------------------- /doc/rj/nfse_abrasf_conceitual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/doc/rj/nfse_abrasf_conceitual.pdf -------------------------------------------------------------------------------- /doc/rj/nfse_abrasf_integracao.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/doc/rj/nfse_abrasf_integracao.pdf -------------------------------------------------------------------------------- /doc/rj/rps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/doc/rj/rps.xml -------------------------------------------------------------------------------- /doc/rj/schemas/nfse_pcrj_v01.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/doc/rj/schemas/nfse_pcrj_v01.xsd -------------------------------------------------------------------------------- /doc/rj/schemas/tipos_nfse_v01.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/doc/rj/schemas/tipos_nfse_v01.xsd -------------------------------------------------------------------------------- /doc/rj/schemas/xmldsig-core-schema_v01.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/doc/rj/schemas/xmldsig-core-schema_v01.xsd -------------------------------------------------------------------------------- /lib/nfse.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/lib/nfse.rb -------------------------------------------------------------------------------- /lib/nfse/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/lib/nfse/base.rb -------------------------------------------------------------------------------- /lib/nfse/cancelamento/lote.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/lib/nfse/cancelamento/lote.rb -------------------------------------------------------------------------------- /lib/nfse/cancelamento/nota.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/lib/nfse/cancelamento/nota.rb -------------------------------------------------------------------------------- /lib/nfse/consultalote.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/lib/nfse/consultalote.rb -------------------------------------------------------------------------------- /lib/nfse/envio/deducao.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/lib/nfse/envio/deducao.rb -------------------------------------------------------------------------------- /lib/nfse/envio/item.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/lib/nfse/envio/item.rb -------------------------------------------------------------------------------- /lib/nfse/envio/lote.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/lib/nfse/envio/lote.rb -------------------------------------------------------------------------------- /lib/nfse/envio/prestador.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/lib/nfse/envio/prestador.rb -------------------------------------------------------------------------------- /lib/nfse/envio/rps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/lib/nfse/envio/rps.rb -------------------------------------------------------------------------------- /lib/nfse/envio/tomador.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/lib/nfse/envio/tomador.rb -------------------------------------------------------------------------------- /lib/nfse/version.rb: -------------------------------------------------------------------------------- 1 | module Nfse 2 | VERSION = "0.1.1" 3 | end 4 | -------------------------------------------------------------------------------- /lib/templates/campinas/nfse/cancelamento/lote.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/lib/templates/campinas/nfse/cancelamento/lote.mustache -------------------------------------------------------------------------------- /lib/templates/campinas/nfse/cancelamento/nota.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/lib/templates/campinas/nfse/cancelamento/nota.mustache -------------------------------------------------------------------------------- /lib/templates/campinas/nfse/consulta_lote.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/lib/templates/campinas/nfse/consulta_lote.mustache -------------------------------------------------------------------------------- /lib/templates/campinas/nfse/envio/deducao.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/lib/templates/campinas/nfse/envio/deducao.mustache -------------------------------------------------------------------------------- /lib/templates/campinas/nfse/envio/item.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/lib/templates/campinas/nfse/envio/item.mustache -------------------------------------------------------------------------------- /lib/templates/campinas/nfse/envio/lote.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/lib/templates/campinas/nfse/envio/lote.mustache -------------------------------------------------------------------------------- /lib/templates/campinas/nfse/envio/rps.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/lib/templates/campinas/nfse/envio/rps.mustache -------------------------------------------------------------------------------- /lib/templates/rio_de_janeiro/nfse/envio/lote.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/lib/templates/rio_de_janeiro/nfse/envio/lote.mustache -------------------------------------------------------------------------------- /lib/templates/rio_de_janeiro/nfse/envio/rps.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/lib/templates/rio_de_janeiro/nfse/envio/rps.mustache -------------------------------------------------------------------------------- /nfse.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/nfse.gemspec -------------------------------------------------------------------------------- /test/fixtures/campinas/cancelamento.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/test/fixtures/campinas/cancelamento.xml -------------------------------------------------------------------------------- /test/fixtures/campinas/consultalote.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/test/fixtures/campinas/consultalote.xml -------------------------------------------------------------------------------- /test/fixtures/campinas/envio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/test/fixtures/campinas/envio.xml -------------------------------------------------------------------------------- /test/fixtures/rio_de_janeiro/envio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/test/fixtures/rio_de_janeiro/envio.xml -------------------------------------------------------------------------------- /test/fixtures/rio_de_janeiro/envio_cpf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/test/fixtures/rio_de_janeiro/envio_cpf.xml -------------------------------------------------------------------------------- /test/lib/nfse/cancelamento/lote_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/test/lib/nfse/cancelamento/lote_test.rb -------------------------------------------------------------------------------- /test/lib/nfse/cancelamento/nota_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/test/lib/nfse/cancelamento/nota_test.rb -------------------------------------------------------------------------------- /test/lib/nfse/consultalote_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/test/lib/nfse/consultalote_test.rb -------------------------------------------------------------------------------- /test/lib/nfse/envio/deducao_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/test/lib/nfse/envio/deducao_test.rb -------------------------------------------------------------------------------- /test/lib/nfse/envio/item_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/test/lib/nfse/envio/item_test.rb -------------------------------------------------------------------------------- /test/lib/nfse/envio/lote_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/test/lib/nfse/envio/lote_test.rb -------------------------------------------------------------------------------- /test/lib/nfse/envio/prestador_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/test/lib/nfse/envio/prestador_test.rb -------------------------------------------------------------------------------- /test/lib/nfse/envio/rps_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/test/lib/nfse/envio/rps_test.rb -------------------------------------------------------------------------------- /test/lib/nfse/envio/tomador_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/test/lib/nfse/envio/tomador_test.rb -------------------------------------------------------------------------------- /test/lib/nfse/version_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/test/lib/nfse/version_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carloslopes/nfse/HEAD/test/test_helper.rb --------------------------------------------------------------------------------