From 6eb648e39d9996b26cef0aa628a84f2031ad8971 Mon Sep 17 00:00:00 2001 From: mtollari Date: Thu, 25 Jan 2018 14:18:00 +0000 Subject: [PATCH] =?UTF-8?q?Patch=20level=20=20=20=20=20=20=20=20=20:=2012.?= =?UTF-8?q?0=20514=20Files=20correlati=20=20=20=20=20:=20cg=20Commento=20?= =?UTF-8?q?=20=20=20=20=20=20=20=20=20=20=20:=20Cambiata=20classe=20TAnagr?= =?UTF-8?q?afica,=20in=20stato=5Fpartita=5FIVA()=20se=20stato=5Fpaiv=20?= =?UTF-8?q?=C3=A8=20vuoto=20propone=20IT=20solo=20in=20caso=20di=20italian?= =?UTF-8?q?o?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: svn://10.65.10.50/branches/R_10_00@24300 c028cbd2-c16b-5b4b-a496-9718f37d4682 --- src/fe/felib.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/fe/felib.cpp b/src/fe/felib.cpp index d65108ac0..a7f50ec44 100644 --- a/src/fe/felib.cpp +++ b/src/fe/felib.cpp @@ -303,10 +303,9 @@ const TString& TAnagrafica::stato_partita_IVA() const TString& str = get_tmp_string(); if (_stato_paiv.full()) str = _stato_paiv; - else + else if(italiano()) { - // Propongo il codice iso del suo stato - str = stato_residenza_ISO(); + str = "IT"; } return str; }