From 66b38bf4cd93059f171763b4ddf425a4c13b6f0f Mon Sep 17 00:00:00 2001 From: angelo Date: Tue, 18 Nov 1997 16:12:04 +0000 Subject: [PATCH] Correzione MI2378 e MI2380, relativo al calcolo/scorporo ventilazione. (Deve evitare di considerare i tipidet == 1 e 9) git-svn-id: svn://10.65.10.50/trunk@5639 c028cbd2-c16b-5b4b-a496-9718f37d4682 --- cg/cg4303.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cg/cg4303.cpp b/cg/cg4303.cpp index f48ec2855..062734915 100755 --- a/cg/cg4303.cpp +++ b/cg/cg4303.cpp @@ -144,7 +144,7 @@ void TLiquidazione_app::recalc_ventilation(int month, const char* codatt) * questi vengono pero' conteggiati nel totale * acquisti per rivendita */ - if (tipocr == 5 && tipodet == 3) + if (tipodet == 1 ||( tipocr == 5 && tipodet == 3) || tipodet == 9) continue; TString att(codatt);