From bb75239f53cfad8988c0ea38d8c032fc941e4f80 Mon Sep 17 00:00:00 2001 From: bonazzi Date: Sun, 4 Mar 2018 16:52:36 +0000 Subject: [PATCH] Patch level : 12.0 546 Files correlati : cg4.eze Nel caso di reverse charge e iva indetraibile su ricavi esenti l'IVA diventava detraibile, corretto. Files correlati : Patch 544 git-svn-id: svn://10.65.10.50/branches/R_10_00@24411 c028cbd2-c16b-5b4b-a496-9718f37d4682 --- src/cg/cg4304.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/cg/cg4304.cpp b/src/cg/cg4304.cpp index 17bf1b8ee..f045f78ff 100755 --- a/src/cg/cg4304.cpp +++ b/src/cg/cg4304.cpp @@ -1439,6 +1439,9 @@ void TLiquidazione_app::set_firm(_DescrItem& d) if (d._s2 == "T") tim_title << format(FR(" del %d° Trimestre %s"), d._f1/3, (const char*) _year); else + if (_is_liq_acconto) + tim_title << format(FR(" al %d %s %s"), _ver->giorno_acc(), itom(d._f1), (const char*)_year); + else tim_title << format(FR(" del mese di %s %s"), itom(d._f1), (const char*)_year); } @@ -1500,6 +1503,9 @@ void TLiquidazione_app::set_att(_DescrItem& d) if (d._s4 == "T") tim_title << format(FR(" del %d° Trimestre %s"), d._f1 / 3, (const char*)_year); else + if (_is_liq_acconto) + tim_title << format(FR(" al %d %s %s"), _ver->giorno_acc(), itom(d._f1), (const char*)_year); + else tim_title << format(FR(" del mese di %s %s"), itom(d._f1), (const char*)_year); }