Skip to content
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

[UPD+FIX] Desde Janeiro de 2023 a Inscrição Estadual de Goias pode iniciar com 20 #44

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/erpbrasil/base/fiscal/ie.py
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,8 @@ def validar_go(inscr_est):
return False

# verificando os dois primeiros dígitos
if not inscr_est[:2] in ["10", "11", "15"]:
# https://agenciacoradenoticias.go.gov.br/63140-empreendedorismo-governo-de-goias-altera-no-de-inscricao-estadual-para-novos-cadastros
if inscr_est[:2] not in ["10", "11", "20"]:
return False

# Pega apenas os 8 primeiros dígitos da inscrição estadual e
Expand Down
Loading