ipiranga-inovai-project-lib 1.3__py3-none-any.whl → 1.5__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- inovai/enums.py +3 -0
- inovai/models/NFeDadosAtivos.py +129 -0
- inovai/models/NFeItem.py +218 -208
- {ipiranga_inovai_project_lib-1.3.dist-info → ipiranga_inovai_project_lib-1.5.dist-info}/METADATA +1 -1
- {ipiranga_inovai_project_lib-1.3.dist-info → ipiranga_inovai_project_lib-1.5.dist-info}/RECORD +8 -7
- {ipiranga_inovai_project_lib-1.3.dist-info → ipiranga_inovai_project_lib-1.5.dist-info}/LICENSE +0 -0
- {ipiranga_inovai_project_lib-1.3.dist-info → ipiranga_inovai_project_lib-1.5.dist-info}/WHEEL +0 -0
- {ipiranga_inovai_project_lib-1.3.dist-info → ipiranga_inovai_project_lib-1.5.dist-info}/top_level.txt +0 -0
inovai/enums.py
CHANGED
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
class NFeDadosAtivos:
|
|
2
|
+
codBem: str
|
|
3
|
+
dataOperacao: str
|
|
4
|
+
anoRegistroOperacao: str
|
|
5
|
+
descricao: str
|
|
6
|
+
valorCreditoICMS: str
|
|
7
|
+
valorCredDifAliq: str
|
|
8
|
+
tipoBem: str
|
|
9
|
+
vidaUtil: str
|
|
10
|
+
descricaoFuncao: str
|
|
11
|
+
indUtilizacaoBem: str
|
|
12
|
+
indNaturezaBem: str
|
|
13
|
+
numMesesEstorno: str
|
|
14
|
+
codContaAnaliticaBem: str
|
|
15
|
+
identSituacaoBem: str
|
|
16
|
+
indOpGeradoraCredito: str
|
|
17
|
+
codGrupoBem: str
|
|
18
|
+
descGrupoBem: str
|
|
19
|
+
dataLancamento: str
|
|
20
|
+
indOrigemCredito: str
|
|
21
|
+
indUtilizacaoBem: str
|
|
22
|
+
valorDepreciAmortiza: str
|
|
23
|
+
valorBaseCreditoPisPasep: str
|
|
24
|
+
indNumeroParcela: str
|
|
25
|
+
codSituacaoPis: str
|
|
26
|
+
valorBasePis: str
|
|
27
|
+
aliquotaPis: str
|
|
28
|
+
valorPis: str
|
|
29
|
+
codSituacaoCofins: str
|
|
30
|
+
valorBaseCofins: str
|
|
31
|
+
aliquotaCofins: str
|
|
32
|
+
valorCofins: str
|
|
33
|
+
|
|
34
|
+
def __init__(self, **kwargs):
|
|
35
|
+
for key, value in kwargs.items():
|
|
36
|
+
setattr(self, key, value)
|
|
37
|
+
|
|
38
|
+
def get_codBem(self):
|
|
39
|
+
return self.codBem
|
|
40
|
+
|
|
41
|
+
def get_dataOperacao(self):
|
|
42
|
+
return self.dataOperacao
|
|
43
|
+
|
|
44
|
+
def get_anoRegistroOperacao(self):
|
|
45
|
+
return self.anoRegistroOperacao
|
|
46
|
+
|
|
47
|
+
def get_descricao(self):
|
|
48
|
+
return self.descricao
|
|
49
|
+
|
|
50
|
+
def get_valorCreditoICMS(self):
|
|
51
|
+
return self.valorCreditoICMS
|
|
52
|
+
|
|
53
|
+
def get_valorCredDifAliq(self):
|
|
54
|
+
return self.valorCredDifAliq
|
|
55
|
+
|
|
56
|
+
def get_tipoBem(self):
|
|
57
|
+
return self.tipoBem
|
|
58
|
+
|
|
59
|
+
def get_vidaUtil(self):
|
|
60
|
+
return self.vidaUtil
|
|
61
|
+
|
|
62
|
+
def get_descricaoFuncao(self):
|
|
63
|
+
return self.descricaoFuncao
|
|
64
|
+
|
|
65
|
+
def get_indUtilizacaoBem(self):
|
|
66
|
+
return self.indUtilizacaoBem
|
|
67
|
+
|
|
68
|
+
def get_indNaturezaBem(self):
|
|
69
|
+
return self.indNaturezaBem
|
|
70
|
+
|
|
71
|
+
def get_numMesesEstorno(self):
|
|
72
|
+
return self.numMesesEstorno
|
|
73
|
+
|
|
74
|
+
def get_codContaAnaliticaBem(self):
|
|
75
|
+
return self.codContaAnaliticaBem
|
|
76
|
+
|
|
77
|
+
def get_identSituacaoBem(self):
|
|
78
|
+
return self.identSituacaoBem
|
|
79
|
+
|
|
80
|
+
def set_indOpGeradoraCredito(self):
|
|
81
|
+
self.indOpGeradoraCredito
|
|
82
|
+
|
|
83
|
+
def set_codGrupoBem(self):
|
|
84
|
+
self.codGrupoBem
|
|
85
|
+
|
|
86
|
+
def set_descGrupoBem(self):
|
|
87
|
+
self.descGrupoBem
|
|
88
|
+
|
|
89
|
+
def set_dataLancamento(self):
|
|
90
|
+
self.dataLancamento
|
|
91
|
+
|
|
92
|
+
def set_indOrigemCredito(self):
|
|
93
|
+
self.indOrigemCredito
|
|
94
|
+
|
|
95
|
+
def set_indUtilizacaoBem(self):
|
|
96
|
+
self.indUtilizacaoBem
|
|
97
|
+
|
|
98
|
+
def set_valorDepreciAmortiza(self):
|
|
99
|
+
self.valorDepreciAmortiza
|
|
100
|
+
|
|
101
|
+
def set_valorBaseCreditoPisPasep(self):
|
|
102
|
+
self.valorBaseCreditoPisPasep
|
|
103
|
+
|
|
104
|
+
def set_indNumeroParcela(self):
|
|
105
|
+
self.indNumeroParcela
|
|
106
|
+
|
|
107
|
+
def set_codSituacaoPis(self):
|
|
108
|
+
self.codSituacaoPis
|
|
109
|
+
|
|
110
|
+
def set_valorBasePis(self):
|
|
111
|
+
self.valorBasePis
|
|
112
|
+
|
|
113
|
+
def set_aliquotaPis(self):
|
|
114
|
+
self.aliquotaPis
|
|
115
|
+
|
|
116
|
+
def set_valorPis(self):
|
|
117
|
+
self.valorPis
|
|
118
|
+
|
|
119
|
+
def set_codSituacaoCofins(self):
|
|
120
|
+
self.codSituacaoCofins
|
|
121
|
+
|
|
122
|
+
def set_valorBaseCofins(self):
|
|
123
|
+
self.valorBaseCofins
|
|
124
|
+
|
|
125
|
+
def set_aliquotaCofins(self):
|
|
126
|
+
self.aliquotaCofins
|
|
127
|
+
|
|
128
|
+
def set_valorCofins(self):
|
|
129
|
+
self.valorCofins
|
inovai/models/NFeItem.py
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
from inovai.models.NFeDadosAtivos import NFeDadosAtivos
|
|
1
2
|
from inovai.models.NFeDocImportacao import NFeDocImportacao
|
|
2
3
|
from inovai.models.NFeImposto import NFeImposto
|
|
3
4
|
from inovai.models.NFeItemDadosCombustivel import NFeItemDadosCombustivel
|
|
@@ -5,248 +6,257 @@ from inovai.models.NFeItemExportacao import NFeItemExportacao
|
|
|
5
6
|
from inovai.models.NFeObservacaoItem import NFeObservacaoItem
|
|
6
7
|
import xml.etree.ElementTree as ET
|
|
7
8
|
|
|
9
|
+
|
|
8
10
|
class NFeItem:
|
|
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
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
11
|
+
DIs: [NFeDocImportacao]
|
|
12
|
+
cBarra: str
|
|
13
|
+
cBarraTrib: str
|
|
14
|
+
cEAN: str
|
|
15
|
+
cEANTrib: str
|
|
16
|
+
cest: str
|
|
17
|
+
cfop: str
|
|
18
|
+
codBeneficioFiscal: str
|
|
19
|
+
codConta: str
|
|
20
|
+
codFisJuridicaRef: str
|
|
21
|
+
codigoServLei116: str
|
|
22
|
+
descricaoLei116: str
|
|
23
|
+
dadosCombustivel: NFeItemDadosCombustivel
|
|
24
|
+
dadosExportacao: [NFeItemExportacao]
|
|
25
|
+
dadosObservacaoItem: [NFeObservacaoItem]
|
|
26
|
+
exTIPI: str
|
|
27
|
+
impostos: [NFeImposto]
|
|
28
|
+
impostosDevolvidos: [NFeImposto]
|
|
29
|
+
indFisJuridicaRef: int
|
|
30
|
+
indProduto: str
|
|
31
|
+
indTipoReferencia: str
|
|
32
|
+
item: int
|
|
33
|
+
nbm: str
|
|
34
|
+
ncm: str
|
|
35
|
+
numItemRef: int
|
|
36
|
+
numeroFCI: str
|
|
37
|
+
nve: str
|
|
38
|
+
pedidoExternoItem: int
|
|
39
|
+
pedidoExternoNumero: str
|
|
40
|
+
percentualDevolvido: float
|
|
41
|
+
produtoCodigo: str
|
|
42
|
+
produtoInfo: str
|
|
43
|
+
produtoNome: str
|
|
44
|
+
qtdDevolucaoRef: float
|
|
45
|
+
quantidade: float
|
|
46
|
+
quantidadeTrib: float
|
|
47
|
+
unidadeMedida: str
|
|
48
|
+
unidadeMedidaTrib: str
|
|
49
|
+
valorDesconto: float
|
|
50
|
+
valorDespAduaneira: float
|
|
51
|
+
valorFrete: float
|
|
52
|
+
valorIOF: float
|
|
53
|
+
valorOutros: float
|
|
54
|
+
valorSeguro: float
|
|
55
|
+
valorTotal: float
|
|
56
|
+
valorTotalTrib: float
|
|
57
|
+
valorUnitario: float
|
|
58
|
+
valorUnitarioTrib: float
|
|
59
|
+
dadosAtivos: [NFeDadosAtivos]
|
|
60
|
+
|
|
61
|
+
def __init__(self, **json):
|
|
62
|
+
if json:
|
|
63
|
+
for key, typeProp in self.__class__.__dict__['__annotations__'].items():
|
|
64
|
+
# str, float, bool, int
|
|
65
|
+
class_name = str(typeProp).split("'")[1].split(".")[-1]
|
|
66
|
+
|
|
67
|
+
if key in json:
|
|
68
|
+
if isinstance(typeProp, list):
|
|
69
|
+
cls = globals()[class_name]
|
|
70
|
+
items = []
|
|
71
|
+
for item_data in json[key]:
|
|
72
|
+
item = cls(**item_data)
|
|
73
|
+
items.append(item)
|
|
74
|
+
setattr(self, key, items)
|
|
75
|
+
elif class_name not in ('str', 'int', 'float', 'bool'):
|
|
76
|
+
cls = globals()[class_name]
|
|
77
|
+
instance = cls(**json[key])
|
|
78
|
+
setattr(self, key, instance)
|
|
79
|
+
else:
|
|
80
|
+
setattr(self, key, str(json[key]))
|
|
81
|
+
else:
|
|
82
|
+
if isinstance(typeProp, list):
|
|
83
|
+
# cls = globals()[class_name]
|
|
84
|
+
items = []
|
|
85
|
+
setattr(self, key, items)
|
|
86
|
+
elif class_name not in ('str', 'int', 'float', 'bool'):
|
|
87
|
+
cls = globals()[class_name]
|
|
88
|
+
instance = cls()
|
|
89
|
+
setattr(self, key, instance)
|
|
90
|
+
else:
|
|
91
|
+
setattr(self, key, '')
|
|
92
|
+
else:
|
|
93
|
+
for key, typeProp in self.__class__.__dict__['__annotations__'].items():
|
|
94
|
+
class_name = str(typeProp).split("'")[1].split(".")[-1]
|
|
95
|
+
if isinstance(typeProp, list):
|
|
96
|
+
# cls = globals()[class_name]
|
|
97
|
+
items = []
|
|
98
|
+
setattr(self, key, items)
|
|
99
|
+
elif class_name not in ('str', 'int', 'float', 'bool'):
|
|
100
|
+
cls = globals()[class_name]
|
|
101
|
+
instance = cls()
|
|
102
|
+
setattr(self, key, instance)
|
|
103
|
+
else:
|
|
104
|
+
setattr(self, key, '')
|
|
105
|
+
|
|
106
|
+
def get_dadosAtivos(self):
|
|
107
|
+
return self.dadosAtivos
|
|
108
|
+
|
|
109
|
+
def get_DIs(self):
|
|
110
|
+
return self.DIs
|
|
111
|
+
|
|
112
|
+
def get_cBarra(self):
|
|
113
|
+
return self.cBarra
|
|
114
|
+
|
|
115
|
+
def get_cBarraTrib(self):
|
|
116
|
+
return self.cBarraTrib
|
|
117
|
+
|
|
118
|
+
def get_cEAN(self):
|
|
119
|
+
return self.cEAN
|
|
120
|
+
|
|
121
|
+
def get_cEANTrib(self):
|
|
122
|
+
return self.cEANTrib
|
|
123
|
+
|
|
124
|
+
def get_cest(self):
|
|
125
|
+
return self.cest
|
|
126
|
+
|
|
127
|
+
def get_cfop(self):
|
|
128
|
+
return self.cfop
|
|
129
|
+
|
|
130
|
+
def get_codBeneficioFiscal(self):
|
|
131
|
+
return self.codBeneficioFiscal
|
|
132
|
+
|
|
133
|
+
def get_codConta(self):
|
|
134
|
+
return self.codConta
|
|
135
|
+
|
|
136
|
+
def get_codFisJuridicaRef(self):
|
|
137
|
+
return self.codFisJuridicaRef
|
|
138
|
+
|
|
139
|
+
def get_codigoServLei116(self):
|
|
140
|
+
return self.codigoServLei116
|
|
141
|
+
|
|
142
|
+
def get_dadosCombustivel(self):
|
|
143
|
+
return self.dadosCombustivel
|
|
144
|
+
|
|
145
|
+
def get_dadosExportacao(self):
|
|
146
|
+
return self.dadosExportacao
|
|
147
|
+
|
|
148
|
+
def get_dadosObservacaoItem(self):
|
|
149
|
+
return self.dadosObservacaoItem
|
|
150
|
+
|
|
151
|
+
def get_exTIPI(self):
|
|
152
|
+
return self.exTIPI
|
|
143
153
|
|
|
144
|
-
|
|
145
|
-
|
|
154
|
+
def get_impostos(self):
|
|
155
|
+
return self.impostos
|
|
146
156
|
|
|
147
|
-
|
|
148
|
-
|
|
157
|
+
def get_impostosDevolvidos(self):
|
|
158
|
+
return self.impostosDevolvidos
|
|
149
159
|
|
|
150
|
-
|
|
151
|
-
|
|
160
|
+
def get_indFisJuridicaRef(self):
|
|
161
|
+
return self.indFisJuridicaRef
|
|
152
162
|
|
|
153
|
-
|
|
154
|
-
|
|
163
|
+
def get_indProduto(self):
|
|
164
|
+
return self.indProduto
|
|
155
165
|
|
|
156
|
-
|
|
157
|
-
|
|
166
|
+
def get_indTipoReferencia(self):
|
|
167
|
+
return self.indTipoReferencia
|
|
158
168
|
|
|
159
|
-
|
|
160
|
-
|
|
169
|
+
def get_item(self):
|
|
170
|
+
return self.item
|
|
161
171
|
|
|
162
|
-
|
|
163
|
-
|
|
172
|
+
def get_nbm(self):
|
|
173
|
+
return self.nbm
|
|
164
174
|
|
|
165
|
-
|
|
166
|
-
|
|
175
|
+
def get_ncm(self):
|
|
176
|
+
return self.ncm
|
|
167
177
|
|
|
168
|
-
|
|
169
|
-
|
|
178
|
+
def get_numItemRef(self):
|
|
179
|
+
return self.numItemRef
|
|
170
180
|
|
|
171
|
-
|
|
172
|
-
|
|
181
|
+
def get_numeroFCI(self):
|
|
182
|
+
return self.numeroFCI
|
|
173
183
|
|
|
174
|
-
|
|
175
|
-
|
|
184
|
+
def get_nve(self):
|
|
185
|
+
return self.nve
|
|
176
186
|
|
|
177
|
-
|
|
178
|
-
|
|
187
|
+
def get_pedidoExternoItem(self):
|
|
188
|
+
return self.pedidoExternoItem
|
|
179
189
|
|
|
180
|
-
|
|
181
|
-
|
|
190
|
+
def get_pedidoExternoNumero(self):
|
|
191
|
+
return self.pedidoExternoNumero
|
|
182
192
|
|
|
183
|
-
|
|
184
|
-
|
|
193
|
+
def get_percentualDevolvido(self):
|
|
194
|
+
return self.percentualDevolvido
|
|
185
195
|
|
|
186
|
-
|
|
187
|
-
|
|
196
|
+
def get_produtoCodigo(self):
|
|
197
|
+
return self.produtoCodigo
|
|
188
198
|
|
|
189
|
-
|
|
190
|
-
|
|
199
|
+
def get_produtoInfo(self):
|
|
200
|
+
return self.produtoInfo
|
|
191
201
|
|
|
192
|
-
|
|
193
|
-
|
|
202
|
+
def get_produtoNome(self):
|
|
203
|
+
return self.produtoNome
|
|
194
204
|
|
|
195
|
-
|
|
196
|
-
|
|
205
|
+
def get_qtdDevolucaoRef(self):
|
|
206
|
+
return self.qtdDevolucaoRef
|
|
197
207
|
|
|
198
|
-
|
|
199
|
-
|
|
208
|
+
def get_quantidade(self):
|
|
209
|
+
return self.quantidade
|
|
200
210
|
|
|
201
|
-
|
|
202
|
-
|
|
211
|
+
def get_quantidadeTrib(self):
|
|
212
|
+
return self.quantidadeTrib
|
|
203
213
|
|
|
204
|
-
|
|
205
|
-
|
|
214
|
+
def get_unidadeMedida(self):
|
|
215
|
+
return self.unidadeMedida
|
|
206
216
|
|
|
207
|
-
|
|
208
|
-
|
|
217
|
+
def get_unidadeMedidaTrib(self):
|
|
218
|
+
return self.unidadeMedidaTrib
|
|
209
219
|
|
|
210
|
-
|
|
211
|
-
|
|
220
|
+
def get_valorDesconto(self):
|
|
221
|
+
return self.valorDesconto
|
|
212
222
|
|
|
213
|
-
|
|
214
|
-
|
|
223
|
+
def get_valorDespAduaneira(self):
|
|
224
|
+
return self.valorDespAduaneira
|
|
215
225
|
|
|
216
|
-
|
|
217
|
-
|
|
226
|
+
def get_valorFrete(self):
|
|
227
|
+
return self.valorFrete
|
|
218
228
|
|
|
219
|
-
|
|
220
|
-
|
|
229
|
+
def get_valorIOF(self):
|
|
230
|
+
return self.valorIOF
|
|
221
231
|
|
|
222
|
-
|
|
223
|
-
|
|
232
|
+
def get_valorOutros(self):
|
|
233
|
+
return self.valorOutros
|
|
224
234
|
|
|
225
|
-
|
|
226
|
-
|
|
235
|
+
def get_valorSeguro(self):
|
|
236
|
+
return self.valorSeguro
|
|
227
237
|
|
|
228
|
-
|
|
229
|
-
|
|
238
|
+
def get_valorTotal(self):
|
|
239
|
+
return self.valorTotal
|
|
230
240
|
|
|
231
|
-
|
|
232
|
-
|
|
241
|
+
def get_valorTotalTrib(self):
|
|
242
|
+
return self.valorTotalTrib
|
|
233
243
|
|
|
234
|
-
|
|
235
|
-
|
|
244
|
+
def get_valorUnitario(self):
|
|
245
|
+
return self.valorUnitario
|
|
236
246
|
|
|
237
|
-
|
|
238
|
-
|
|
247
|
+
def get_valorUnitarioTrib(self):
|
|
248
|
+
return self.valorUnitarioTrib
|
|
239
249
|
|
|
240
|
-
|
|
241
|
-
|
|
250
|
+
def get_descricaoLei116(self):
|
|
251
|
+
return self.descricaoLei116
|
|
242
252
|
|
|
243
|
-
|
|
244
|
-
|
|
253
|
+
def to_xml(self, template):
|
|
254
|
+
element = ET.Element(template.get('root', 'DET_NITEM'))
|
|
245
255
|
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
256
|
+
for attr, tag in template.get('fields', {}).items():
|
|
257
|
+
value = getattr(self, attr, None)
|
|
258
|
+
if value is not None:
|
|
259
|
+
child = ET.SubElement(element, tag)
|
|
260
|
+
child.text = str(value)
|
|
251
261
|
|
|
252
|
-
|
|
262
|
+
return element
|
{ipiranga_inovai_project_lib-1.3.dist-info → ipiranga_inovai_project_lib-1.5.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: ipiranga-inovai-project-lib
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.5
|
|
4
4
|
Summary: Projeto criado para importação genérica de entidades
|
|
5
5
|
Home-page: https://gitlab.ipirangacloud.com/clayton.monteiro.ext/ipiranga-inovai-project-lib
|
|
6
6
|
Author: Clayton Sandes Monteiro
|
{ipiranga_inovai_project_lib-1.3.dist-info → ipiranga_inovai_project_lib-1.5.dist-info}/RECORD
RENAMED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
inovai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
2
|
inovai/entities.py,sha256=tsa9Fpm0kOmulP1mg2hLk6jeP4jrU5cnI01dT0QIAqY,12749
|
|
3
|
-
inovai/enums.py,sha256=
|
|
3
|
+
inovai/enums.py,sha256=3pFRqYBy_aAYUHe_skRhVM4D0XhcYxL-6hNQAgWB7k8,927
|
|
4
4
|
inovai/models/Endereco.py,sha256=Vft20vMwYwTXtEuh5NH7O5FxXVahnLmgaXMDOVdBxY4,3519
|
|
5
5
|
inovai/models/NFe.py,sha256=3PiMvK6AODaagZU7KEpnjYfulz8PvcQYGChIa-QCvg0,13023
|
|
6
6
|
inovai/models/NFeBoleto.py,sha256=tLWqsOlszA6UiJdxesJKQkgwNk_4DuI3NRBCYZh7RKc,5006
|
|
7
7
|
inovai/models/NFeCartao.py,sha256=3JTl_i9V6cu6gOkbWM1Mj10BALmHezlRVR-xGx6m5GI,1876
|
|
8
|
+
inovai/models/NFeDadosAtivos.py,sha256=Iivtw5Z--q82NxrUXWwGvqhMjKKtoqGUQO0WZTMpbFQ,3079
|
|
8
9
|
inovai/models/NFeDetalhePagamento.py,sha256=-yWGj8wz--kNMGxTY1llsduZj26S8k-El43xscG7Rmw,2021
|
|
9
10
|
inovai/models/NFeDocImportacao.py,sha256=ysfxiuSOKnPNY3emCLtTnKStQ-xei0iXHnrzT7keOEo,3291
|
|
10
11
|
inovai/models/NFeDocImportacaoAdicao.py,sha256=b9xBZur0jYE6yLssu2ZYK9KKFp9Yr3TOUiVFvrDH5Fw,1899
|
|
@@ -17,7 +18,7 @@ inovai/models/NFeFatura.py,sha256=GxEkiYj_sMjETk9euzlHw388sEnSgHTk6tYZiPug6s0,18
|
|
|
17
18
|
inovai/models/NFeImposto.py,sha256=Qpi3S-iR5pvM0kXkIq2dQs4VxTv7gDG0qQ9h2XRDKCg,5769
|
|
18
19
|
inovai/models/NFeImpostoRetido.py,sha256=emr_dpFOZY4abLTvVEdw4hFFX5XkVsAnViGT2tboiic,3707
|
|
19
20
|
inovai/models/NFeIntermediadorTransacao.py,sha256=92BCto4uKg17v5EzhT9g1eNBKYYS-trZ7zmpKna2Jzo,1645
|
|
20
|
-
inovai/models/NFeItem.py,sha256=
|
|
21
|
+
inovai/models/NFeItem.py,sha256=o8WOd1FA100Ezq73qUvjLsx53kca3a3exIEC4Zq2qaw,7463
|
|
21
22
|
inovai/models/NFeItemDadosCombustivel.py,sha256=2qenlgSiGhiWLsL_8YHUix1MfB7vbBWWQtJWGmvaLB8,2244
|
|
22
23
|
inovai/models/NFeItemExportacao.py,sha256=Fc7oSc_OuXtsan-oaMvN79v88zJvjZzKQur_zRoS2T4,2526
|
|
23
24
|
inovai/models/NFeItemOrigemCombustivel.py,sha256=_FD3H6LMxY60T9DAwB-xGcS5xdtV-WnMtbvkOrkx_fA,1809
|
|
@@ -32,8 +33,8 @@ inovai/models/NFeVolume.py,sha256=_cayb-rrz1mSxQ3wFFnB4KCi524jtAsdTTcS4WQTBOc,19
|
|
|
32
33
|
inovai/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
33
34
|
inovai/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
34
35
|
inovai/utils/util.py,sha256=tEFFoYhtyZk2pxor2vb23NWr3otPzPXTiTIf-VrGik4,366
|
|
35
|
-
ipiranga_inovai_project_lib-1.
|
|
36
|
-
ipiranga_inovai_project_lib-1.
|
|
37
|
-
ipiranga_inovai_project_lib-1.
|
|
38
|
-
ipiranga_inovai_project_lib-1.
|
|
39
|
-
ipiranga_inovai_project_lib-1.
|
|
36
|
+
ipiranga_inovai_project_lib-1.5.dist-info/LICENSE,sha256=UJ3ql8eZec9Y1kER7QSHAuvdgFPuL47asePHYmdzG_o,198
|
|
37
|
+
ipiranga_inovai_project_lib-1.5.dist-info/METADATA,sha256=dINl35X-KeT8NgA3g51UDcFORTw4gbhpxqA6wxMPy4c,518
|
|
38
|
+
ipiranga_inovai_project_lib-1.5.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
39
|
+
ipiranga_inovai_project_lib-1.5.dist-info/top_level.txt,sha256=BD-APH5oIEb_KDXwrfnZiu9QDsD9ttTEkYc32r9thqg,7
|
|
40
|
+
ipiranga_inovai_project_lib-1.5.dist-info/RECORD,,
|
{ipiranga_inovai_project_lib-1.3.dist-info → ipiranga_inovai_project_lib-1.5.dist-info}/LICENSE
RENAMED
|
File without changes
|
{ipiranga_inovai_project_lib-1.3.dist-info → ipiranga_inovai_project_lib-1.5.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|