-
Notifications
You must be signed in to change notification settings - Fork 0
/
emitenota.py
78 lines (60 loc) · 1.97 KB
/
emitenota.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
import requests
import json
class notaFiscalServico:
def notaFiscalS(self,idExterno,ambienteEmissao, enviarPorEmail, tipoPessoa, nome, email, telefone, cpfCnpj, uf, cidade, logradouro, numero, complemento, bairro,cep, descricao, aliquotaIss, issRetidoFonte,valorTotal):
#Colocar algumas tratativas
if enviarPorEmail == 'true':
enviarPorEmail = True
else:
enviarPorEmail = False
if issRetidoFonte == 'true':
issRetidoFonte = True
else:
issRetidoFonte = False
uf = uf[:2]
nfse = {
"idExterno": idExterno,
"ambienteEmissao": ambienteEmissao,
"enviarPorEmail": enviarPorEmail,
"cliente": {
"tipoPessoa": tipoPessoa,
"nome": nome,
"email": email,
"telefone": telefone,
"cpfCnpj": cpfCnpj,
"endereco": {
"uf": uf,
"cidade": cidade,
"logradouro": logradouro,
"numero": numero,
"complemento": complemento,
"bairro": bairro,
"cep": cep
}
},
"servico":{
"descricao": descricao,
"aliquotaIss": float(aliquotaIss),
"issRetidoFonte": issRetidoFonte,
"valorCofins": 0.00,
"valorCsll": 0.00,
"valorInss": 0.00,
"valorIr": 0.00,
"valorPis": 0.00,
},
"valorTotal": float(valorTotal),
"observacoes": "Essa nota não tem valor fiscal, NOTA DE TESTE"
}
return nfse
def Emite(self,nfse):
APIKEY = 'APIKey'
Empresa_ID = 'teste'
url = "https://api.enotasgw.com.br/v1/empresas/" + Empresa_ID + "/nfse"
payload = json.dumps(nfse)
headers = {
'accept': "application/json",
'content-type': "application/json",
'authorization': "Basic " + APIKEY
}
response = requests.request("POST", url, data=payload, headers=headers)
print(response.text)