From d16464a1cb1ef31ea40c2b0ce2c4e85d9ca13ecd Mon Sep 17 00:00:00 2001 From: Mattia Tollari Date: Mon, 10 Dec 2018 14:29:37 +0100 Subject: [PATCH] =?UTF-8?q?Patch=20level=20=20=20=20=20=20=20=20=20:=2012.?= =?UTF-8?q?0=20656=20Files=20correlati=20=20=20=20=20:=20ve=20Commento=20?= =?UTF-8?q?=20=20=20=20=20=20=20=20=20=20=20:=20Aggiunta=20nuova=20funzion?= =?UTF-8?q?e=20imp=5Forig()=20che=20ritorna=20il=20valore=20non=20per=20re?= =?UTF-8?q?ference,=20cos=C3=AC=20posso=20usarlo=20in=20oggetti=20const?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/ve/velib.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/ve/velib.h b/src/ve/velib.h index 9c601e4ea..9ed9e2ded 100755 --- a/src/ve/velib.h +++ b/src/ve/velib.h @@ -700,6 +700,8 @@ public: real imponibile(bool spese = true) const { return _imp + (spese ? _imp_spese : ZERO); } // Imponibile real imposta(bool spese = true) const { return _iva + (spese ? _iva_spese : ZERO); } // Iva real& imp() { return _imp; } + // Creata per essere utilizzata in un const TRiepilogo_iva + real imp_orig() const { return _imp_orig; } real& imp_orig() { return _imp_orig; } real& imp_spese() { return _imp_spese; } real& imp_spese_row() { return _imp_spese_row; }