From eb8bca54f7634dfbd839df15d69d36d1c7dc3176 Mon Sep 17 00:00:00 2001 From: cris Date: Wed, 11 Feb 1998 15:34:14 +0000 Subject: [PATCH] Corretto doppia stampa totale se si sblocca una sola sezione in sblocco sospesi git-svn-id: svn://10.65.10.50/trunk@6170 c028cbd2-c16b-5b4b-a496-9718f37d4682 --- at/at0700.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/at/at0700.cpp b/at/at0700.cpp index 144df1656..1e2fe27a7 100755 --- a/at/at0700.cpp +++ b/at/at0700.cpp @@ -76,7 +76,10 @@ void TSbloccoSospesi::fine_stampa() sep.fill('-'); set_footer(2, (const char *) sep); if (_totale > 0) - set_footer(3,"TOTALE SOGGETTI SBLOCCATI %d", _totale); + { + if (_totale != _contatore) + set_footer(3,"TOTALE SOGGETTI SBLOCCATI %d", _totale); + } else set_footer(3,"NON CI SONO SOGGETTI SOSPESI DA SBLOCCARE"); printer().formfeed();