-
Notifications
You must be signed in to change notification settings - Fork 174
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
correções e melhorias diversas #315
Changes from all commits
2387b17
b614d85
98470e1
ae9fe28
525d6b5
f6a7361
3617223
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -254,7 +254,10 @@ class NotaFiscal(Entidade): | |
totais_retencao_retencao_previdencia_social = Decimal() | ||
|
||
# - Valor aproximado total de tributos federais, estaduais e municipais. | ||
totais_tributos_aproximado = Decimal() | ||
__totais_tributos_aproximado = Decimal() | ||
@property | ||
def totais_tributos_aproximado(self): | ||
return self.__totais_tributos_aproximado | ||
|
||
# - Valor Total do FCP (Fundo de Combate à Pobreza) | ||
totais_fcp = Decimal() | ||
|
@@ -442,8 +445,7 @@ def adicionar_produto_servico(self, **kwargs): | |
self.totais_icms_q_bc_mono_ret += obj.icms_q_bc_mono_ret | ||
self.totais_icms_v_icms_mono_ret += obj.icms_v_icms_mono_ret | ||
|
||
# TODO calcular impostos aproximados | ||
# self.totais_tributos_aproximado += obj.tributos | ||
Comment on lines
-445
to
-446
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Não é a mesma coisa que antes? |
||
self.__totais_tributos_aproximado += obj.valor_tributos_aprox | ||
|
||
self.totais_icms_total_nota += ( | ||
obj.valor_total_bruto | ||
|
@@ -813,7 +815,7 @@ class NotaFiscalProduto(Entidade): | |
# - PIS | ||
# - PIS | ||
# - Situacao tributaria (obrigatorio - seleciona de lista) - PIS_TIPOS_TRIBUTACAO | ||
pis_situacao_tributaria = str() | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Muito bem observado, isso aqui estava com o nome errado kkkk |
||
pis_modalidade = str() | ||
|
||
# - Tipo de calculo (seleciona de lista) - PIS_TIPOS_CALCULO | ||
pis_tipo_calculo = str() | ||
|
@@ -936,6 +938,8 @@ class NotaFiscalProduto(Entidade): | |
# - Valor imposto de importacao | ||
imposto_importacao_valor = Decimal() | ||
|
||
valor_tributos_aprox = Decimal() | ||
|
||
# - Informacoes Adicionais | ||
# - Texto livre de informacoes adicionais | ||
informacoes_adicionais = str() | ||
|
Large diffs are not rendered by default.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Não entendi, por que foi feito isso?