From 261bafc712cb752f01fde0c01d186534434bb19c Mon Sep 17 00:00:00 2001 From: alex Date: Tue, 1 Feb 2011 15:35:05 +0000 Subject: [PATCH] Patch level : 10.0 912 Files correlati : mg3.exe Ricompilazione Demo : [ ] Commento : Corretta la stampa delle schede con numero movimento stampato sul giornale. Non azzerava i totali scheda git-svn-id: svn://10.65.10.50/branches/R_10_00@21558 c028cbd2-c16b-5b4b-a496-9718f37d4682 --- mg/mg3300.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mg/mg3300.cpp b/mg/mg3300.cpp index 935899e54..94a96bf59 100755 --- a/mg/mg3300.cpp +++ b/mg/mg3300.cpp @@ -542,10 +542,10 @@ void TForm_schedemag::set_options(bool no_valori, bool no_ff, bool sintetica, bo if (name().left(7) == "mg3300a") ((TForm_item &)find_field('B',odd_page, FF_VALORE_GRMOV)).hide(); } - TForm_subsection & ss = ((TForm_subsection &)find_field('B',odd_page,"H_MOVS_INTERESSATI")); + TForm_subsection & ss = ((TForm_subsection &)find_field('B',odd_page,"H_MOVS_INTERESSATI")); - ss.find_field("10").enable(!print_gio); - ss.find_field("110").enable(print_gio); + ss.printsection().find_field(10).enable(!print_gio); + ss.printsection().find_field(110).enable(print_gio); _no_ff = no_ff; _sintetica = sintetica; }