You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
115 lines
3.7 KiB
115 lines
3.7 KiB
# -*- coding: utf-8 -*-
|
|
# © 2016 Danimar Ribeiro, Trustcode
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
|
# Endereços Simpliss Piracicaba
|
|
# Homologação: http://wshomologacao.simplissweb.com.br/nfseservice.svc
|
|
# Homologação site: http://homologacaonovo.simplissweb.com.br/Account/Login
|
|
|
|
# Prod:http://sistemas.pmp.sp.gov.br/semfi/simpliss/contrib/Account/Login
|
|
# Prod:http://sistemas.pmp.sp.gov.br/semfi/simpliss/ws_nfse/nfseservice.svc
|
|
|
|
import os
|
|
from lxml import etree
|
|
from pytrustnfe import HttpClient
|
|
from pytrustnfe.xml import render_xml, sanitize_response
|
|
|
|
|
|
def _render_xml(certificado, method, **kwargs):
|
|
path = os.path.join(os.path.dirname(__file__), "templates")
|
|
xml_send = render_xml(path, "%s.xml" % method, True, **kwargs)
|
|
xml_send = etree.tostring(xml_send)
|
|
|
|
return xml_send
|
|
|
|
|
|
def _validate(method, xml):
|
|
path = os.path.join(os.path.dirname(__file__), "templates")
|
|
schema = os.path.join(path, "%s.xsd" % method)
|
|
|
|
nfe = etree.fromstring(xml)
|
|
esquema = etree.XMLSchema(etree.parse(schema))
|
|
esquema.validate(nfe)
|
|
erros = [x.message for x in esquema.error_log]
|
|
return erros
|
|
|
|
|
|
def _send(method, **kwargs):
|
|
if kwargs["ambiente"] == "producao":
|
|
base_url = "http://sistemas.pmp.sp.gov.br/semfi/simpliss/ws_nfse/nfseservice.svc" # noqa
|
|
else:
|
|
base_url = "http://wshomologacao.simplissweb.com.br/nfseservice.svc" # noqa
|
|
|
|
base_url = "http://wshomologacao.simplissweb.com.br/nfseservice.svc"
|
|
xml_send = kwargs["xml"]
|
|
path = os.path.join(os.path.dirname(__file__), "templates")
|
|
soap = render_xml(path, "SoapRequest.xml", False, soap_body=xml_send)
|
|
|
|
act = "http://www.sistema.com.br/Sistema.Ws.Nfse/INfseService/%s" % method
|
|
|
|
client = HttpClient(base_url)
|
|
response = client.post_soap(soap, act)
|
|
|
|
response, obj = sanitize_response(response)
|
|
return {"sent_xml": xml_send, "received_xml": response, "object": obj}
|
|
|
|
|
|
def xml_recepcionar_lote_rps(certificado, **kwargs):
|
|
return _render_xml(certificado, "RecepcionarLoteRps", **kwargs)
|
|
|
|
|
|
def recepcionar_lote_rps(certificado, **kwargs):
|
|
if "xml" not in kwargs:
|
|
kwargs["xml"] = xml_recepcionar_lote_rps(certificado, **kwargs)
|
|
return _send("RecepcionarLoteRps", **kwargs)
|
|
|
|
|
|
def xml_consultar_situacao_lote(certificado, **kwargs):
|
|
return _render_xml(certificado, "ConsultarSituacaoLoteRps", **kwargs)
|
|
|
|
|
|
def consultar_situacao_lote(certificado, **kwargs):
|
|
if "xml" not in kwargs:
|
|
kwargs["xml"] = xml_consultar_situacao_lote(certificado, **kwargs)
|
|
return _send("ConsultarSituacaoLoteRps", **kwargs)
|
|
|
|
|
|
def consultar_nfse_por_rps(certificado, **kwargs):
|
|
return _send("ConsultarNfsePorRps", **kwargs)
|
|
|
|
|
|
def xml_consultar_lote_rps(certificado, **kwargs):
|
|
return _render_xml(certificado, "ConsultarLoteRps", **kwargs)
|
|
|
|
|
|
def consultar_lote_rps(certificado, **kwargs):
|
|
if "xml" not in kwargs:
|
|
kwargs["xml"] = xml_consultar_lote_rps(certificado, **kwargs)
|
|
return _send("ConsultarLoteRps", **kwargs)
|
|
|
|
|
|
def xml_consultar_nfse(certificado, **kwargs):
|
|
return _render_xml(certificado, "ConsultarNfse", **kwargs)
|
|
|
|
|
|
def consultar_nfse(certificado, **kwargs):
|
|
return _send("ConsultarNfse", **kwargs)
|
|
|
|
|
|
def xml_cancelar_nfse(certificado, **kwargs):
|
|
return _render_xml(certificado, "CancelarNfse", **kwargs)
|
|
|
|
|
|
def cancelar_nfse(certificado, **kwargs):
|
|
if "xml" not in kwargs:
|
|
kwargs["xml"] = xml_cancelar_nfse(certificado, **kwargs)
|
|
return _send("CancelarNfse", **kwargs)
|
|
|
|
|
|
def xml_gerar_nfse(certificado, **kwargs):
|
|
return _render_xml(certificado, "GerarNfse", **kwargs)
|
|
|
|
|
|
def gerar_nfse(certificado, **kwargs):
|
|
if "xml" not in kwargs:
|
|
kwargs["xml"] = xml_recepcionar_lote_rps(certificado, **kwargs)
|
|
return _send("GerarNfse", **kwargs)
|