br_nfe 2.1.1 → 2.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +1 -1
- data/Gemfile +1 -0
- data/Gemfile.lock +12 -2
- data/README.markdown +3 -1
- data/Rakefile +20 -1
- data/lib/br_nfe/active_model/associations.rb +11 -0
- data/lib/br_nfe/active_model/has_many.rb +65 -0
- data/lib/br_nfe/active_model/has_one.rb +57 -0
- data/lib/br_nfe/active_model_base.rb +38 -1
- data/lib/br_nfe/base.rb +9 -0
- data/lib/br_nfe/calculos/fatores_de_multiplicacao.rb +67 -0
- data/lib/br_nfe/calculos/modulo11.rb +54 -0
- data/lib/br_nfe/calculos/modulo11_fator_de2a9.rb +83 -0
- data/lib/br_nfe/calculos/modulo11_fator_de2a9_resto_zero.rb +29 -0
- data/lib/br_nfe/constants.rb +46 -1
- data/lib/br_nfe/endereco.rb +6 -2
- data/lib/br_nfe/helper/cpf_cnpj.rb +8 -1
- data/lib/br_nfe/person.rb +32 -3
- data/lib/br_nfe/product/destinatario.rb +45 -0
- data/lib/br_nfe/product/emitente.rb +14 -1
- data/lib/br_nfe/product/evento/base.rb +146 -0
- data/lib/br_nfe/product/evento/cancelamento.rb +46 -0
- data/lib/br_nfe/product/gateway/base.rb +16 -43
- data/lib/br_nfe/product/gateway/web_service_am.rb +140 -0
- data/lib/br_nfe/product/gateway/web_service_ba.rb +140 -0
- data/lib/br_nfe/product/gateway/web_service_ce.rb +162 -0
- data/lib/br_nfe/product/gateway/web_service_go.rb +140 -0
- data/lib/br_nfe/product/gateway/web_service_mg.rb +140 -0
- data/lib/br_nfe/product/gateway/web_service_ms.rb +140 -0
- data/lib/br_nfe/product/gateway/web_service_mt.rb +140 -0
- data/lib/br_nfe/product/gateway/web_service_pe.rb +140 -0
- data/lib/br_nfe/product/gateway/web_service_pr.rb +140 -0
- data/lib/br_nfe/product/gateway/web_service_rs.rb +140 -0
- data/lib/br_nfe/product/gateway/web_service_sp.rb +140 -0
- data/lib/br_nfe/product/gateway/web_service_svan.rb +162 -0
- data/lib/br_nfe/product/gateway/web_service_svc_an.rb +131 -0
- data/lib/br_nfe/product/gateway/web_service_svc_rs.rb +20 -0
- data/lib/br_nfe/product/gateway/web_service_svrs.rb +111 -10
- data/lib/br_nfe/product/nf_xml_value.rb +278 -0
- data/lib/br_nfe/product/nfe/adicao_importacao.rb +76 -0
- data/lib/br_nfe/product/nfe/cobranca/duplicata.rb +44 -0
- data/lib/br_nfe/product/nfe/cobranca/fatura.rb +64 -0
- data/lib/br_nfe/product/nfe/cobranca/pagamento.rb +99 -0
- data/lib/br_nfe/product/nfe/declaracao_importacao.rb +221 -0
- data/lib/br_nfe/product/nfe/detalhe_exportacao.rb +89 -0
- data/lib/br_nfe/product/nfe/item.rb +678 -0
- data/lib/br_nfe/product/nfe/item_tax/cofins.rb +138 -0
- data/lib/br_nfe/product/nfe/item_tax/cofins_st.rb +68 -0
- data/lib/br_nfe/product/nfe/item_tax/icms.rb +593 -0
- data/lib/br_nfe/product/nfe/item_tax/icms_uf_destino.rb +169 -0
- data/lib/br_nfe/product/nfe/item_tax/importacao.rb +62 -0
- data/lib/br_nfe/product/nfe/item_tax/ipi.rb +179 -0
- data/lib/br_nfe/product/nfe/item_tax/issqn.rb +256 -0
- data/lib/br_nfe/product/nfe/item_tax/pis.rb +138 -0
- data/lib/br_nfe/product/nfe/item_tax/pis_st.rb +68 -0
- data/lib/br_nfe/product/nfe/processo_referencia.rb +48 -0
- data/lib/br_nfe/product/nfe/transporte/base.rb +264 -0
- data/lib/br_nfe/product/nfe/transporte/transportador.rb +15 -0
- data/lib/br_nfe/product/nfe/transporte/veiculo.rb +53 -0
- data/lib/br_nfe/product/nfe/transporte/volume.rb +89 -0
- data/lib/br_nfe/product/nota_fiscal.rb +1173 -0
- data/lib/br_nfe/product/operation/base.rb +255 -0
- data/lib/br_nfe/product/operation/nfe_autorizacao.rb +118 -0
- data/lib/br_nfe/product/operation/nfe_consulta_protocolo.rb +61 -0
- data/lib/br_nfe/product/operation/nfe_download_nf.rb +86 -0
- data/lib/br_nfe/product/operation/nfe_inutilizacao.rb +168 -0
- data/lib/br_nfe/product/operation/nfe_recepcao_evento.rb +70 -0
- data/lib/br_nfe/product/operation/nfe_ret_autorizacao.rb +63 -0
- data/lib/br_nfe/product/operation/nfe_status_servico.rb +46 -0
- data/lib/br_nfe/product/response/base.rb +97 -0
- data/lib/br_nfe/product/response/build/base.rb +287 -0
- data/lib/br_nfe/product/response/build/nfe_autorizacao.rb +102 -0
- data/lib/br_nfe/product/response/build/nfe_consulta_protocolo.rb +133 -0
- data/lib/br_nfe/product/response/build/nfe_inutilizacao.rb +53 -0
- data/lib/br_nfe/product/response/build/nfe_ret_autorizacao.rb +65 -0
- data/lib/br_nfe/product/response/build/nfe_status_servico.rb +43 -0
- data/lib/br_nfe/product/response/event.rb +89 -0
- data/lib/br_nfe/product/response/nfe_autorizacao.rb +12 -0
- data/lib/br_nfe/product/response/nfe_consulta_protocolo.rb +13 -0
- data/lib/br_nfe/product/response/nfe_inutilizacao.rb +89 -0
- data/lib/br_nfe/product/response/nfe_ret_autorizacao.rb +9 -0
- data/lib/br_nfe/product/response/nfe_status_servico.rb +31 -0
- data/lib/br_nfe/product/xml/_signed_info_sh1.xml.slim +9 -0
- data/lib/br_nfe/product/xml/_tc_cpf_cnpj.xml.slim +7 -0
- data/lib/br_nfe/product/xml/signature_sh1.xml.slim +12 -0
- data/lib/br_nfe/product/xml/v1_00/evento/infEventoCancelamento.xml.slim +19 -0
- data/lib/br_nfe/product/xml/v1_00/root/NfeDownloadNf.xml.slim +5 -0
- data/lib/br_nfe/product/xml/v1_00/root/NfeRecepcaoEvento.xml.slim +7 -0
- data/lib/br_nfe/product/xml/v2_00/_tc_endereco.xml.slim +19 -0
- data/lib/br_nfe/product/xml/v2_00/_tc_infNFe.xml.slim +39 -0
- data/lib/br_nfe/product/xml/v2_00/infInut.xml.slim +12 -0
- data/lib/br_nfe/product/xml/v2_00/infNFe/NFe.xml.slim +4 -0
- data/lib/br_nfe/product/xml/v2_00/infNFe/_tc_cobr.xml.slim +19 -0
- data/lib/br_nfe/product/xml/v2_00/infNFe/_tc_dest.xml.slim +14 -0
- data/lib/br_nfe/product/xml/v2_00/infNFe/_tc_det.xml.slim +7 -0
- data/lib/br_nfe/product/xml/v2_00/infNFe/_tc_emit.xml.slim +19 -0
- data/lib/br_nfe/product/xml/v2_00/infNFe/_tc_entrega.xml.slim +11 -0
- data/lib/br_nfe/product/xml/v2_00/infNFe/_tc_exporta.xml.slim +2 -0
- data/lib/br_nfe/product/xml/v2_00/infNFe/_tc_ide.xml.slim +24 -0
- data/lib/br_nfe/product/xml/v2_00/infNFe/_tc_infAdic.xml.slim +13 -0
- data/lib/br_nfe/product/xml/v2_00/infNFe/_tc_retirada.xml.slim +11 -0
- data/lib/br_nfe/product/xml/v2_00/infNFe/_tc_total.xml.slim +50 -0
- data/lib/br_nfe/product/xml/v2_00/infNFe/_tc_transp.xml.slim +35 -0
- data/lib/br_nfe/product/xml/v2_00/infNFe/det/_tc_imposto.xml.slim +31 -0
- data/lib/br_nfe/product/xml/v2_00/infNFe/det/_tc_prod.xml.slim +37 -0
- data/lib/br_nfe/product/xml/v2_00/infNFe/det/imposto/ICMS/_tc_ICMS00.xml.slim +6 -0
- data/lib/br_nfe/product/xml/v2_00/infNFe/det/imposto/ICMS/_tc_ICMS10.xml.slim +16 -0
- data/lib/br_nfe/product/xml/v2_00/infNFe/det/imposto/ICMS/_tc_ICMS101.xml.slim +4 -0
- data/lib/br_nfe/product/xml/v2_00/infNFe/det/imposto/ICMS/_tc_ICMS102.xml.slim +3 -0
- data/lib/br_nfe/product/xml/v2_00/infNFe/det/imposto/ICMS/_tc_ICMS20.xml.slim +6 -0
- data/lib/br_nfe/product/xml/v2_00/infNFe/det/imposto/ICMS/_tc_ICMS201.xml.slim +15 -0
- data/lib/br_nfe/product/xml/v2_00/infNFe/det/imposto/ICMS/_tc_ICMS202.xml.slim +14 -0
- data/lib/br_nfe/product/xml/v2_00/infNFe/det/imposto/ICMS/_tc_ICMS30.xml.slim +12 -0
- data/lib/br_nfe/product/xml/v2_00/infNFe/det/imposto/ICMS/_tc_ICMS40.xml.slim +7 -0
- data/lib/br_nfe/product/xml/v2_00/infNFe/det/imposto/ICMS/_tc_ICMS500.xml.slim +6 -0
- data/lib/br_nfe/product/xml/v2_00/infNFe/det/imposto/ICMS/_tc_ICMS51.xml.slim +13 -0
- data/lib/br_nfe/product/xml/v2_00/infNFe/det/imposto/ICMS/_tc_ICMS60.xml.slim +5 -0
- data/lib/br_nfe/product/xml/v2_00/infNFe/det/imposto/ICMS/_tc_ICMS70.xml.slim +18 -0
- data/lib/br_nfe/product/xml/v2_00/infNFe/det/imposto/ICMS/_tc_ICMS90.xml.slim +21 -0
- data/lib/br_nfe/product/xml/v2_00/infNFe/det/imposto/ICMS/_tc_ICMS900.xml.slim +25 -0
- data/lib/br_nfe/product/xml/v2_00/infNFe/det/imposto/_tc_COFINS.xml.slim +26 -0
- data/lib/br_nfe/product/xml/v2_00/infNFe/det/imposto/_tc_COFINS_ST.xml.slim +7 -0
- data/lib/br_nfe/product/xml/v2_00/infNFe/det/imposto/_tc_ICMS.xml.slim +45 -0
- data/lib/br_nfe/product/xml/v2_00/infNFe/det/imposto/_tc_II.xml.slim +4 -0
- data/lib/br_nfe/product/xml/v2_00/infNFe/det/imposto/_tc_IPI.xml.slim +30 -0
- data/lib/br_nfe/product/xml/v2_00/infNFe/det/imposto/_tc_PIS.xml.slim +26 -0
- data/lib/br_nfe/product/xml/v2_00/infNFe/det/imposto/_tc_PIS_ST.xml.slim +7 -0
- data/lib/br_nfe/product/xml/v2_00/infNFe/det/prod/_tc_di.xml.slim +13 -0
- data/lib/br_nfe/product/xml/v2_00/infNFe/transp/_tc_retTransp.xml.slim +6 -0
- data/lib/br_nfe/product/xml/v2_00/infNFe/transp/_tc_transporta.xml.slim +17 -0
- data/lib/br_nfe/product/xml/v2_00/infNFe/transp/_tc_vol.xml.slim +15 -0
- data/lib/br_nfe/product/xml/v2_00/infNFe.xml.slim +3 -0
- data/lib/br_nfe/product/xml/v2_00/root/NfeAutorizacao.xml.slim +5 -0
- data/lib/br_nfe/product/xml/v2_00/root/NfeInutilizacao.xml.slim +4 -0
- data/lib/br_nfe/product/xml/v2_00/root/NfeRetAutorizacao.xml.slim +3 -0
- data/lib/br_nfe/product/xml/v2_00/root/NfeStatusServico.xml.slim +4 -0
- data/lib/br_nfe/product/xml/v2_01/root/NfeConsultaProtocolo.xml.slim +4 -0
- data/lib/br_nfe/product/xml/v3_10/_tc_infNFe.xml.slim +44 -0
- data/lib/br_nfe/product/xml/v3_10/infNFe/_tc_dest.xml.slim +25 -0
- data/lib/br_nfe/product/xml/v3_10/infNFe/_tc_det.xml.slim +14 -0
- data/lib/br_nfe/product/xml/v3_10/infNFe/_tc_exporta.xml.slim +4 -0
- data/lib/br_nfe/product/xml/v3_10/infNFe/_tc_ide.xml.slim +26 -0
- data/lib/br_nfe/product/xml/v3_10/infNFe/_tc_pag.xml.slim +7 -0
- data/lib/br_nfe/product/xml/v3_10/infNFe/_tc_total.xml.slim +78 -0
- data/lib/br_nfe/product/xml/v3_10/infNFe/det/_tc_imposto.xml.slim +37 -0
- data/lib/br_nfe/product/xml/v3_10/infNFe/det/_tc_prod.xml.slim +48 -0
- data/lib/br_nfe/product/xml/v3_10/infNFe/det/imposto/ICMS/_tc_ICMS20.xml.slim +12 -0
- data/lib/br_nfe/product/xml/v3_10/infNFe/det/imposto/ICMS/_tc_ICMS30.xml.slim +17 -0
- data/lib/br_nfe/product/xml/v3_10/infNFe/det/imposto/ICMS/_tc_ICMS40.xml.slim +7 -0
- data/lib/br_nfe/product/xml/v3_10/infNFe/det/imposto/ICMS/_tc_ICMS51.xml.slim +19 -0
- data/lib/br_nfe/product/xml/v3_10/infNFe/det/imposto/ICMS/_tc_ICMS70.xml.slim +23 -0
- data/lib/br_nfe/product/xml/v3_10/infNFe/det/imposto/ICMS/_tc_ICMS90.xml.slim +26 -0
- data/lib/br_nfe/product/xml/v3_10/infNFe/det/imposto/_tc_ICMSUFDest.xml.slim +8 -0
- data/lib/br_nfe/product/xml/v3_10/infNFe/det/imposto/_tc_ISSQN.xml.slim +35 -0
- data/lib/br_nfe/product/xml/v3_10/infNFe/det/prod/_tc_det_export.xml.slim +8 -0
- data/lib/br_nfe/product/xml/v3_10/infNFe/det/prod/_tc_di.xml.slim +28 -0
- data/lib/br_nfe/product/xml/v3_10/root/NfeAutorizacao.xml.slim +6 -0
- data/lib/br_nfe/service/base.rb +1 -105
- data/lib/br_nfe/service/betha/v1/cancela_nfse.rb +1 -1
- data/lib/br_nfe/service/response/default.rb +1 -1
- data/lib/br_nfe/service/simpliss/v1/base.rb +2 -0
- data/lib/br_nfe/version.rb +2 -2
- data/lib/br_nfe.rb +180 -22
- data/lib/config/locales/br_nfe/en/product/nfe/cobranca/fatura.yml +6 -0
- data/lib/config/locales/br_nfe/en/product/nfe/declaracao_importacao.yml +10 -0
- data/lib/config/locales/br_nfe/en/product/nfe/item.yml +20 -0
- data/lib/config/locales/br_nfe/en/product/nfe/item_tax/icms_uf_destino.yml +8 -0
- data/lib/config/locales/br_nfe/en/product/nfe/transporte/base.yml +9 -0
- data/lib/config/locales/br_nfe/en/product/nota_fiscal.yml +21 -0
- data/lib/config/locales/br_nfe/en/product/operation/nfe_autorizacao.yml +10 -0
- data/lib/config/locales/br_nfe/en/product/operation/nfe_recepcao_evento.yml +6 -0
- data/lib/config/locales/br_nfe/pt-BR/product/nfe/cobranca/fatura.yml +6 -0
- data/lib/config/locales/br_nfe/pt-BR/product/nfe/declaracao_importacao.yml +10 -0
- data/lib/config/locales/br_nfe/pt-BR/product/nfe/item.yml +20 -0
- data/lib/config/locales/br_nfe/pt-BR/product/nfe/item_tax/icms_uf_destino.yml +8 -0
- data/lib/config/locales/br_nfe/pt-BR/product/nfe/transporte/base.yml +9 -0
- data/lib/config/locales/br_nfe/pt-BR/product/nota_fiscal.yml +21 -0
- data/lib/config/locales/br_nfe/pt-BR/product/operation/nfe_autorizacao.yml +10 -0
- data/lib/config/locales/br_nfe/pt-BR/product/operation/nfe_recepcao_evento.yml +6 -0
- data/test/br_nfe/association/have_destinatario_test.rb +8 -8
- data/test/br_nfe/association/have_emitente_test.rb +6 -6
- data/test/br_nfe/base_test.rb +15 -4
- data/test/br_nfe/endereco_test.rb +15 -0
- data/test/br_nfe/person_test.rb +55 -6
- data/test/br_nfe/product/destinatario_test.rb +26 -0
- data/test/br_nfe/product/emitente_test.rb +1 -2
- data/test/br_nfe/product/evento/base_test.rb +58 -0
- data/test/br_nfe/product/evento/cancelamento_test.rb +32 -0
- data/test/br_nfe/product/gateway/web_service_am_test.rb +242 -0
- data/test/br_nfe/product/gateway/web_service_ba_test.rb +242 -0
- data/test/br_nfe/product/gateway/web_service_ce_test.rb +242 -0
- data/test/br_nfe/product/gateway/web_service_go_test.rb +242 -0
- data/test/br_nfe/product/gateway/web_service_mg_test.rb +242 -0
- data/test/br_nfe/product/gateway/web_service_ms_test.rb +242 -0
- data/test/br_nfe/product/gateway/web_service_mt_test.rb +408 -0
- data/test/br_nfe/product/gateway/web_service_pe_test.rb +408 -0
- data/test/br_nfe/product/gateway/web_service_pr_test.rb +408 -0
- data/test/br_nfe/product/gateway/web_service_rs_test.rb +407 -0
- data/test/br_nfe/product/gateway/web_service_sp_test.rb +408 -0
- data/test/br_nfe/product/gateway/web_service_svan_test.rb +242 -0
- data/test/br_nfe/product/gateway/web_service_svc_an_test.rb +185 -0
- data/test/br_nfe/product/gateway/web_service_svc_rs_test.rb +185 -0
- data/test/br_nfe/product/gateway/web_service_svrs_test.rb +208 -2
- data/test/br_nfe/product/nfe/adicao_importacao_test.rb +19 -0
- data/test/br_nfe/product/nfe/cobranca/duplicata_test.rb +19 -0
- data/test/br_nfe/product/nfe/cobranca/fatura_test.rb +32 -0
- data/test/br_nfe/product/nfe/cobranca/pagamento_test.rb +105 -0
- data/test/br_nfe/product/nfe/declaracao_importacao_test.rb +116 -0
- data/test/br_nfe/product/nfe/detalhe_exportacao_test.rb +97 -0
- data/test/br_nfe/product/nfe/item_tax/cofins_st_test.rb +22 -0
- data/test/br_nfe/product/nfe/item_tax/cofins_test.rb +113 -0
- data/test/br_nfe/product/nfe/item_tax/icms_test.rb +1011 -0
- data/test/br_nfe/product/nfe/item_tax/icms_uf_destino_test.rb +99 -0
- data/test/br_nfe/product/nfe/item_tax/importacao_test.rb +23 -0
- data/test/br_nfe/product/nfe/item_tax/ipi_test.rb +160 -0
- data/test/br_nfe/product/nfe/item_tax/issqn_test.rb +84 -0
- data/test/br_nfe/product/nfe/item_tax/pis_st_test.rb +22 -0
- data/test/br_nfe/product/nfe/item_tax/pis_test.rb +113 -0
- data/test/br_nfe/product/nfe/item_test.rb +381 -0
- data/test/br_nfe/product/nfe/processo_referencia_test.rb +30 -0
- data/test/br_nfe/product/nfe/transporte/base_test.rb +182 -0
- data/test/br_nfe/product/nfe/transporte/transportador_test.rb +13 -0
- data/test/br_nfe/product/nfe/transporte/veiculo_test.rb +13 -0
- data/test/br_nfe/product/nfe/transporte/volume_test.rb +42 -0
- data/test/br_nfe/product/nota_fiscal_test.rb +662 -0
- data/test/br_nfe/product/operation/base_test.rb +538 -0
- data/test/br_nfe/product/operation/nfe_autorizacao_test.rb +378 -0
- data/test/br_nfe/product/operation/nfe_consulta_protocolo_test.rb +349 -0
- data/test/br_nfe/product/operation/nfe_download_nf_test.rb +93 -0
- data/test/br_nfe/product/operation/nfe_inutilizacao_test.rb +210 -0
- data/test/br_nfe/product/operation/nfe_recepcao_evento_test.rb +84 -0
- data/test/br_nfe/product/operation/nfe_ret_autorizacao_test.rb +309 -0
- data/test/br_nfe/product/operation/nfe_status_servico_test.rb +122 -0
- data/test/br_nfe/product/response/base_test.rb +75 -0
- data/test/br_nfe/product/response/build/base_test.rb +34 -0
- data/test/br_nfe/product/response/nfe_ret_autorizacao_test.rb +14 -0
- data/test/br_nfe/service/association/have_intermediario_test.rb +10 -10
- data/test/br_nfe/service/base_test.rb +9 -206
- data/test/br_nfe/service/betha/v1/cancela_nfse_test.rb +8 -6
- data/test/br_nfe/service/betha/v1/consulta_lote_rps_test.rb +6 -3
- data/test/br_nfe/service/betha/v1/consulta_nfs_por_rps_test.rb +6 -3
- data/test/br_nfe/service/betha/v1/consulta_nfse_test.rb +7 -4
- data/test/br_nfe/service/betha/v1/consulta_situacao_lote_rps_test.rb +12 -9
- data/test/br_nfe/service/betha/v1/recepcao_lote_rps_test.rb +6 -3
- data/test/br_nfe/service/rps_test.rb +2 -2
- data/test/br_nfe/service/simpliss/v1/cancela_nfse_test.rb +6 -3
- data/test/br_nfe/service/simpliss/v1/consulta_lote_rps_test.rb +7 -4
- data/test/br_nfe/service/simpliss/v1/consulta_nfs_por_rps_test.rb +7 -4
- data/test/br_nfe/service/simpliss/v1/consulta_nfse_test.rb +8 -5
- data/test/br_nfe/service/simpliss/v1/consulta_situacao_lote_rps_test.rb +9 -6
- data/test/br_nfe/service/simpliss/v1/recepcao_lote_rps_test.rb +6 -3
- data/test/br_nfe/service/thema/v1/cancela_nfse_test.rb +6 -3
- data/test/br_nfe/service/thema/v1/consulta_lote_rps_test.rb +6 -3
- data/test/br_nfe/service/thema/v1/consulta_nfs_por_rps_test.rb +6 -3
- data/test/br_nfe/service/thema/v1/consulta_nfse_test.rb +8 -5
- data/test/br_nfe/service/thema/v1/consulta_situacao_lote_rps_test.rb +9 -6
- data/test/br_nfe/service/thema/v1/recepcao_lote_rps_limitado_test.rb +6 -3
- data/test/br_nfe/service/thema/v1/recepcao_lote_rps_test.rb +6 -3
- data/test/factories/person.rb +1 -1
- data/test/factories/product/destinatario.rb +11 -0
- data/test/factories/product/emitente.rb +1 -1
- data/test/factories/product/evento/base.rb +9 -0
- data/test/factories/product/evento/cancelamento.rb +10 -0
- data/test/factories/product/gateway/web_service_am.rb +5 -0
- data/test/factories/product/gateway/web_service_ba.rb +5 -0
- data/test/factories/product/nfe/adicao_importacao.rb +7 -0
- data/test/factories/product/nfe/cobranca/duplicata.rb +7 -0
- data/test/factories/product/nfe/cobranca/fatura.rb +8 -0
- data/test/factories/product/nfe/cobranca/pagamento.rb +9 -0
- data/test/factories/product/nfe/declaracao_importacao.rb +10 -0
- data/test/factories/product/nfe/detalhe_exportacao.rb +5 -0
- data/test/factories/product/nfe/item.rb +24 -0
- data/test/factories/product/nfe/item_tax/cofins.rb +5 -0
- data/test/factories/product/nfe/item_tax/cofins_st.rb +5 -0
- data/test/factories/product/nfe/item_tax/icms.rb +9 -0
- data/test/factories/product/nfe/item_tax/icms_uf_destino.rb +11 -0
- data/test/factories/product/nfe/item_tax/importacao.rb +8 -0
- data/test/factories/product/nfe/item_tax/ipi.rb +6 -0
- data/test/factories/product/nfe/item_tax/issqn.rb +9 -0
- data/test/factories/product/nfe/item_tax/pis.rb +5 -0
- data/test/factories/product/nfe/item_tax/pis_st.rb +5 -0
- data/test/factories/product/nfe/processo_referencia.rb +6 -0
- data/test/factories/product/nfe/transporte/base.rb +5 -0
- data/test/factories/product/nfe/transporte/transportador.rb +7 -0
- data/test/factories/product/nfe/transporte/veiculo.rb +7 -0
- data/test/factories/product/nfe/transporte/volume.rb +5 -0
- data/test/factories/product/nota_fiscal.rb +22 -0
- data/test/factories/product/{base.rb → operation/base.rb} +1 -1
- data/test/factories/product/operation/nfe_autorizacao.rb +590 -0
- data/test/factories/product/operation/nfe_consulta_protocolo.rb +13 -0
- data/test/factories/product/operation/nfe_download_nf.rb +15 -0
- data/test/factories/product/operation/nfe_inutilizacao.rb +19 -0
- data/test/factories/product/operation/nfe_recepcao_evento.rb +14 -0
- data/test/factories/product/operation/nfe_ret_autorizacao.rb +13 -0
- data/test/factories/product/{consulta_status_servico.rb → operation/nfe_status_servico.rb} +1 -1
- data/test/factories/product/response/base.rb +12 -0
- data/test/factories/product/response/build/base.rb +6 -0
- data/test/factories/product/response/nfe_ret_autorizacao.rb +13 -0
- data/test/factories/service/emitente.rb +1 -1
- data/test/fixtures/product/operation/nfe_autorizacao/nfe_signed.xml +1 -0
- data/test/fixtures/product/response/v3.10/nfe_autorizacao/async_fail.xml +21 -0
- data/test/fixtures/product/response/v3.10/nfe_autorizacao/async_success.xml +25 -0
- data/test/fixtures/product/response/v3.10/nfe_autorizacao/nfe/with_proc.xml +1 -0
- data/test/fixtures/product/response/v3.10/nfe_autorizacao/nfe/without_proc.xml +1 -0
- data/test/fixtures/product/response/v3.10/nfe_autorizacao/original_xml.xml +1 -0
- data/test/fixtures/product/response/v3.10/nfe_autorizacao/sync_fail.xml +32 -0
- data/test/fixtures/product/response/v3.10/nfe_autorizacao/sync_success.xml +33 -0
- data/test/fixtures/product/response/v3.10/nfe_consulta_protocolo/event_xml/event_1.xml +1 -0
- data/test/fixtures/product/response/v3.10/nfe_consulta_protocolo/event_xml/event_2.xml +1 -0
- data/test/fixtures/product/response/v3.10/nfe_consulta_protocolo/event_xml/event_3.xml +1 -0
- data/test/fixtures/product/response/v3.10/nfe_consulta_protocolo/event_xml/event_cancel.xml +1 -0
- data/test/fixtures/product/response/v3.10/nfe_consulta_protocolo/event_xml/one_event.xml +1 -0
- data/test/fixtures/product/response/v3.10/nfe_consulta_protocolo/fail.xml +22 -0
- data/test/fixtures/product/response/v3.10/nfe_consulta_protocolo/nfe_original/with_proc.xml +1 -0
- data/test/fixtures/product/response/v3.10/nfe_consulta_protocolo/nfe_original/without_proc.xml +1 -0
- data/test/fixtures/product/response/v3.10/nfe_consulta_protocolo/success_many_with_cancel.xml +198 -0
- data/test/fixtures/product/response/v3.10/nfe_consulta_protocolo/success_many_without_cancel.xml +199 -0
- data/test/fixtures/product/response/v3.10/nfe_consulta_protocolo/success_one.xml +89 -0
- data/test/fixtures/product/response/v3.10/nfe_consulta_protocolo/success_without.xml +34 -0
- data/test/fixtures/product/response/v3.10/nfe_inutilizacao/fail.xml +29 -0
- data/test/fixtures/product/response/v3.10/nfe_inutilizacao/success.xml +30 -0
- data/test/fixtures/product/response/v3.10/nfe_recepcao_evento/cancelamento/fail.xml +34 -0
- data/test/fixtures/product/response/v3.10/nfe_recepcao_evento/cancelamento/success.xml +36 -0
- data/test/fixtures/product/response/v3.10/nfe_ret_autorizacao/lot_fail.xml +22 -0
- data/test/fixtures/product/response/v3.10/nfe_ret_autorizacao/lot_ok_one_invoice_fail.xml +33 -0
- data/test/fixtures/product/response/v3.10/nfe_ret_autorizacao/lot_ok_one_invoice_fail_and_one_ok.xml +46 -0
- data/test/fixtures/product/response/v3.10/nfe_ret_autorizacao/lot_ok_one_invoice_ok.xml +34 -0
- data/test/fixtures/product/response/v3.10/nfe_ret_autorizacao/lot_ok_two_invoice_fail.xml +46 -0
- data/test/fixtures/product/response/v3.10/nfe_ret_autorizacao/lot_ok_two_invoice_ok.xml +46 -0
- data/test/fixtures/product/response/v3.10/nfe_ret_autorizacao/nfe/nf_2_with_protocol.xml +1 -0
- data/test/fixtures/product/response/v3.10/nfe_ret_autorizacao/nfe/nf_2_without_protocol.xml +1 -0
- data/test/fixtures/product/response/v3.10/nfe_ret_autorizacao/nfe/nf_3_with_protocol.xml +1 -0
- data/test/fixtures/product/response/v3.10/nfe_ret_autorizacao/nfe/nf_3_without_protocol.xml +1 -0
- data/test/fixtures/product/response/v3.10/nfe_ret_autorizacao/original_xml/lot.xml +2 -0
- data/test/fixtures/product/response/v3.10/nfe_ret_autorizacao/original_xml/nfe.xml +2 -0
- data/test/fixtures/product/response/v3.10/nfe_ret_autorizacao/original_xml/nfeProc.xml +4 -0
- data/test/fixtures/product/response/v3.10/nfe_status_servico/fail.xml +23 -0
- data/test/fixtures/product/response/v3.10/nfe_status_servico/success.xml +22 -0
- data/test/fixtures/product/schemas/CCe_v1.00.xsd +11 -0
- data/test/fixtures/product/schemas/EPEC_v1.00.xsd +9 -0
- data/test/fixtures/product/schemas/LeiauteCadastroEmissorDFe_v1.01.xsd +234 -0
- data/test/fixtures/product/schemas/SuframaInternaliza_v1.00.xsd +9 -0
- data/test/fixtures/product/schemas/SuframaVistoria_v1.00.xsd +9 -0
- data/test/fixtures/product/schemas/atuCadEmiDFe_v1.01.xsd +9 -0
- data/test/fixtures/product/schemas/cabecMsg_v1.02.xsd +29 -0
- data/test/fixtures/product/schemas/cadEmiDFe_v1.01.xsd +9 -0
- data/test/fixtures/product/schemas/cancNFe_v2.00.xsd +9 -0
- data/test/fixtures/product/schemas/confRecebto_v1.00.xsd +9 -0
- data/test/fixtures/product/schemas/consCad_v2.00.xsd +9 -0
- data/test/fixtures/product/schemas/consDPEC_v1.01.xsd +9 -0
- data/test/fixtures/product/schemas/consNFeDest_v1.01.xsd +10 -0
- data/test/fixtures/product/schemas/consReciNFe_v2.00.xsd +9 -0
- data/{lib/br_nfe/product/xml/v3_10/XSD → test/fixtures/product/schemas}/consReciNFe_v3.10.xsd +8 -8
- data/test/fixtures/product/schemas/consSitNFe_v2.01.xsd +10 -0
- data/{lib/br_nfe/product/xml/v3_10/XSD → test/fixtures/product/schemas}/consSitNFe_v3.10.xsd +8 -8
- data/test/fixtures/product/schemas/consStatServ_v2.00.xsd +9 -0
- data/{lib/br_nfe/product/xml/v3_10/XSD → test/fixtures/product/schemas}/consStatServ_v3.10.xsd +8 -8
- data/test/fixtures/product/schemas/distDFeInt_v1.00.xsd +71 -0
- data/test/fixtures/product/schemas/downloadNFe_v1.00.xsd +10 -0
- data/test/fixtures/product/schemas/e110110_v1.00.xsd +58 -0
- data/test/fixtures/product/schemas/e110111_v1.00.xsd +42 -0
- data/test/fixtures/product/schemas/e110140_v1.00.xsd +124 -0
- data/test/fixtures/product/schemas/e111500_v1.00.xsd +69 -0
- data/test/fixtures/product/schemas/e111501_v1.00.xsd +69 -0
- data/test/fixtures/product/schemas/e111502_v1.00.xsd +50 -0
- data/test/fixtures/product/schemas/e111503_v1.00.xsd +50 -0
- data/test/fixtures/product/schemas/e210200_v1.00.xsd +32 -0
- data/test/fixtures/product/schemas/e210210_v1.00.xsd +32 -0
- data/test/fixtures/product/schemas/e210220_v1.00.xsd +45 -0
- data/test/fixtures/product/schemas/e210240_v1.00.xsd +44 -0
- data/test/fixtures/product/schemas/e411500_v1.00.xsd +134 -0
- data/test/fixtures/product/schemas/e411501_v1.00.xsd +134 -0
- data/test/fixtures/product/schemas/e411502_v1.00.xsd +95 -0
- data/test/fixtures/product/schemas/e411503_v1.00.xsd +95 -0
- data/test/fixtures/product/schemas/e990900_v1.00.xsd +87 -0
- data/test/fixtures/product/schemas/e990910_v1.00.xsd +81 -0
- data/test/fixtures/product/schemas/envCCe_v1.00.xsd +10 -0
- data/test/fixtures/product/schemas/envCancelPProrrogNFe_v1.0.xsd +50 -0
- data/test/fixtures/product/schemas/envConfRecebto_v1.00.xsd +9 -0
- data/test/fixtures/product/schemas/envDPEC_v1.01.xsd +9 -0
- data/test/fixtures/product/schemas/envEPEC_v1.00.xsd +9 -0
- data/test/fixtures/product/schemas/envEventoCancNFe_v1.00.xsd +9 -0
- data/test/fixtures/product/schemas/envEvento_v1.00.xsd +9 -0
- data/test/fixtures/product/schemas/envFiscoNfe_v1.0.xsd +179 -0
- data/test/fixtures/product/schemas/envPProrrogNFe_v1.0.xsd +65 -0
- data/test/fixtures/product/schemas/envRemIndus_v1.00.xsd +9 -0
- data/test/fixtures/product/schemas/envSuframaInternaliza_v1.00.xsd +10 -0
- data/test/fixtures/product/schemas/envSuframaVistoria_v1.00.xsd +10 -0
- data/test/fixtures/product/schemas/enviNFe_v2.00.xsd +9 -0
- data/{lib/br_nfe/product/xml/v3_10/XSD → test/fixtures/product/schemas}/enviNFe_v3.10.xsd +8 -8
- data/test/fixtures/product/schemas/eventoCancNFe_v1.00.xsd +9 -0
- data/test/fixtures/product/schemas/eventoEPEC_v0.01.xsd +267 -0
- data/test/fixtures/product/schemas/eventoEPEC_v1.00.xsd +267 -0
- data/test/fixtures/product/schemas/eventoRemIndus_v1.00.xsd +9 -0
- data/test/fixtures/product/schemas/inutNFe_v2.00.xsd +9 -0
- data/{lib/br_nfe/product/xml/v3_10/XSD → test/fixtures/product/schemas}/inutNFe_v3.10.xsd +8 -8
- data/test/fixtures/product/schemas/leiauteCCe_v1.00.xsd +418 -0
- data/test/fixtures/product/schemas/leiauteCancNFe_v2.00.xsd +143 -0
- data/test/fixtures/product/schemas/leiauteConfRecebto_v1.00.xsd +406 -0
- data/test/fixtures/product/schemas/leiauteConsNFeDest_v1.01.xsd +483 -0
- data/test/fixtures/product/schemas/leiauteConsSitNFe_v2.01.xsd +548 -0
- data/{lib/br_nfe/product/xml/v3_10/XSD → test/fixtures/product/schemas}/leiauteConsSitNFe_v3.10.xsd +502 -502
- data/test/fixtures/product/schemas/leiauteConsStatServ_v2.00.xsd +98 -0
- data/{lib/br_nfe/product/xml/v3_10/XSD → test/fixtures/product/schemas}/leiauteConsStatServ_v3.10.xsd +97 -97
- data/test/fixtures/product/schemas/leiauteConsultaCadastro_v1.01.xsd +355 -0
- data/test/fixtures/product/schemas/leiauteConsultaCadastro_v2.00.xsd +404 -0
- data/test/fixtures/product/schemas/leiauteDPEC_v1.01.xsd +464 -0
- data/test/fixtures/product/schemas/leiauteDownloadNFe_v1.00.xsd +149 -0
- data/test/fixtures/product/schemas/leiauteEPEC_v1.00.xsd +459 -0
- data/test/fixtures/product/schemas/leiauteEventoCancNFe_v1.00.xsd +394 -0
- data/test/fixtures/product/schemas/leiauteEvento_v1.00.xsd +373 -0
- data/test/fixtures/product/schemas/leiauteInutNFe_v2.00.xsd +193 -0
- data/{lib/br_nfe/product/xml/v3_10/XSD → test/fixtures/product/schemas}/leiauteInutNFe_v3.10.xsd +192 -192
- data/test/fixtures/product/schemas/leiauteNFe_v2.00.xsd +6661 -0
- data/{lib/br_nfe/product/xml/v3_10/XSD → test/fixtures/product/schemas}/leiauteNFe_v3.10.xsd +6060 -6060
- data/test/fixtures/product/schemas/leiauteRemIndus_v1.00.xsd +382 -0
- data/test/fixtures/product/schemas/leiauteSRE_v1.00.xsd +372 -0
- data/test/fixtures/product/schemas/leiauteSuframaInternaliza_v1.00.xsd +642 -0
- data/test/fixtures/product/schemas/leiauteSuframaVistoria_v1.00.xsd +648 -0
- data/test/fixtures/product/schemas/nfe_v2.00.xsd +9 -0
- data/{lib/br_nfe/product/xml/v3_10/XSD → test/fixtures/product/schemas}/nfe_v3.10.xsd +8 -8
- data/test/fixtures/product/schemas/procCCeNFe_v1.00.xsd +10 -0
- data/test/fixtures/product/schemas/procCancNFe_v2.00.xsd +9 -0
- data/test/fixtures/product/schemas/procConfRecebtoNFe_v1.00.xsd +9 -0
- data/test/fixtures/product/schemas/procEPEC_v1.00.xsd +9 -0
- data/test/fixtures/product/schemas/procEventoCancNFe_v1.00.xsd +9 -0
- data/test/fixtures/product/schemas/procEventoNFe_v1.00.xsd +9 -0
- data/test/fixtures/product/schemas/procEventoNFe_v99.99.xsd +37 -0
- data/test/fixtures/product/schemas/procInutNFe_v2.00.xsd +9 -0
- data/{lib/br_nfe/product/xml/v3_10/XSD → test/fixtures/product/schemas}/procInutNFe_v3.10.xsd +8 -8
- data/test/fixtures/product/schemas/procNFe_v2.00.xsd +9 -0
- data/{lib/br_nfe/product/xml/v3_10/XSD → test/fixtures/product/schemas}/procNFe_v3.10.xsd +8 -8
- data/test/fixtures/product/schemas/procRemIndus_v1.00.xsd +9 -0
- data/test/fixtures/product/schemas/resEvento_v1.00.xsd +94 -0
- data/test/fixtures/product/schemas/resNFe_v1.00.xsd +110 -0
- data/test/fixtures/product/schemas/retAtuCadEmiDFe_v1.01.xsd +9 -0
- data/test/fixtures/product/schemas/retCancNFe_v2.00.xsd +9 -0
- data/test/fixtures/product/schemas/retConsCad_v2.00.xsd +9 -0
- data/test/fixtures/product/schemas/retConsDPEC_v1.01.xsd +9 -0
- data/test/fixtures/product/schemas/retConsReciNFe_v2.00.xsd +9 -0
- data/{lib/br_nfe/product/xml/v3_10/XSD → test/fixtures/product/schemas}/retConsReciNFe_v3.10.xsd +8 -8
- data/test/fixtures/product/schemas/retConsSitNFe_v2.01.xsd +10 -0
- data/{lib/br_nfe/product/xml/v3_10/XSD → test/fixtures/product/schemas}/retConsSitNFe_v3.10.xsd +8 -8
- data/test/fixtures/product/schemas/retConsStatServ_v2.00.xsd +9 -0
- data/{lib/br_nfe/product/xml/v3_10/XSD → test/fixtures/product/schemas}/retConsStatServ_v3.10.xsd +8 -8
- data/test/fixtures/product/schemas/retDPEC_v1.01.xsd +9 -0
- data/test/fixtures/product/schemas/retDistDFeInt_v1.00.xsd +84 -0
- data/test/fixtures/product/schemas/retDownloadNFe_v1.00.xsd +9 -0
- data/test/fixtures/product/schemas/retEnvCCe_v1.00.xsd +10 -0
- data/test/fixtures/product/schemas/retEnvCancelPProrrogNFe_v1.0.xsd +231 -0
- data/test/fixtures/product/schemas/retEnvConfRecebto_v1.00.xsd +9 -0
- data/test/fixtures/product/schemas/retEnvEPEC_v1.00.xsd +9 -0
- data/test/fixtures/product/schemas/retEnvEventoCancNFe_v1.00.xsd +9 -0
- data/test/fixtures/product/schemas/retEnvEvento_v1.00.xsd +9 -0
- data/test/fixtures/product/schemas/retEnvFiscoNFe_v1.0.xsd +234 -0
- data/test/fixtures/product/schemas/retEnvRemIndus_v1.00.xsd +9 -0
- data/test/fixtures/product/schemas/retEnvSuframaInternaliza_v1.00.xsd +9 -0
- data/test/fixtures/product/schemas/retEnvSuframaVistoria_v1.00.xsd +9 -0
- data/test/fixtures/product/schemas/retEnviNFe_v2.00.xsd +9 -0
- data/{lib/br_nfe/product/xml/v3_10/XSD → test/fixtures/product/schemas}/retEnviNFe_v3.10.xsd +8 -8
- data/test/fixtures/product/schemas/retEventoEPEC_v0.01.xsd +207 -0
- data/test/fixtures/product/schemas/retInutNFe_v2.00.xsd +9 -0
- data/{lib/br_nfe/product/xml/v3_10/XSD → test/fixtures/product/schemas}/retInutNFe_v3.10.xsd +8 -8
- data/test/fixtures/product/schemas/retPProrrogNFe_v1.0.xsd +233 -0
- data/test/fixtures/product/schemas/retconsNFeDest_v1.01.xsd +9 -0
- data/test/fixtures/product/schemas/tiposBasico_v1.03.xsd +816 -0
- data/test/fixtures/product/schemas/tiposBasico_v1.03_OPENSSL.xsd +816 -0
- data/{lib/br_nfe/product/xml/v3_10/XSD → test/fixtures/product/schemas}/tiposBasico_v3.10.xsd +571 -571
- data/test/fixtures/product/schemas/tiposBasico_v3.10_OPENSSL.xsd +877 -0
- data/test/fixtures/product/schemas/tiposDistDFe_v1.00.xsd +217 -0
- data/{lib/br_nfe/product/xml/v3_10/XSD → test/fixtures/product/schemas}/xmldsig-core-schema_v1.01.xsd +97 -97
- data/test/fixtures/product/wsdl/NFeRetAutorizacao.xml +80 -0
- data/test/fixtures/product/wsdl/NfeAutorizacao.xml +107 -0
- data/test/fixtures/product/wsdl/NfeConsulta2.xml +80 -0
- data/test/fixtures/product/wsdl/NfeStatusServico2.xml +70 -0
- data/test/fixtures/product/wsdl/nfeinutilizacao2.xml +80 -0
- data/test/fixtures/service/wsdl/betha/v1/cancelar_nfse.xml +178 -0
- data/test/fixtures/service/wsdl/betha/v1/consultar_lote_rps.xml +339 -0
- data/test/fixtures/service/wsdl/betha/v1/consultar_nfse.xml +348 -0
- data/test/fixtures/service/wsdl/betha/v1/consultar_nfse_por_rps.xml +365 -0
- data/test/fixtures/service/wsdl/betha/v1/consultar_situacao_lote_rps.xml +74 -0
- data/test/fixtures/service/wsdl/betha/v1/recepcionar_lote_rps.xml +299 -0
- data/test/fixtures/service/wsdl/simpliss/v1/nfseservice.xml +1 -0
- data/test/fixtures/service/wsdl/thema/v1/nfse_cancelamento.xml +82 -0
- data/test/fixtures/service/wsdl/thema/v1/nfse_consulta.xml +235 -0
- data/test/fixtures/service/wsdl/thema/v1/nfse_remessa.xml +185 -0
- data/test/test_helper.rb +369 -1
- metadata +711 -33
- data/lib/br_nfe/product/base.rb +0 -82
- data/lib/br_nfe/product/consulta_status_servico.rb +0 -35
- data/lib/br_nfe/product/value_nf.rb +0 -9
- data/lib/br_nfe/product/xml/v3_10/consulta_status_servico.xml.slim +0 -4
- data/test/br_nfe/product/base_test.rb +0 -150
- data/test/br_nfe/product/consulta_status_servico_test.rb +0 -59
@@ -0,0 +1,365 @@
|
|
1
|
+
<?xml version='1.0' encoding='UTF-8'?>
|
2
|
+
<definitions name='ConsultarNEPorRpsService' targetNamespace='http://www.betha.com.br/e-nota-contribuinte-ws' xmlns='http://schemas.xmlsoap.org/wsdl/' xmlns:ns1='http://www.w3.org/2000/09/xmldsig#' xmlns:soap='http://schemas.xmlsoap.org/wsdl/soap/' xmlns:tns='http://www.betha.com.br/e-nota-contribuinte-ws' xmlns:xsd='http://www.w3.org/2001/XMLSchema'>
|
3
|
+
<types>
|
4
|
+
<xs:schema targetNamespace='http://www.w3.org/2000/09/xmldsig#' version='1.0' xmlns:ns1='http://www.betha.com.br/e-nota-contribuinte-ws' xmlns:tns='http://www.w3.org/2000/09/xmldsig#' xmlns:xs='http://www.w3.org/2001/XMLSchema'>
|
5
|
+
<xs:import namespace='http://www.betha.com.br/e-nota-contribuinte-ws'/>
|
6
|
+
<xs:element name='CanonicalizationMethod' type='tns:tcCanonicalizationMethod'/>
|
7
|
+
<xs:element name='DigestMethod' type='tns:tcDigestMethod'/>
|
8
|
+
<xs:element name='DigestValue' type='xs:string'/>
|
9
|
+
<xs:element name='Reference' type='ns1:tcReference'/>
|
10
|
+
<xs:element name='Signature' type='tns:Signature'/>
|
11
|
+
<xs:element name='SignatureMethod' type='tns:tcSignatureMethod'/>
|
12
|
+
<xs:element name='Transform' type='ns1:tcTransform'/>
|
13
|
+
<xs:element name='Transforms' type='ns1:tcTransforms'/>
|
14
|
+
<xs:element name='X509Data' type='tns:tcX509Data'/>
|
15
|
+
<xs:element name='tcCanonicalizationMethod' type='tns:tcCanonicalizationMethod'/>
|
16
|
+
<xs:element name='tcDigestMethod' type='tns:tcDigestMethod'/>
|
17
|
+
<xs:element name='tcSignatureMethod' type='tns:tcSignatureMethod'/>
|
18
|
+
<xs:element name='tcX509Data' type='tns:tcX509Data'/>
|
19
|
+
<xs:complexType name='Signature'>
|
20
|
+
<xs:sequence>
|
21
|
+
<xs:element form='qualified' name='SignedInfo' type='ns1:tcSigInfo'/>
|
22
|
+
<xs:element form='qualified' name='SignatureValue' type='xs:string'/>
|
23
|
+
<xs:element form='qualified' name='KeyInfo' type='ns1:tcKeyInfo'/>
|
24
|
+
</xs:sequence>
|
25
|
+
</xs:complexType>
|
26
|
+
<xs:complexType name='tcCanonicalizationMethod'>
|
27
|
+
<xs:sequence/>
|
28
|
+
<xs:attribute ref='tns:Algorithm' use='required'/>
|
29
|
+
</xs:complexType>
|
30
|
+
<xs:complexType name='tcSignatureMethod'>
|
31
|
+
<xs:sequence/>
|
32
|
+
<xs:attribute ref='tns:Algorithm' use='required'/>
|
33
|
+
</xs:complexType>
|
34
|
+
<xs:complexType name='tcDigestMethod'>
|
35
|
+
<xs:sequence/>
|
36
|
+
<xs:attribute ref='tns:Algorithm' use='required'/>
|
37
|
+
</xs:complexType>
|
38
|
+
<xs:complexType name='tcX509Data'>
|
39
|
+
<xs:sequence>
|
40
|
+
<xs:element form='qualified' name='X509Certificate' type='xs:string'/>
|
41
|
+
</xs:sequence>
|
42
|
+
</xs:complexType>
|
43
|
+
<xs:attribute name='Algorithm' type='xs:string'/>
|
44
|
+
</xs:schema>
|
45
|
+
<xs:schema targetNamespace='http://www.betha.com.br/e-nota-contribuinte-ws' version='1.0' xmlns:ns1='http://www.w3.org/2000/09/xmldsig#' xmlns:tns='http://www.betha.com.br/e-nota-contribuinte-ws' xmlns:xs='http://www.w3.org/2001/XMLSchema'>
|
46
|
+
<xs:import namespace='http://www.w3.org/2000/09/xmldsig#'/>
|
47
|
+
<xs:element name='ConsultarNfsePorRpsEnvio' type='tns:ConsultarNfsePorRpsEnvio'/>
|
48
|
+
<xs:element name='ConsultarNfsePorRpsEnvioResponse' type='tns:ConsultarNfsePorRpsEnvioResponse'/>
|
49
|
+
<xs:element name='ConsultarNfseRpsEnvio' type='tns:ConsultarNfseRpsEnvio'/>
|
50
|
+
<xs:element name='ConsultarNfseRpsEnvioResponse' type='tns:ConsultarNfseRpsEnvioResponse'/>
|
51
|
+
<xs:complexType name='ConsultarNfsePorRpsEnvio'>
|
52
|
+
<xs:sequence>
|
53
|
+
<xs:element minOccurs='0' name='IdentificacaoRps' type='tns:tcIdentificacaoRps'/>
|
54
|
+
<xs:element minOccurs='0' name='Prestador' type='tns:tcIdentificacaoPrestador'/>
|
55
|
+
</xs:sequence>
|
56
|
+
</xs:complexType>
|
57
|
+
<xs:complexType name='tcIdentificacaoRps'>
|
58
|
+
<xs:sequence>
|
59
|
+
<xs:element name='Numero' type='xs:string'/>
|
60
|
+
<xs:element name='Serie' type='xs:string'/>
|
61
|
+
<xs:element name='Tipo' type='xs:int'/>
|
62
|
+
</xs:sequence>
|
63
|
+
</xs:complexType>
|
64
|
+
<xs:complexType name='tcIdentificacaoPrestador'>
|
65
|
+
<xs:sequence>
|
66
|
+
<xs:element name='Cnpj' type='xs:string'/>
|
67
|
+
<xs:element minOccurs='0' name='InscricaoMunicipal' type='xs:string'/>
|
68
|
+
</xs:sequence>
|
69
|
+
</xs:complexType>
|
70
|
+
<xs:complexType name='ConsultarNfsePorRpsEnvioResponse'>
|
71
|
+
<xs:sequence>
|
72
|
+
<xs:element minOccurs='0' name='ConsultarNfseRpsResposta' type='tns:consultarNfseRpsResposta'/>
|
73
|
+
</xs:sequence>
|
74
|
+
</xs:complexType>
|
75
|
+
<xs:complexType name='consultarNfseRpsResposta'>
|
76
|
+
<xs:sequence>
|
77
|
+
<xs:element name='ComplNfse' type='tns:tcCompNfse'/>
|
78
|
+
<xs:element minOccurs='0' name='ListaMensagemRetorno' type='tns:tcListaMensagemRetorno'/>
|
79
|
+
</xs:sequence>
|
80
|
+
</xs:complexType>
|
81
|
+
<xs:complexType name='tcCompNfse'>
|
82
|
+
<xs:sequence>
|
83
|
+
<xs:element name='Nfse' type='tns:tcNfse'/>
|
84
|
+
<xs:element minOccurs='0' name='NfseCancelamento' type='tns:tcCancelamentoNfse'/>
|
85
|
+
<xs:element minOccurs='0' name='NfseSubstituicao' type='tns:tcSubstituicaoNfse'/>
|
86
|
+
</xs:sequence>
|
87
|
+
</xs:complexType>
|
88
|
+
<xs:complexType name='tcNfse'>
|
89
|
+
<xs:sequence>
|
90
|
+
<xs:element name='InfNfse' type='tns:tcInfNfse'/>
|
91
|
+
</xs:sequence>
|
92
|
+
</xs:complexType>
|
93
|
+
<xs:complexType name='tcInfNfse'>
|
94
|
+
<xs:sequence>
|
95
|
+
<xs:element name='Numero' type='xs:string'/>
|
96
|
+
<xs:element name='CodigoVerificacao' type='xs:string'/>
|
97
|
+
<xs:element name='DataEmissao' type='xs:dateTime'/>
|
98
|
+
<xs:element minOccurs='0' name='IdentificacaoRps' type='tns:tcIdentificacaoRps'/>
|
99
|
+
<xs:element minOccurs='0' name='DataEmissaoRps' type='xs:dateTime'/>
|
100
|
+
<xs:element name='NaturezaOperacao' type='xs:int'/>
|
101
|
+
<xs:element minOccurs='0' name='RegimeEspecialTributacao' type='xs:int'/>
|
102
|
+
<xs:element name='OptanteSimplesNacional' type='xs:int'/>
|
103
|
+
<xs:element name='IncentivadorCultural' type='xs:int'/>
|
104
|
+
<xs:element name='Competencia' type='xs:dateTime'/>
|
105
|
+
<xs:element minOccurs='0' name='NfseSubstituta' type='xs:string'/>
|
106
|
+
<xs:element minOccurs='0' name='OutrasInformacoes' type='xs:string'/>
|
107
|
+
<xs:element name='Servico' type='tns:tcDadosServico'/>
|
108
|
+
<xs:element minOccurs='0' name='ValorCredito' type='xs:decimal'/>
|
109
|
+
<xs:element name='PrestadorServico' type='tns:tcDadosPrestador'/>
|
110
|
+
<xs:element name='TomadorServico' type='tns:tcDadosTomador'/>
|
111
|
+
<xs:element minOccurs='0' name='IntermediarioServico' type='tns:tcIdentificacaoIntermediarioServico'/>
|
112
|
+
<xs:element name='OrgaoGerador' type='tns:tcIdentificacaoOrgaoGerador'/>
|
113
|
+
<xs:element minOccurs='0' name='ConstrucaoCivil' type='tns:tcDadosConstrucaoCivil'/>
|
114
|
+
</xs:sequence>
|
115
|
+
<xs:attribute name='id' type='xs:string' use='required'/>
|
116
|
+
</xs:complexType>
|
117
|
+
<xs:complexType name='tcDadosServico'>
|
118
|
+
<xs:sequence>
|
119
|
+
<xs:element name='Valores' type='tns:tcValores'/>
|
120
|
+
<xs:element name='ItemListaServico' type='xs:string'/>
|
121
|
+
<xs:element minOccurs='0' name='CodigoCnae' type='xs:string'/>
|
122
|
+
<xs:element minOccurs='0' name='CodigoTributacaoMunicipio' type='xs:string'/>
|
123
|
+
<xs:element name='Discriminacao' type='xs:string'/>
|
124
|
+
<xs:element name='CodigoMunicipio' type='xs:int'/>
|
125
|
+
</xs:sequence>
|
126
|
+
</xs:complexType>
|
127
|
+
<xs:complexType name='tcValores'>
|
128
|
+
<xs:sequence>
|
129
|
+
<xs:element name='ValorServicos' type='xs:decimal'/>
|
130
|
+
<xs:element minOccurs='0' name='ValorDeducoes' type='xs:decimal'/>
|
131
|
+
<xs:element minOccurs='0' name='ValorPis' type='xs:decimal'/>
|
132
|
+
<xs:element minOccurs='0' name='ValorCofins' type='xs:decimal'/>
|
133
|
+
<xs:element minOccurs='0' name='ValorInss' type='xs:decimal'/>
|
134
|
+
<xs:element minOccurs='0' name='ValorIr' type='xs:decimal'/>
|
135
|
+
<xs:element minOccurs='0' name='ValorCsll' type='xs:decimal'/>
|
136
|
+
<xs:element minOccurs='0' name='IssRetido' type='xs:int'/>
|
137
|
+
<xs:element minOccurs='0' name='ValorIss' type='xs:decimal'/>
|
138
|
+
<xs:element minOccurs='0' name='OutrasRetencoes' type='xs:decimal'/>
|
139
|
+
<xs:element name='BaseCalculo' type='xs:decimal'/>
|
140
|
+
<xs:element minOccurs='0' name='Aliquota' type='xs:decimal'/>
|
141
|
+
<xs:element minOccurs='0' name='ValorLiquidoNfse' type='xs:decimal'/>
|
142
|
+
<xs:element minOccurs='0' name='ValorIssRetido' type='xs:decimal'/>
|
143
|
+
<xs:element minOccurs='0' name='DescontoCondicionado' type='xs:decimal'/>
|
144
|
+
<xs:element minOccurs='0' name='DescontoIncondicionado' type='xs:decimal'/>
|
145
|
+
</xs:sequence>
|
146
|
+
</xs:complexType>
|
147
|
+
<xs:complexType name='tcDadosPrestador'>
|
148
|
+
<xs:sequence>
|
149
|
+
<xs:element name='IdentificacaoPrestador' type='tns:tcIdentificacaoPrestador'/>
|
150
|
+
<xs:element name='RazaoSocial' type='xs:string'/>
|
151
|
+
<xs:element minOccurs='0' name='NomeFantasia' type='xs:string'/>
|
152
|
+
<xs:element name='Endereco' type='tns:tcEndereco'/>
|
153
|
+
<xs:element minOccurs='0' name='Contato' type='tns:tcContato'/>
|
154
|
+
</xs:sequence>
|
155
|
+
</xs:complexType>
|
156
|
+
<xs:complexType name='tcEndereco'>
|
157
|
+
<xs:sequence>
|
158
|
+
<xs:element minOccurs='0' name='Endereco' type='xs:string'/>
|
159
|
+
<xs:element minOccurs='0' name='Numero' type='xs:string'/>
|
160
|
+
<xs:element minOccurs='0' name='Complemento' type='xs:string'/>
|
161
|
+
<xs:element minOccurs='0' name='Bairro' type='xs:string'/>
|
162
|
+
<xs:element minOccurs='0' name='CodigoMunicipio' type='xs:int'/>
|
163
|
+
<xs:element minOccurs='0' name='Uf' type='xs:string'/>
|
164
|
+
<xs:element minOccurs='0' name='Cep' type='xs:string'/>
|
165
|
+
</xs:sequence>
|
166
|
+
</xs:complexType>
|
167
|
+
<xs:complexType name='tcContato'>
|
168
|
+
<xs:sequence>
|
169
|
+
<xs:element minOccurs='0' name='Telefone' type='xs:string'/>
|
170
|
+
<xs:element minOccurs='0' name='Email' type='xs:string'/>
|
171
|
+
</xs:sequence>
|
172
|
+
</xs:complexType>
|
173
|
+
<xs:complexType name='tcDadosTomador'>
|
174
|
+
<xs:sequence>
|
175
|
+
<xs:element minOccurs='0' name='IdentificacaoTomador' type='tns:tcIdentificacaoTomador'/>
|
176
|
+
<xs:element minOccurs='0' name='RazaoSocial' type='xs:string'/>
|
177
|
+
<xs:element minOccurs='0' name='Endereco' type='tns:tcEndereco'/>
|
178
|
+
<xs:element minOccurs='0' name='Contato' type='tns:tcContato'/>
|
179
|
+
</xs:sequence>
|
180
|
+
</xs:complexType>
|
181
|
+
<xs:complexType name='tcIdentificacaoTomador'>
|
182
|
+
<xs:sequence>
|
183
|
+
<xs:element minOccurs='0' name='CpfCnpj' type='tns:tcCpfCnpj'/>
|
184
|
+
<xs:element minOccurs='0' name='InscricaoMunicipal' type='xs:string'/>
|
185
|
+
<xs:element minOccurs='0' name='InscricaoEstadual' type='xs:string'/>
|
186
|
+
</xs:sequence>
|
187
|
+
</xs:complexType>
|
188
|
+
<xs:complexType name='tcCpfCnpj'>
|
189
|
+
<xs:sequence>
|
190
|
+
<xs:element minOccurs='0' name='Cnpj' type='xs:string'/>
|
191
|
+
<xs:element minOccurs='0' name='Cpf' type='xs:string'/>
|
192
|
+
</xs:sequence>
|
193
|
+
</xs:complexType>
|
194
|
+
<xs:complexType name='tcIdentificacaoIntermediarioServico'>
|
195
|
+
<xs:sequence>
|
196
|
+
<xs:element name='RazaoSocial' type='xs:string'/>
|
197
|
+
<xs:element name='CpfCnpj' type='tns:tcCpfCnpj'/>
|
198
|
+
<xs:element minOccurs='0' name='InscricaoMunicipal' type='xs:string'/>
|
199
|
+
</xs:sequence>
|
200
|
+
</xs:complexType>
|
201
|
+
<xs:complexType name='tcIdentificacaoOrgaoGerador'>
|
202
|
+
<xs:sequence>
|
203
|
+
<xs:element name='CodigoMunicipio' type='xs:int'/>
|
204
|
+
<xs:element name='Uf' type='xs:string'/>
|
205
|
+
</xs:sequence>
|
206
|
+
</xs:complexType>
|
207
|
+
<xs:complexType name='tcDadosConstrucaoCivil'>
|
208
|
+
<xs:sequence>
|
209
|
+
<xs:element name='CodigoObra' type='xs:string'/>
|
210
|
+
<xs:element name='Art' type='xs:string'/>
|
211
|
+
</xs:sequence>
|
212
|
+
</xs:complexType>
|
213
|
+
<xs:complexType name='tcCancelamentoNfse'>
|
214
|
+
<xs:sequence>
|
215
|
+
<xs:element name='Confirmacao' type='tns:tcConfirmacaoCancelamento'/>
|
216
|
+
</xs:sequence>
|
217
|
+
</xs:complexType>
|
218
|
+
<xs:complexType name='tcConfirmacaoCancelamento'>
|
219
|
+
<xs:sequence>
|
220
|
+
<xs:element name='Pedido' type='tns:tcPedidoCancelamento'/>
|
221
|
+
<xs:element name='InfConfirmacaoCancelamento' type='tns:tcInfConfirmacaoCancelamento'/>
|
222
|
+
</xs:sequence>
|
223
|
+
<xs:attribute name='Id' type='xs:string' use='required'/>
|
224
|
+
</xs:complexType>
|
225
|
+
<xs:complexType name='tcPedidoCancelamento'>
|
226
|
+
<xs:sequence>
|
227
|
+
<xs:element name='InfPedidoCancelamento' type='tns:tcInfPedidoCancelamento'/>
|
228
|
+
<xs:element ref='ns1:Signature'/>
|
229
|
+
</xs:sequence>
|
230
|
+
</xs:complexType>
|
231
|
+
<xs:complexType name='tcInfPedidoCancelamento'>
|
232
|
+
<xs:sequence>
|
233
|
+
<xs:element name='IdentificacaoNfse' type='tns:tcIdentificacaoNfse'/>
|
234
|
+
<xs:element name='CodigoCancelamento' type='xs:string'/>
|
235
|
+
</xs:sequence>
|
236
|
+
<xs:attribute name='Id' type='xs:string' use='required'/>
|
237
|
+
</xs:complexType>
|
238
|
+
<xs:complexType name='tcIdentificacaoNfse'>
|
239
|
+
<xs:sequence>
|
240
|
+
<xs:element name='Numero' type='xs:string'/>
|
241
|
+
<xs:element name='Cnpj' type='xs:string'/>
|
242
|
+
<xs:element minOccurs='0' name='InscricaoMunicipal' type='xs:string'/>
|
243
|
+
<xs:element name='CodigoMunicipio' type='xs:string'/>
|
244
|
+
</xs:sequence>
|
245
|
+
</xs:complexType>
|
246
|
+
<xs:complexType name='tcSigInfo'>
|
247
|
+
<xs:sequence>
|
248
|
+
<xs:element ref='ns1:CanonicalizationMethod'/>
|
249
|
+
<xs:element ref='ns1:SignatureMethod'/>
|
250
|
+
<xs:element ref='ns1:Reference'/>
|
251
|
+
</xs:sequence>
|
252
|
+
</xs:complexType>
|
253
|
+
<xs:complexType name='tcReference'>
|
254
|
+
<xs:sequence>
|
255
|
+
<xs:element ref='ns1:Transforms'/>
|
256
|
+
<xs:element ref='ns1:DigestMethod'/>
|
257
|
+
<xs:element ref='ns1:DigestValue'/>
|
258
|
+
</xs:sequence>
|
259
|
+
<xs:attribute name='URI' type='xs:string' use='required'/>
|
260
|
+
</xs:complexType>
|
261
|
+
<xs:complexType name='tcTransforms'>
|
262
|
+
<xs:sequence>
|
263
|
+
<xs:element maxOccurs='unbounded' ref='ns1:Transform'/>
|
264
|
+
</xs:sequence>
|
265
|
+
</xs:complexType>
|
266
|
+
<xs:complexType name='tcTransform'>
|
267
|
+
<xs:sequence/>
|
268
|
+
<xs:attribute name='Algorithm' type='xs:string' use='required'/>
|
269
|
+
</xs:complexType>
|
270
|
+
<xs:complexType name='tcKeyInfo'>
|
271
|
+
<xs:sequence>
|
272
|
+
<xs:element ref='ns1:X509Data'/>
|
273
|
+
</xs:sequence>
|
274
|
+
</xs:complexType>
|
275
|
+
<xs:complexType name='tcInfConfirmacaoCancelamento'>
|
276
|
+
<xs:sequence>
|
277
|
+
<xs:element name='Sucesso' type='xs:boolean'/>
|
278
|
+
<xs:element name='DataHora' type='xs:dateTime'/>
|
279
|
+
</xs:sequence>
|
280
|
+
</xs:complexType>
|
281
|
+
<xs:complexType name='tcSubstituicaoNfse'>
|
282
|
+
<xs:sequence>
|
283
|
+
<xs:element name='SubstituicaoNfse' type='tns:tcInfSubstituicaoNfse'/>
|
284
|
+
</xs:sequence>
|
285
|
+
</xs:complexType>
|
286
|
+
<xs:complexType name='tcInfSubstituicaoNfse'>
|
287
|
+
<xs:sequence>
|
288
|
+
<xs:element name='NfseSubstituidora' type='xs:string'/>
|
289
|
+
</xs:sequence>
|
290
|
+
<xs:attribute name='Id' type='xs:string' use='required'/>
|
291
|
+
</xs:complexType>
|
292
|
+
<xs:complexType name='tcListaMensagemRetorno'>
|
293
|
+
<xs:sequence>
|
294
|
+
<xs:element maxOccurs='unbounded' name='MensagemRetorno' type='tns:tcMensagemRetorno'/>
|
295
|
+
</xs:sequence>
|
296
|
+
</xs:complexType>
|
297
|
+
<xs:complexType name='tcMensagemRetorno'>
|
298
|
+
<xs:sequence>
|
299
|
+
<xs:element name='Codigo' type='xs:string'/>
|
300
|
+
<xs:element name='Mensagem' type='xs:string'/>
|
301
|
+
<xs:element minOccurs='0' name='Correcao' type='xs:string'/>
|
302
|
+
</xs:sequence>
|
303
|
+
</xs:complexType>
|
304
|
+
<xs:complexType name='ConsultarNfseRpsEnvio'>
|
305
|
+
<xs:sequence>
|
306
|
+
<xs:element minOccurs='0' name='IdentificacaoRps' type='tns:tcIdentificacaoRps'/>
|
307
|
+
<xs:element minOccurs='0' name='Prestador' type='tns:tcIdentificacaoPrestador'/>
|
308
|
+
</xs:sequence>
|
309
|
+
</xs:complexType>
|
310
|
+
<xs:complexType name='ConsultarNfseRpsEnvioResponse'>
|
311
|
+
<xs:sequence>
|
312
|
+
<xs:element minOccurs='0' name='ConsultarNfseRpsResposta' type='tns:consultarNfseRpsResposta'/>
|
313
|
+
</xs:sequence>
|
314
|
+
</xs:complexType>
|
315
|
+
</xs:schema>
|
316
|
+
</types>
|
317
|
+
<message name='ConsultarNEPorRps_ConsultarNfseRpsEnvio'>
|
318
|
+
<part element='tns:ConsultarNfseRpsEnvio' name='ConsultarNfseRpsEnvio'></part>
|
319
|
+
</message>
|
320
|
+
<message name='ConsultarNEPorRps_ConsultarNfsePorRpsEnvio'>
|
321
|
+
<part element='tns:ConsultarNfsePorRpsEnvio' name='ConsultarNfsePorRpsEnvio'></part>
|
322
|
+
</message>
|
323
|
+
<message name='ConsultarNEPorRps_ConsultarNfsePorRpsEnvioResponse'>
|
324
|
+
<part element='tns:ConsultarNfsePorRpsEnvioResponse' name='ConsultarNfsePorRpsEnvioResponse'></part>
|
325
|
+
</message>
|
326
|
+
<message name='ConsultarNEPorRps_ConsultarNfseRpsEnvioResponse'>
|
327
|
+
<part element='tns:ConsultarNfseRpsEnvioResponse' name='ConsultarNfseRpsEnvioResponse'></part>
|
328
|
+
</message>
|
329
|
+
<portType name='ConsultarNEPorRps'>
|
330
|
+
<operation name='ConsultarNfsePorRpsEnvio' parameterOrder='ConsultarNfsePorRpsEnvio'>
|
331
|
+
<input message='tns:ConsultarNEPorRps_ConsultarNfsePorRpsEnvio'></input>
|
332
|
+
<output message='tns:ConsultarNEPorRps_ConsultarNfsePorRpsEnvioResponse'></output>
|
333
|
+
</operation>
|
334
|
+
<operation name='ConsultarNfseRpsEnvio' parameterOrder='ConsultarNfseRpsEnvio'>
|
335
|
+
<input message='tns:ConsultarNEPorRps_ConsultarNfseRpsEnvio'></input>
|
336
|
+
<output message='tns:ConsultarNEPorRps_ConsultarNfseRpsEnvioResponse'></output>
|
337
|
+
</operation>
|
338
|
+
</portType>
|
339
|
+
<binding name='ConsultarNEPorRpsBinding' type='tns:ConsultarNEPorRps'>
|
340
|
+
<soap:binding style='document' transport='http://schemas.xmlsoap.org/soap/http'/>
|
341
|
+
<operation name='ConsultarNfsePorRpsEnvio'>
|
342
|
+
<soap:operation soapAction=''/>
|
343
|
+
<input>
|
344
|
+
<soap:body use='literal'/>
|
345
|
+
</input>
|
346
|
+
<output>
|
347
|
+
<soap:body use='literal'/>
|
348
|
+
</output>
|
349
|
+
</operation>
|
350
|
+
<operation name='ConsultarNfseRpsEnvio'>
|
351
|
+
<soap:operation soapAction=''/>
|
352
|
+
<input>
|
353
|
+
<soap:body use='literal'/>
|
354
|
+
</input>
|
355
|
+
<output>
|
356
|
+
<soap:body use='literal'/>
|
357
|
+
</output>
|
358
|
+
</operation>
|
359
|
+
</binding>
|
360
|
+
<service name='ConsultarNEPorRpsService'>
|
361
|
+
<port binding='tns:ConsultarNEPorRpsBinding' name='ConsultarNEPorRpsPort'>
|
362
|
+
<soap:address location='http://e-gov.betha.com.br/e-nota-contribuinte-ws/consultarNfsePorRps'/>
|
363
|
+
</port>
|
364
|
+
</service>
|
365
|
+
</definitions>
|
@@ -0,0 +1,74 @@
|
|
1
|
+
<?xml version='1.0' encoding='UTF-8'?>
|
2
|
+
<definitions name='ConsultarSituacaoLoteRpsService' targetNamespace='http://www.betha.com.br/e-nota-contribuinte-ws' xmlns='http://schemas.xmlsoap.org/wsdl/' xmlns:soap='http://schemas.xmlsoap.org/wsdl/soap/' xmlns:tns='http://www.betha.com.br/e-nota-contribuinte-ws' xmlns:xsd='http://www.w3.org/2001/XMLSchema'>
|
3
|
+
<types>
|
4
|
+
<xs:schema targetNamespace='http://www.betha.com.br/e-nota-contribuinte-ws' version='1.0' xmlns:tns='http://www.betha.com.br/e-nota-contribuinte-ws' xmlns:xs='http://www.w3.org/2001/XMLSchema'>
|
5
|
+
<xs:element name='ConsultarSituacaoLoteRpsEnvio' type='tns:ConsultarSituacaoLoteRpsEnvio'/>
|
6
|
+
<xs:element name='ConsultarSituacaoLoteRpsEnvioResponse' type='tns:ConsultarSituacaoLoteRpsEnvioResponse'/>
|
7
|
+
<xs:complexType name='ConsultarSituacaoLoteRpsEnvio'>
|
8
|
+
<xs:sequence>
|
9
|
+
<xs:element minOccurs='0' name='Prestador' type='tns:tcIdentificacaoPrestador'/>
|
10
|
+
<xs:element minOccurs='0' name='Protocolo' type='xs:integer'/>
|
11
|
+
</xs:sequence>
|
12
|
+
</xs:complexType>
|
13
|
+
<xs:complexType name='tcIdentificacaoPrestador'>
|
14
|
+
<xs:sequence>
|
15
|
+
<xs:element name='Cnpj' type='xs:string'/>
|
16
|
+
<xs:element minOccurs='0' name='InscricaoMunicipal' type='xs:string'/>
|
17
|
+
</xs:sequence>
|
18
|
+
</xs:complexType>
|
19
|
+
<xs:complexType name='ConsultarSituacaoLoteRpsEnvioResponse'>
|
20
|
+
<xs:sequence>
|
21
|
+
<xs:element minOccurs='0' name='ConsultarSituacaoLoteRpsResposta' type='tns:consultarSituacaoLoteRpsResposta'/>
|
22
|
+
</xs:sequence>
|
23
|
+
</xs:complexType>
|
24
|
+
<xs:complexType name='consultarSituacaoLoteRpsResposta'>
|
25
|
+
<xs:sequence>
|
26
|
+
<xs:element minOccurs='0' name='NumeroLote' type='xs:integer'/>
|
27
|
+
<xs:element minOccurs='0' name='Situacao' type='xs:string'/>
|
28
|
+
<xs:element minOccurs='0' name='ListaMensagemRetorno' type='tns:tcListaMensagemRetorno'/>
|
29
|
+
</xs:sequence>
|
30
|
+
</xs:complexType>
|
31
|
+
<xs:complexType name='tcListaMensagemRetorno'>
|
32
|
+
<xs:sequence>
|
33
|
+
<xs:element maxOccurs='unbounded' name='MensagemRetorno' type='tns:tcMensagemRetorno'/>
|
34
|
+
</xs:sequence>
|
35
|
+
</xs:complexType>
|
36
|
+
<xs:complexType name='tcMensagemRetorno'>
|
37
|
+
<xs:sequence>
|
38
|
+
<xs:element name='Codigo' type='xs:string'/>
|
39
|
+
<xs:element name='Mensagem' type='xs:string'/>
|
40
|
+
<xs:element minOccurs='0' name='Correcao' type='xs:string'/>
|
41
|
+
</xs:sequence>
|
42
|
+
</xs:complexType>
|
43
|
+
</xs:schema>
|
44
|
+
</types>
|
45
|
+
<message name='ConsultarSituacaoLoteRps_ConsultarSituacaoLoteRpsEnvio'>
|
46
|
+
<part element='tns:ConsultarSituacaoLoteRpsEnvio' name='ConsultarSituacaoLoteRpsEnvio'></part>
|
47
|
+
</message>
|
48
|
+
<message name='ConsultarSituacaoLoteRps_ConsultarSituacaoLoteRpsEnvioResponse'>
|
49
|
+
<part element='tns:ConsultarSituacaoLoteRpsEnvioResponse' name='ConsultarSituacaoLoteRpsEnvioResponse'></part>
|
50
|
+
</message>
|
51
|
+
<portType name='ConsultarSituacaoLoteRps'>
|
52
|
+
<operation name='ConsultarSituacaoLoteRpsEnvio' parameterOrder='ConsultarSituacaoLoteRpsEnvio'>
|
53
|
+
<input message='tns:ConsultarSituacaoLoteRps_ConsultarSituacaoLoteRpsEnvio'></input>
|
54
|
+
<output message='tns:ConsultarSituacaoLoteRps_ConsultarSituacaoLoteRpsEnvioResponse'></output>
|
55
|
+
</operation>
|
56
|
+
</portType>
|
57
|
+
<binding name='ConsultarSituacaoLoteRpsBinding' type='tns:ConsultarSituacaoLoteRps'>
|
58
|
+
<soap:binding style='document' transport='http://schemas.xmlsoap.org/soap/http'/>
|
59
|
+
<operation name='ConsultarSituacaoLoteRpsEnvio'>
|
60
|
+
<soap:operation soapAction=''/>
|
61
|
+
<input>
|
62
|
+
<soap:body use='literal'/>
|
63
|
+
</input>
|
64
|
+
<output>
|
65
|
+
<soap:body use='literal'/>
|
66
|
+
</output>
|
67
|
+
</operation>
|
68
|
+
</binding>
|
69
|
+
<service name='ConsultarSituacaoLoteRpsService'>
|
70
|
+
<port binding='tns:ConsultarSituacaoLoteRpsBinding' name='ConsultarSituacaoLoteRpsPort'>
|
71
|
+
<soap:address location='http://e-gov.betha.com.br/e-nota-contribuinte-ws/consultarSituacaoLoteRps'/>
|
72
|
+
</port>
|
73
|
+
</service>
|
74
|
+
</definitions>
|