lmi-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[lmi-commits] [6265] Exclude composite from participant count in summary


From: Greg Chicares
Subject: [lmi-commits] [6265] Exclude composite from participant count in summary
Date: Wed, 26 Aug 2015 15:46:21 +0000

Revision: 6265
          http://svn.sv.gnu.org/viewvc/?view=rev&root=lmi&revision=6265
Author:   chicares
Date:     2015-08-26 15:46:20 +0000 (Wed, 26 Aug 2015)
Log Message:
-----------
Exclude composite from participant count in summary

Modified Paths:
--------------
    lmi/trunk/group_quote_pdf_gen_wx.cpp

Modified: lmi/trunk/group_quote_pdf_gen_wx.cpp
===================================================================
--- lmi/trunk/group_quote_pdf_gen_wx.cpp        2015-08-26 12:54:14 UTC (rev 
6264)
+++ lmi/trunk/group_quote_pdf_gen_wx.cpp        2015-08-26 15:46:20 UTC (rev 
6265)
@@ -759,22 +759,22 @@
          "<td align=\"center\" colspan=\"4\"><font size=\"+1\">Plan Details 
Summary</font></td>"
          "</tr>"
          "<tr>"
-         "<td align=\"right\"><b>Effective 
Data:&nbsp;&nbsp;</b></td><td>%s</td>"
-         "<td align=\"right\"><b>Plan Type(s):&nbsp;&nbsp;</b></td><td>%s</td>"
+         "<td align=\"right\"><b>Effective 
Date:&nbsp;&nbsp;</b></td><td>%s</td>"
+         "<td align=\"right\"><b>Plan Type:&nbsp;&nbsp;</b></td><td>%s</td>"
          "</tr>"
          "<tr>"
          "<td align=\"right\"><b>Guarantee Issue 
Max:&nbsp;&nbsp;</b></td><td>%s</td>"
          "<td align=\"right\"><b>Premium Mode:&nbsp;&nbsp;</b></td><td>%s</td>"
          "</tr>"
          "<tr>"
-         "<td align=\"right\"><b>Product(s):&nbsp;&nbsp;</b></td><td>%s</td>"
+         "<td align=\"right\"><b>Product:&nbsp;&nbsp;</b></td><td>%s</td>"
          "<td align=\"right\"><b>Contract 
State:&nbsp;&nbsp;</b></td><td>%s</td>"
          "</tr>"
          "<tr>"
          "<td align=\"right\"><b>Available 
Riders:&nbsp;&nbsp;</b></td><td>%s</td>"
          "</tr>"
          "<tr>"
-         "<td align=\"right\"><b>Number of 
eligibles:&nbsp;&nbsp;</b></td><td>%d</td>"
+         "<td align=\"right\"><b>Number of 
participants:&nbsp;&nbsp;</b></td><td>%d</td>"
          "</tr>"
          "</table>"
         ,wxDateTime::Today().FormatDate()
@@ -784,7 +784,7 @@
         ,header_.product_
         ,header_.contract_state_
         ,header_.available_riders_
-        ,row_num_
+        ,row_num_ - 1 // "- 1": don't count the composite.
         );
 
     int const summary_height = output_html




reply via email to

[Prev in Thread] Current Thread [Next in Thread]