You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fala pessoal, percebi que nessa função existe o retorno de algumas coisas como: cliente.service.GerarNfse(cabecalho, xml)
Porém não compreendi como que GerarNfse pode ser uma classe ligada ao atributo service da classe Client.
``
cliente = Client(url, transport = HttpAuthenticated(key=chave, cert=cert, endereco=url))
# gerar nfse
if metodo == 'gerar':
return cliente.service.GerarNfse(cabecalho, xml)
elif metodo == 'enviar_lote':
return cliente.service.RecepcionarLoteRpsV3(cabecalho, xml)
elif metodo == 'consulta':
return cliente.service.ConsultarNfseV3(cabecalho, xml)
elif metodo == 'consulta_lote':
return cliente.service.ConsultarLoteRpsV3(cabecalho, xml)
elif metodo == 'consulta_situacao_lote':
return cliente.service.ConsultarSituacaoLoteRpsV3(cabecalho, xml)
elif metodo == 'consultaRps':
return cliente.service.ConsultarNfsePorRpsV3(cabecalho, xml)
elif metodo == 'consultaFaixa':
return cliente.service.ConsultarNfseFaixa(cabecalho, xml)
elif metodo == 'cancelar':
# versão 2
return cliente.service.CancelarNfse(xml)
# versão 3
# return cliente.service.CancelarNfseV3(cabecalho, xml)
# TODO outros metodos
else:
raise Exception('Método não implementado no autorizador.')
except Exception as e:
raise e
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Fala pessoal, percebi que nessa função existe o retorno de algumas coisas como: cliente.service.GerarNfse(cabecalho, xml)
Porém não compreendi como que GerarNfse pode ser uma classe ligada ao atributo service da classe Client.
PyNFe/pynfe/processamento/comunicacao.py
Line 677 in a54de70
``
cliente = Client(url, transport = HttpAuthenticated(key=chave, cert=cert, endereco=url))
``
Beta Was this translation helpful? Give feedback.
All reactions