From a57bdd0235b7f7deedf0fe8e786bad17eb8aab0f Mon Sep 17 00:00:00 2001 From: cris Date: Mon, 11 May 1998 09:50:53 +0000 Subject: [PATCH] =?UTF-8?q?Patch=20level=20=20=20=20=20=20=20=20=20:=20Fil?= =?UTF-8?q?es=20correlati=20=20=20=20=20:=20Ricompilazione=20Demo=20:=20[?= =?UTF-8?q?=20]=20Commento=20=20=20=20=20=20=20=20=20=20=20=20:=20librerie?= =?UTF-8?q?=20avis:=20nel=20calcolo=20dello=20stato=20sanitario=20se=20il?= =?UTF-8?q?=20donatore=20=C3=A8=20sospeso=20per=20un=20solo=20tipo=20di=20?= =?UTF-8?q?donazione=20non=20=C3=A8=20automaticamente=20sospeso=20come=20s?= =?UTF-8?q?tato?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: svn://10.65.10.50/trunk@6630 c028cbd2-c16b-5b4b-a496-9718f37d4682 --- at/atlib1.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/at/atlib1.cpp b/at/atlib1.cpp index 001ac0858..b41396402 100755 --- a/at/atlib1.cpp +++ b/at/atlib1.cpp @@ -238,11 +238,11 @@ void con_reord(TRectype& soggetto, TRecord_array* controlli, TRecord_array* idon { TString16 stato = soggetto.get(SOG_STATO); char modstato = modstato_tcs(stato); - //if ((statosi == IDONEITA || statosi.empty()) && (statoaf == IDONEITA || statoaf.empty())) if ((statosi == IDONEITA) || (statoaf == IDONEITA)) if ((modstato != 'I') || (modstato != 'F')) stato = IDONEITA; - if ((statosi == SOSPENSIONE || statosi.empty()) && (statoaf == SOSPENSIONE || statoaf.empty())) + //if ((statosi == SOSPENSIONE || statosi.empty()) && (statoaf == SOSPENSIONE || statoaf.empty())) + if ((statosi == SOSPENSIONE) && (statoaf == SOSPENSIONE)) if (modstato != 'S') stato = SOSPENSIONE; char statocalcolato = modstato_tcs(stato);