Module: Rnfse::XMLBuilder::Abrasf10::ClassMethods
- Included in:
- Rnfse::XMLBuilder::Abrasf10
- Defined in:
- lib/rnfse/xml_builder/abrasf_1_0.rb
Instance Method Summary collapse
- #build_cancelar_nfse_xml(hash = {}) ⇒ Object
- #build_consultar_lote_rps_xml(hash = {}) ⇒ Object
- #build_consultar_nfse_por_rps_xml(hash = {}) ⇒ Object
- #build_consultar_nfse_xml(hash = {}) ⇒ Object
- #build_consultar_situacao_lote_rps_xml(hash = {}) ⇒ Object
- #build_recepcionar_lote_rps_xml(hash = {}) ⇒ Object
Instance Method Details
#build_cancelar_nfse_xml(hash = {}) ⇒ Object
47 48 49 50 51 52 53 |
# File 'lib/rnfse/xml_builder/abrasf_1_0.rb', line 47 def build_cancelar_nfse_xml(hash = {}) if block_given? build_xml('CancelarNfseEnvio', hash, &Proc.new) else build_xml('CancelarNfseEnvio', hash) end end |
#build_consultar_lote_rps_xml(hash = {}) ⇒ Object
39 40 41 42 43 44 45 |
# File 'lib/rnfse/xml_builder/abrasf_1_0.rb', line 39 def build_consultar_lote_rps_xml(hash = {}) if block_given? build_xml('ConsultarLoteRpsEnvio', hash, &Proc.new) else build_xml('ConsultarLoteRpsEnvio', hash) end end |
#build_consultar_nfse_por_rps_xml(hash = {}) ⇒ Object
23 24 25 26 27 28 29 |
# File 'lib/rnfse/xml_builder/abrasf_1_0.rb', line 23 def build_consultar_nfse_por_rps_xml(hash = {}) if block_given? build_xml('ConsultarNfseRpsEnvio', hash, &Proc.new) else build_xml('ConsultarNfseRpsEnvio', hash) end end |
#build_consultar_nfse_xml(hash = {}) ⇒ Object
31 32 33 34 35 36 37 |
# File 'lib/rnfse/xml_builder/abrasf_1_0.rb', line 31 def build_consultar_nfse_xml(hash = {}) if block_given? build_xml('ConsultarNfseEnvio', hash, &Proc.new) else build_xml('ConsultarNfseEnvio', hash) end end |
#build_consultar_situacao_lote_rps_xml(hash = {}) ⇒ Object
15 16 17 18 19 20 21 |
# File 'lib/rnfse/xml_builder/abrasf_1_0.rb', line 15 def build_consultar_situacao_lote_rps_xml(hash = {}) if block_given? build_xml('ConsultarSituacaoLoteRpsEnvio', hash, &Proc.new) else build_xml('ConsultarSituacaoLoteRpsEnvio', hash) end end |
#build_recepcionar_lote_rps_xml(hash = {}) ⇒ Object
7 8 9 10 11 12 13 |
# File 'lib/rnfse/xml_builder/abrasf_1_0.rb', line 7 def build_recepcionar_lote_rps_xml(hash = {}) if block_given? build_xml('EnviarLoteRpsEnvio', hash, &Proc.new) else build_xml('EnviarLoteRpsEnvio', hash) end end |