X-Git-Url: http://git.cascardo.eti.br/?p=cascardo%2Fdeclara.git;a=blobdiff_plain;f=lib%2Fcalcula.c;h=40c05364cdc2de15a2377f90ff658aeb1ebdf5cc;hp=eac8894418d7876c2e4230a748812a85cea9c5ad;hb=08a0c2e404f437c762c8b57ea62927dc29e14384;hpb=9419b19aaf4cdf4ae81e92fab5c7b154cad3e17f diff --git a/lib/calcula.c b/lib/calcula.c index eac8894..40c0536 100644 --- a/lib/calcula.c +++ b/lib/calcula.c @@ -33,6 +33,9 @@ static const long long dependente[ANO(MAX_ANOS)] = { [ANO(2016)] = 227508, [ANO(2017)] = 227508, [ANO(2018)] = 227508, + [ANO(2019)] = 227508, + [ANO(2020)] = 227508, + [ANO(2021)] = 227508, }; static const long long instrucao[ANO(MAX_ANOS)] = { @@ -40,6 +43,9 @@ static const long long instrucao[ANO(MAX_ANOS)] = { [ANO(2016)] = 356150, [ANO(2017)] = 356150, [ANO(2018)] = 356150, + [ANO(2019)] = 356150, + [ANO(2020)] = 356150, + [ANO(2021)] = 356150, }; long long deducao_dependente(struct declaracao *dec) @@ -169,6 +175,9 @@ static struct taxtable *table[ANO(MAX_ANOS)] = { [ANO(2016)] = table2016, [ANO(2017)] = table2017, [ANO(2018)] = table2017, + [ANO(2019)] = table2017, + [ANO(2020)] = table2017, + [ANO(2021)] = table2017, }; static const long long simples[ANO(MAX_ANOS)] = { @@ -176,6 +185,9 @@ static const long long simples[ANO(MAX_ANOS)] = { [ANO(2016)] = 1675434, [ANO(2017)] = 1675434, [ANO(2018)] = 1675434, + [ANO(2019)] = 1675434, + [ANO(2020)] = 1675434, + [ANO(2021)] = 1675434, }; static const long long obrigatoriedade[ANO(MAX_ANOS)] = { @@ -183,6 +195,9 @@ static const long long obrigatoriedade[ANO(MAX_ANOS)] = { [ANO(2016)] = 2812391, [ANO(2017)] = 2855970, /* De acordo com IN 1671/2016 */ [ANO(2018)] = 2855970, + [ANO(2019)] = 2855970, + [ANO(2020)] = 2855970, + [ANO(2021)] = 2855970, }; static long long imposto(struct taxtable *tt, long long tr, int verbose) @@ -239,6 +254,7 @@ static long long imposto_completa(struct declaracao *dec) int calcula(struct declaracao *dec) { long long i_simples, i_completa; + long long isentos; if (!ANO_VALIDO(dec->ano)) { dec_set_error(dec, "Ano %d não suportado.", dec->ano); return -EINVAL; @@ -253,6 +269,16 @@ int calcula(struct declaracao *dec) } dec->obrigatoria += 1; } + isentos = totais_get(dec, "ISENTOS") + totais_get(dec, "EXCLUSIVOS"); + if (isentos > 4000000) { + if (dec->verbose) { + printf("Declaracao obrigatoria pois rendimentos " + "isentos e exclusivos maior que minimo para " + "declaracao: " FMT_R" > "FMT_R"\n", + R(isentos), R(4000000)); + } + dec->obrigatoria += 2; + } if (totais_get(dec, "BENS") > 30000000) { if (dec->verbose) { printf("Declaracao obrigatoria pois bens e direitos e" @@ -284,7 +310,10 @@ int calcula(struct declaracao *dec) dec->restituicao = dec->pago - dec->devido; else dec->pagar = dec->devido - dec->pago; - dec->aliquota_efetiva = dec->devido * 10000 / totais_get(dec, "RENDTRIB"); + if (totais_get(dec, "RENDTRIB") == 0) + dec->aliquota_efetiva = 0; + else + dec->aliquota_efetiva = dec->devido * 10000 / totais_get(dec, "RENDTRIB"); return 0; }