Example #1
0
    def get_xml(self):
        xml = XMLNFe.get_xml(self)
        xml += '<nfeDadosMsg>'
        xml += tirar_acentos(self.dados.xml)
        xml += '</nfeDadosMsg>'

        return xml
Example #2
0
    def get_xml(self):
        xml = XMLNFe.get_xml(self)
        xml += '<nfeDadosMsg>'
        xml += tirar_acentos(self.dados.xml)
        xml += '</nfeDadosMsg>'

        return xml
Example #3
0
    def get_xml(self):
        self._header['SOAPAction'] = self.metodo

        xml = XMLNFe.get_xml(self)
        xml += ABERTURA
        xml += '<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:nfse="http://wsnfe2.dsfnet.com.br">'
        xml += '<soap:Body>'
        xml += '<nfse:' + self.metodo + '>'
        xml += '<mensagemXml>'
        xml += tirar_acentos(self.envio.xml)
        xml += '</mensagemXml>'
        xml += '</nfse:' + self.metodo + '>'
        xml += '</soap:Body>'
        xml += '</soap:Envelope>'
        return xml
Example #4
0
    def get_xml(self):
        self._header['SOAPAction'] = self.metodo

        xml = XMLNFe.get_xml(self)
        xml += ABERTURA
        xml += '<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:nfse="http://wsnfe2.dsfnet.com.br">'
        xml +=     '<soap:Body>'
        xml +=         '<nfse:' + self.metodo + '>'
        xml +=             '<mensagemXml>'
        xml += tirar_acentos(self.envio.xml)
        xml +=             '</mensagemXml>'
        xml +=         '</nfse:' + self.metodo + '>'
        xml +=     '</soap:Body>'
        xml += '</soap:Envelope>'
        return xml
Example #5
0
 def get_xml(self):
     xml = XMLNFe.get_xml(self)
     xml += ABERTURA
     xml += '<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:nfse="http://wsnfe2.dsfnet.com.br">'
     xml += '<soap:Body>'
     xml += '<nfse:' + self.metodo + 'Response xmlns:nfse="http://wsnfe2.dsfnet.com.br">'
     xml += '<sr:result xmlns:sr="http://www.w3.org/2003/05/soap-rpc">'
     xml += self.metodo + 'Return'
     xml += '</sr:result>'
     xml += '<' + self.metodo + 'Return>'
     xml += tirar_acentos(self.resposta.xml)
     xml += '</' + self.metodo + 'Return>'
     xml += '</nfse:' + self.metodo + 'Response>'
     xml += '</soap:Body>'
     xml += '</soap:Envelope>'
     return xml
Example #6
0
 def get_xml(self):
     xml = XMLNFe.get_xml(self)
     xml += ABERTURA
     xml += '<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:nfse="http://wsnfe2.dsfnet.com.br">'
     xml +=     '<soap:Body>'
     xml +=         '<nfse:' + self.metodo + 'Response xmlns:nfse="http://wsnfe2.dsfnet.com.br">'
     xml +=             '<sr:result xmlns:sr="http://www.w3.org/2003/05/soap-rpc">'
     xml +=                 self.metodo + 'Return'
     xml +=             '</sr:result>'
     xml +=             '<' + self.metodo + 'Return>'
     xml += tirar_acentos(self.resposta.xml)
     xml +=             '</' + self.metodo + 'Return>'
     xml +=         '</nfse:' + self.metodo + 'Response>'
     xml +=     '</soap:Body>'
     xml += '</soap:Envelope>'
     return xml
Example #7
0
 def get_xml(self):
     xml = XMLNFe.get_xml(self)
     xml += '<nfeCabecMsg>'
     xml += tirar_acentos(self.cabec.xml)
     xml += '</nfeCabecMsg>'
     return xml
Example #8
0
 def get_xml(self):
     xml = XMLNFe.get_xml(self)
     xml += '<nfeCabecMsg>'
     xml += tirar_acentos(self.cabec.xml)
     xml += '</nfeCabecMsg>'
     return xml