From 13d70c993214d97041ebd2e52c65c4205355e18e Mon Sep 17 00:00:00 2001 From: Thadeu Lima de Souza Cascardo Date: Sun, 10 Apr 2016 12:39:23 -0300 Subject: [PATCH] =?utf8?q?Imprime=20total=20de=20doa=C3=A7=C3=B5es=20na=20?= =?utf8?q?linha=20de=20rendimentos=20isentos.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- lib/gera.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/gera.c b/lib/gera.c index ec3b394..357e5c9 100644 --- a/lib/gera.c +++ b/lib/gera.c @@ -485,7 +485,7 @@ static void gera_isentos(struct declaracao *dec, FILE *f) fprintf(f, "%013lld", 0); /* TODO: pensão por invalidez */ fprintf(f, "%013lld", totais_get(dec, "POUPANCA")); fprintf(f, "%013lld", 0); /* TODO: sócio ou titular de empresa */ - fprintf(f, "%013lld", 0); /* TODO: herança, transferências patrimoniais */ + fprintf(f, "%013lld", totais_get(dec, "DOACOES")); /* herança, transferências patrimoniais */ fprintf(f, "%013lld", 0); /* TODO: outros rendimentos isentos */ fprintf(f, "%-60.60s", ""); /* FILLER1 */ fprintf(f, "%-13.13s", ""); /* FILLER2 */ -- 2.20.1