Mostra outras deduções no modo verboso
[cascardo/declara.git] / lib / calcula.c
1 /*
2  *  Copyright (C) 2015-2017  Thadeu Lima de Souza Cascardo <cascardo@minaslivre.org>
3  *
4  *  This program is free software; you can redistribute it and/or modify
5  *  it under the terms of the GNU General Public License as published by
6  *  the Free Software Foundation; either version 3 of the License, or
7  *  (at your option) any later version.
8  *
9  *  This program is distributed in the hope that it will be useful,
10  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  *  GNU General Public License for more details.
13  *
14  *  You should have received a copy of the GNU General Public License along
15  *  with this program; if not, write to the Free Software Foundation, Inc.,
16  *  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17  */
18
19 #include "calcula.h"
20 #include <errno.h>
21 #include <stdio.h>
22 #include "declaracao.h"
23 #include "cmd.h"
24 #include "rendimento.h"
25 #include "totais.h"
26 #include "util.h"
27 #include "ano.h"
28 #include "dependente.h"
29 #include "pagamento.h"
30
31 static const long long dependente[ANO(MAX_ANOS)] = {
32         [ANO(2015)] = 215652,
33         [ANO(2016)] = 227508,
34         [ANO(2017)] = 227508,
35 };
36
37 static const long long instrucao[ANO(MAX_ANOS)] = {
38         [ANO(2015)] = 337583,
39         [ANO(2016)] = 356150,
40         [ANO(2017)] = 356150,
41 };
42
43 long long deducao_dependente(struct declaracao *dec)
44 {
45         if (ANO_VALIDO(dec->ano))
46                 return dependente[ANO(dec->ano)];
47         return 0;
48 }
49
50 static void calculo_instrucao(struct declaracao *dec)
51 {
52         int i, j;
53         struct dependente *d;
54         struct pagamento *p;
55         long long instrucao_titular = 0;
56         /* Instrução do titular */
57         for (i = 0; (p = list_get(dec->pagamentos, i)); i++) {
58                 if (p->dependente == 0 && pagamento_instrucao(p)) {
59                         instrucao_titular += (p->pagamento - p->reembolso);
60                 }
61         }
62         if (instrucao_titular > instrucao[ANO(dec->ano)]) {
63                 totais_add(dec, "INSTRUCAO", instrucao[ANO(dec->ano)]);
64         } else {
65                 totais_add(dec, "INSTRUCAO", instrucao_titular);
66         }
67         /* Dependentes com instrução */
68         for (i = 0; (d = list_get(dec->dependentes, i)); i++) {
69                 long long instrucao_dependente = 0;
70                 for (j = 0; (p = list_get(dec->pagamentos, j)); j++) {
71                         if (p->dependente == (i + 1) && pagamento_instrucao(p)) {
72                                 instrucao_dependente += (p->pagamento - p->reembolso);
73                         }
74                 }
75                 if (instrucao_dependente) {
76                         /* Conta número de dependentes com instrução. */
77                         totais_add(dec, "DEPSINSTRUCAO", 1);
78                         if (dec->verbose) {
79                                 printf("Dependente %s (%d) tem instrução\n", d->nome, i);
80                         }
81                 }
82                 if (instrucao_dependente > instrucao[ANO(dec->ano)]) {
83                         totais_add(dec, "INSTRUCAO", instrucao[ANO(dec->ano)]);
84                 } else {
85                         totais_add(dec, "INSTRUCAO", instrucao_dependente);
86                 }
87         }
88 }
89
90 /* Alguns totais precisam ser limitados. Portanto, um total de decuções
91  * precisa ser ajustado para tais limites. Esta função considerará tais
92  * limites no futuro. */
93 static long long total_deducao(struct declaracao *dec)
94 {
95         int i;
96
97         calculo_instrucao(dec);
98
99         if (dec->verbose) {
100                 printf("Dedução:\n");
101                 printf("\tDependentes: "FMT_R"\n", R(totais_get(dec, "DEPENDENTES")));
102                 printf("\tINSS: "FMT_R"\n", R(totais_get(dec, "INSS")));
103                 printf("\tInstrução: "FMT_R"\n", R(totais_get(dec, "INSTRUCAO")));
104                 printf("\tMédicas: "FMT_R"\n", R(totais_get(dec, "MEDICAS")));
105                 printf("\tPrevidência: "FMT_R"\n", R(totais_get(dec, "PREVIDENCIA")));
106                 printf("\tPagamentos: "FMT_R"\n", R(totais_get(dec, "PAGAMENTOS")));
107                 printf("\tReembolsos: -"FMT_R"\n", R(totais_get(dec, "REEMBOLSOS")));
108         }
109         return totais_get(dec, "DEPENDENTES") +
110                totais_get(dec, "INSS") +
111                totais_get(dec, "INSTRUCAO") +
112                totais_get(dec, "MEDICAS") +
113                totais_get(dec, "PREVIDENCIA");
114 }
115
116 static void total_pago(struct declaracao *dec)
117 {
118         struct rendimento *rendimento;
119         int i;
120         dec->pago = dec->retido = 0;
121         for (i = 0; rendimento = list_get(dec->rendimento, i); i++) {
122                 dec->pago += rendimento->imposto;
123                 dec->retido += rendimento->imposto;
124         }
125         if (dec->verbose) {
126                 printf("Total pago e retido: "FMT_R" "FMT_R"\n",
127                         R(dec->pago), R(dec->retido));
128         }
129 }
130
131 struct taxtable {
132         long long base;
133         long long aliquota;
134         long long deducao;
135 };
136
137 static struct taxtable table2015[] = {
138         {       0,    0,      0, },
139         { 2145324,  750, 160899, },
140         { 3215148, 1500, 402035, },
141         { 4286917, 2250, 723554, },
142         { 5356572, 2750, 991383, },
143         { 9999999999999LL, 0, 0, },
144 };
145
146 static struct taxtable table2016[] = {
147         {       0,    0,       0, },
148         { 2249914,  750,  168743, },
149         { 3347773, 1500,  419826, },
150         { 4447675, 2250,  753402, },
151         { 5537355, 2750, 1030270, },
152         { 9999999999999LL, 0, 0, },
153 };
154
155 static struct taxtable table2017[] = {
156         {       0,    0,       0, },
157         { 2284777,  750,  171358, },
158         { 3391981, 1500,  425757, },
159         { 4501261, 2250,  763351, },
160         { 5597616, 2750, 1043232, },
161         { 9999999999999LL, 0, 0, },
162 };
163
164 static struct taxtable *table[ANO(MAX_ANOS)] = {
165         [ANO(2015)] = table2015,
166         [ANO(2016)] = table2016,
167         [ANO(2017)] = table2017,
168 };
169
170 static const long long simples[ANO(MAX_ANOS)] = {
171         [ANO(2015)] = 1588089,
172         [ANO(2016)] = 1675434,
173         [ANO(2017)] = 1675434,
174 };
175
176 static const long long obrigatoriedade[ANO(MAX_ANOS)] = {
177         [ANO(2015)] = 2681655,
178         [ANO(2016)] = 2812391,
179         [ANO(2017)] = 2855970, /* De acordo com IN 1671/2016 */
180 };
181
182 static long long imposto(struct taxtable *tt, long long tr, int verbose)
183 {
184         int i;
185         for (i = 0; tr >= tt[i].base; i++);
186         i--;
187         if (verbose) {
188                 printf("Aplicando aliquota de %d%%, deduzindo " FMT_R"\n",
189                         tt[i].aliquota / 10, R(tt[i].deducao));
190         }
191         return tr * tt[i].aliquota / 10000 - tt[i].deducao;
192 }
193
194 static long long imposto_simples(struct declaracao *dec)
195 {
196         struct taxtable *tt;
197         long long tr, td;
198         tt = table[ANO(dec->ano)];
199         tr = totais_get(dec, "RENDTRIB");
200         if (tr / 5 < simples[ANO(dec->ano)])
201                 td = tr / 5;
202         else
203                 td = simples[ANO(dec->ano)];
204         totais_add(dec, "DESCONTO", td);
205         tr -= td;
206         if (tr < 0)
207                 tr = 0;
208         totais_add(dec, "BASESIMPLES", tr);
209         if (dec->verbose) {
210                 printf("Desconto simplificado é "FMT_R"\n", R(td));
211         }
212         return imposto(tt, tr, dec->verbose);
213 }
214
215 static long long imposto_completa(struct declaracao *dec)
216 {
217         struct taxtable *tt;
218         long long tr, td;
219         tt = table[ANO(dec->ano)];
220         tr = totais_get(dec, "RENDTRIB");
221         td = total_deducao(dec);
222         totais_add(dec, "DEDUCOES", td);
223         tr -= td;
224         if (tr < 0)
225                 tr = 0;
226         totais_add(dec, "BASECOMPLETA", tr);
227         if (dec->verbose) {
228                 printf("Desconto completa é "FMT_R"\n", R(td));
229         }
230         return imposto(tt, tr, dec->verbose);
231 }
232
233 int calcula(struct declaracao *dec)
234 {
235         long long i_simples, i_completa;
236         if (!ANO_VALIDO(dec->ano)) {
237                 dec_set_error(dec, "Ano %d não suportado.", dec->ano);
238                 return -EINVAL;
239         }
240         if (totais_get(dec, "RENDTRIB") > obrigatoriedade[ANO(dec->ano)]) {
241                 if (dec->verbose) {
242                         printf("Declaracao obrigatoria pois rendimento e"
243                                 "maior que mínimo para declaracao: "
244                                 FMT_R" > "FMT_R"\n",
245                                 R(totais_get(dec, "RENDTRIB")),
246                                 R(obrigatoriedade[ANO(dec->ano)]));
247                 }
248                 dec->obrigatoria = 1;
249         }
250         i_simples = imposto_simples(dec);
251         i_completa = imposto_completa(dec);
252         total_pago(dec);
253         if (dec->verbose) {
254                 printf("Imposto simplificada e completa: "FMT_R" "FMT_R"\n",
255                         R(i_simples), R(i_completa));
256         }
257         if (dec->tipo != FORCA_SIMPLES &&
258             (i_simples > i_completa || dec->tipo == FORCA_COMPLETA)) {
259                 totais_add(dec, "BASE", totais_get(dec, "BASECOMPLETA"));
260                 dec->tipo = COMPLETA;
261                 dec->devido = i_completa;
262         } else {
263                 totais_add(dec, "BASE", totais_get(dec, "BASESIMPLES"));
264                 dec->tipo = SIMPLES;
265                 dec->devido = i_simples;
266         }
267         if (dec->pago > dec->devido)
268                 dec->restituicao = dec->pago - dec->devido;
269         else
270                 dec->pagar = dec->devido - dec->pago;
271         return 0;
272 }
273
274 static int run_calcula(struct declaracao *dec, char **args, int argc)
275 {
276         totais_add(dec, "EXCLUSIVOS_SEM_13o",
277                 totais_get(dec, "EXCLUSIVOS") -
278                 totais_get(dec, "DECIMOTERCEIRO"));
279         return calcula(dec);
280 }
281
282 static struct cmd cmd_calcula = {
283         .name = "calcula",
284         .run = run_calcula,
285 };
286
287 int calcula_cmd_init(void)
288 {
289         cmd_add(&cmd_calcula);
290         return 0;
291 }