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.
14 lines
520 B
14 lines
520 B
|
|
|
|
def nfeInutilizacaoCE(session, xml_send):
|
|
soap = '<Envelope xmlns="http://www.w3.org/2003/05/soap-envelope"><Body>\
|
|
<nfeDadosMsg xmlns="http://www.portalfiscal.inf.br/nfe/wsdl/NFeInutilizacao4"\
|
|
>' + xml_send + '</nfeDadosMsg></Body></Envelope>'
|
|
headers = {
|
|
'SOAPAction': "",
|
|
'Content-Type': 'application/soap+xml; charset="utf-8"'
|
|
}
|
|
response = session.post(
|
|
'https://nfeh.sefaz.ce.gov.br/nfe4/services/NFeInutilizacao4',
|
|
data=soap, headers=headers)
|
|
return response
|