Calcula e gera desconto simplificado e base de cálculo.
[cascardo/declara.git] / gera.c
diff --git a/gera.c b/gera.c
index 9129148..ce8c432 100644 (file)
--- a/gera.c
+++ b/gera.c
@@ -24,6 +24,7 @@
 #include <stdio.h>
 #include <string.h>
 #include <stdlib.h>
+#include "totais.h"
 
 static void gera_header(struct declaracao *dec, FILE *f)
 {
@@ -52,17 +53,22 @@ static void gera_header(struct declaracao *dec, FILE *f)
        fprintf(f, "%-10.10s", ""); /* TODO: última declaração transmitida (pode ser vazio?) */
        fprintf(f, "%04d", dec->contribuinte.cd_municipio);
        fprintf(f, "           "); /* TODO: CPF conjuge */
-       fprintf(f, "%d", dec->obrigatoria); /* TODO: obrigatoria entrega */
+       fprintf(f, "%d", dec->obrigatoria ? 1 : 0); /* obrigatoria entrega */
        fprintf(f, "%013lld", dec->devido); /* imposto devido, carne-leao, complementar dos dependentes */
        fprintf(f, "%-10.10s", dec->recibo ?: ""); /* recibo ex. anterior */
-       fprintf(f, "2"); /* TODO: indicador seguranca */
-       fprintf(f, "00"); /* TODO: indicador imposto pago */
-       fprintf(f, "0"); /* TODO: indicador imposto antecipado */
+       /* Indicador de segurança: 0 se retificadora, 2 se recibo
+        * anterior, se não 1. */
+       fprintf(f, "%d", dec->retifica ? 0 : (dec->recibo ? 2 : 1));
+       /* Indicador imposto pago, TODO: carnê leão e Lei 11.033. */
+       fprintf(f, "%02d", dec->retido ? 1 : 0);
+       /* Indicador imposto antecipado, TODO: carnê leão, Lei 11.033,
+        * outros. */
+       fprintf(f, "%d", dec->retido ? 1 : 0);
        fprintf(f, "0"); /* TODO: mudanca endereco */
        fprintf(f, "%s", dec->contribuinte.cep);
        fprintf(f, "0"); /* TODO: debito 1a quota */
-       fprintf(f, "000"); /* TODO: no banco */
-       fprintf(f, "0000"); /* TODO: agencia */
+       fprintf(f, "%-3.3s", dec->banco); /* no banco */
+       fprintf(f, "%-4.4s", dec->agencia); /* agencia */
        fprintf(f, " "); /* TODO: filler */
        fprintf(f, "00000000"); /* transito julgado, gravado apenas se espolio */
        fprintf(f, "%013lld", dec->pagar); /* imposto a pagar */
@@ -75,10 +81,10 @@ static void gera_header(struct declaracao *dec, FILE *f)
        fprintf(f, " "); /* RRA4 */
        fprintf(f, "%-11.11s", ""); /* CPF RRA4 */
        fprintf(f, "0000000000000"); /* TODO: Doacao ECA */
-       fprintf(f, "%-14.14s", ""); /* TODO: CNPJ maior */
-       fprintf(f, "%-14.14s", ""); /* TODO: CNPJ maior 2 */
-       fprintf(f, "%-14.14s", ""); /* TODO: CNPJ maior 3 */
-       fprintf(f, "%-14.14s", ""); /* TODO: CNPJ maior 4 */
+       fprintf(f, "%-14.14s", rendimento_cnpj_ordenado(dec, 0)); /* TODO: CNPJ maior */
+       fprintf(f, "%-14.14s", rendimento_cnpj_ordenado(dec, 1)); /* TODO: CNPJ maior 2 */
+       fprintf(f, "%-14.14s", rendimento_cnpj_ordenado(dec, 2)); /* TODO: CNPJ maior 3 */
+       fprintf(f, "%-14.14s", rendimento_cnpj_ordenado(dec, 3)); /* TODO: CNPJ maior 4 */
        fprintf(f, "%-11.11s", ""); /* CPF Dependente 1 */
        fprintf(f, "%-8.8s", ""); /* DN Dependente 1 */
        fprintf(f, "%-11.11s", ""); /* CPF Dependente 2 */
@@ -91,8 +97,10 @@ static void gera_header(struct declaracao *dec, FILE *f)
        fprintf(f, "%-8.8s", ""); /* DN Dependente 5 */
        fprintf(f, "%-11.11s", ""); /* CPF Dependente 6 */
        fprintf(f, "%-8.8s", ""); /* DN Dependente 6 */
-       fprintf(f, "%-14.14s", ""); /* TODO: medico maior */
-       fprintf(f, "%-14.14s", ""); /* TODO: medico maior 2 */
+       /* medico maior, TODO: outros códigos */
+       fprintf(f, "%-14.14s", pagamento_cnpj_ordenado(dec, 26, 0));
+       /* medico maior 2, TODO: outros códigos */
+       fprintf(f, "%-14.14s", pagamento_cnpj_ordenado(dec, 26, 1));
        fprintf(f, "%-11.11s", ""); /* CPF pensao */
        fprintf(f, "%-11.11s", ""); /* CPF inventariante */
        fprintf(f, "%-40.40s", dec->contribuinte.municipio);
@@ -101,15 +109,20 @@ static void gera_header(struct declaracao *dec, FILE *f)
        fprintf(f, "000000000000"); /* FIXME: MAC */
        fprintf(f, "%08d", 0); /* Data saída */
        fprintf(f, "%-11.11s", ""); /* CPF procurador */
-       fprintf(f, "000"); /* TODO: criterio obrigatoriedade */
-       fprintf(f, "%013lld", dec->totalrendimento); /* Total tributavel */
-       fprintf(f, "%-14.14s", ""); /* TODO: CNPJ previdencia */
-       fprintf(f, "%-14.14s", ""); /* TODO: CNPJ previdencia 2 */
-       fprintf(f, "%013lld", 0); /* TODO: Total isentos */
-       fprintf(f, "%013lld", 0); /* TODO: Total exclusivo */
-       fprintf(f, "%013lld", 0); /* TODO: Total pagamentos */
-       fprintf(f, "%-13.13s", ""); /* TODO: numero conta */
-       fprintf(f, "%-2.2s", ""); /* TODO: DV conta */
+       fprintf(f, "%03d", dec->obrigatoria); /* criterio obrigatoriedade */
+       fprintf(f, "%013lld", totais_get(dec, "RENDPJ")); /* Total tributavel */
+       /* CNPJ previdencia */
+       fprintf(f, "%-14.14s", pagamento_cnpj_ordenado(dec, 36, 0));
+       /* CNPJ previdencia 2 */
+       fprintf(f, "%-14.14s", pagamento_cnpj_ordenado(dec, 36, 1));
+       /* Total isentos */
+       fprintf(f, "%013lld", totais_get(dec, "ISENTOS"));
+       /* Total exclusivo */
+       fprintf(f, "%013lld", totais_get(dec, "EXCLUSIVOS"));
+       /* Total pagamentos */
+       fprintf(f, "%013lld", totais_get(dec, "PAGAMENTOS"));
+       fprintf(f, "%-13.13s", dec->contacorrente); /* numero conta */
+       fprintf(f, "%-2.2s", dec->dvconta); /* DV conta */
        fprintf(f, "0"); /* TODO: revalidar DV conta */
 
        /* Mudanças de 2015 */
@@ -170,16 +183,17 @@ static void gera_contribuinte(struct declaracao *dec, FILE *f)
        fprintf(f, "S"); /* GERADO */
        fprintf(f, "N"); /* TODO: mudança de endereço */
        fprintf(f, "%-12.12s", dec->retifica ? : ""); /* Recibo declaração original */
-       fprintf(f, "%-3.3s", "000"); /* TODO: banco */
-       fprintf(f, "%-4.4s", "0000"); /* TODO: agência */
+       fprintf(f, "%-3.3s", dec->banco); /* banco */
+       fprintf(f, "%-4.4s", dec->agencia); /* agência */
        fprintf(f, "N"); /* TODO: deficiência */
        fprintf(f, "0"); /* FILLER: pré-preenchida */
-       fprintf(f, "%-13.13s", ""); /* TODO: conta */
-       fprintf(f, "%-2.2s", ""); /* TODO: DV conta */
+       fprintf(f, "%-13.13s", dec->contacorrente); /* conta */
+       fprintf(f, "%-2.2s", dec->dvconta); /* DV conta */
        fprintf(f, "N"); /* TODO: débito automático */
        fprintf(f, "0"); /* TODO: débito primeira quota */
-       fprintf(f, "%-14.14s", ""); /* TODO: CNPJ principal fonte */
-       fprintf(f, "%-10.10s", dec->recibo); /* Recibo última declaração ano anterior */
+       /* CNPJ principal fonte */
+       fprintf(f, "%-14.14s", rendimento_cnpj_ordenado(dec, 0));
+       fprintf(f, "%-10.10s", dec->recibo ?: ""); /* Recibo última declaração ano anterior */
        fprintf(f, "A"); /* Declaração de Ajuste */
        fprintf(f, "%-11.11s", ""); /* TODO: CPF procurador */
        fprintf(f, "%-10.10s", "0000000000"); /* FIXME: controle */
@@ -192,10 +206,13 @@ static void gera_simples(struct declaracao *dec, FILE *f)
        fprintf(f, "%s", dec->cpf); /* CPF: 11 dígitos */
        fprintf(f, "%013lld", 0); /* TODO: carnê leão */
        fprintf(f, "%013lld", 0); /* TODO: lucros e dividendos */
-       fprintf(f, "%013lld", 0); /* TODO: isentos */
-       fprintf(f, "%013lld", 0); /* TODO: rendimentos tributação exclusiva */
-       fprintf(f, "%013lld", 0); /* TODO: 13o. */
-       fprintf(f, "%013lld", dec->retido); /* retido na fonte */
+       /* rendimentos isentos */
+       fprintf(f, "%013lld", totais_get(dec, "ISENTOS"));
+       /* rendimentos tributação exclusiva, exceto décimo terceiro */
+       fprintf(f, "%013lld", totais_get(dec, "EXCLUSIVOS_SEM_13o"));
+       /* 13o. */
+       fprintf(f, "%013lld", totais_get(dec, "DECIMOTERCEIRO"));
+       fprintf(f, "%013lld", 0); /* TODO: retido na fonte (Lei 11.033) */
        fprintf(f, "%013lld", 0); /* TODO: 13o. dependentes */
        fprintf(f, "%013lld", 0); /* TODO: lucros dependentes */
        fprintf(f, "%013lld", 0); /* TODO: isentos dependentes */
@@ -209,10 +226,10 @@ static void gera_simples(struct declaracao *dec, FILE *f)
        fprintf(f, "%013lld", 0); /* TODO: carnê-leão PF? */
        fprintf(f, "%013lld", 0); /* TODO: carnê-leão dependentes */
        fprintf(f, "%013lld", 0); /* TODO: dedução dependentes */
-       fprintf(f, "%013lld", 0); /* TODO: previdência */
-       fprintf(f, "%013lld", 0); /* TODO: previdência dependentes */
-       fprintf(f, "%013lld", 0); /* TODO: pensão */
-       fprintf(f, "%013lld", 0); /* TODO: pensão dependentes */
+       fprintf(f, "%013lld", 0); /* TODO: previdência RRA */
+       fprintf(f, "%013lld", 0); /* TODO: previdência RRA dependentes */
+       fprintf(f, "%013lld", 0); /* TODO: pensão RRA */
+       fprintf(f, "%013lld", 0); /* TODO: pensão RRA dependentes */
        fprintf(f, "%013lld", 0); /* TODO: imposto pago exterior */
        fprintf(f, "%013lld", 0); /* TODO: imposto devido sem rendimento exterior */
        fprintf(f, "%013lld", 0); /* TODO: limite imposto pago exterior */
@@ -224,9 +241,11 @@ static void gera_totais_simples(struct declaracao *dec, FILE *f)
 {
        fprintf(f, "18");
        fprintf(f, "%s", dec->cpf); /* CPF: 11 dígitos */
-       fprintf(f, "%013lld", dec->totalrendimento); /* TODO: rendimentos tributáveis */
-       fprintf(f, "%013lld", 0); /* TODO: desconto simplificado */
-       fprintf(f, "%013lld", 0); /* TODO: base cálculo */
+       fprintf(f, "%013lld", totais_get(dec, "RENDPJ")); /* TODO: rendimentos tributáveis */
+       /* desconto simplificado */
+       fprintf(f, "%013lld", totais_get(dec, "DESCONTO"));
+        /* base de cálculo */
+       fprintf(f, "%013lld", totais_get(dec, "BASE"));
        fprintf(f, "%013lld", dec->devido); /* imposto devido */
        fprintf(f, "%013lld", dec->retido); /* imposto retido */
        fprintf(f, "%013lld", 0); /* TODO: imposto complementar */
@@ -349,19 +368,19 @@ static void gera_recibodetalhe(struct declaracao *dec, FILE *f)
        fprintf(f, "%-4.4s", dec->contribuinte.ddd);
        fprintf(f, "%-9.9s", dec->contribuinte.telefone);
        fprintf(f, "%s", dec->retifica ? "S" : "N"); /* Retificadora */
-       fprintf(f, "%013lld", dec->totalrendimento); /* Total tributavel */
+       fprintf(f, "%013lld", totais_get(dec, "RENDPJ")); /* Total tributavel */
        fprintf(f, "%013lld", dec->devido); /* Imposto devido */
        fprintf(f, "%013lld", dec->restituicao); /* Imposto a restituir */
        fprintf(f, "%013lld", dec->pagar); /* Imposto a pagar */
        fprintf(f, "%d", 0); /* TODO: quotas */
        fprintf(f, "%013lld", 0); /* TODO: valor quota */
-       fprintf(f, "%03d", 0); /* TODO: numero banco */
-       fprintf(f, "%04d", 0); /* TODO: numero agencia */
+       fprintf(f, "%-3.3s", dec->banco); /* numero banco */
+       fprintf(f, "%-4.4s", dec->agencia); /* numero agencia */
        fprintf(f, " "); /* FILLER */
        fprintf(f, "%d", 0); /* TODO: debito primeira quota */
        fprintf(f, "%013lld", 0); /* TODO: imposto pago ganho de capital */
-       fprintf(f, "%-13.13s", ""); /* TODO: numero conta */
-       fprintf(f, "%-2.2s", ""); /* TODO: DV conta */
+       fprintf(f, "%-13.13s", dec->contacorrente); /* numero conta */
+       fprintf(f, "%-2.2s", dec->dvconta); /* DV conta */
        fprintf(f, "%013lld", 0); /* TODO: imposto alienacao moeda estrangeira em especie */
        fprintf(f, "%-10.10s", "0000000000"); /* FIXME: controle */
        fprintf(f, "\r\n");