From a88e438ad7929d140824aed0626c06aa4cf24ef8 Mon Sep 17 00:00:00 2001 From: Thadeu Lima de Souza Cascardo Date: Sun, 10 Apr 2016 19:22:21 -0300 Subject: [PATCH] Usa marca BUG IRPF. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Os comportamentos que parecem ser bugs no programa IRPF distribuído pela Receita Federal devem ser marcados como BUG IRPF. --- lib/gera.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/gera.c b/lib/gera.c index ed83b1a..79fe63e 100644 --- a/lib/gera.c +++ b/lib/gera.c @@ -260,7 +260,8 @@ static void gera_simples(struct declaracao *dec, FILE *f) 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 */ - /* O IRPF imprime 0 aqui mesmo com doações e poupança. */ + /* BUG IRPF: O IRPF imprime 0 aqui mesmo com doações e poupança. */ + /* fprintf(f, "%013lld", totais_get(dec, "ISENTOSDEP")); */ fprintf(f, "%013lld", 0); /* isentos dependentes */ fprintf(f, "%013lld", totais_get(dec, "EXCLUSIVOSDEP")); /* exclusivos dependentes */ fprintf(f, "%-13.13s", ""); /* FILLER */ -- 2.20.1