[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: </b></td><td>%s</td>"
- "<td align=\"right\"><b>Plan Type(s): </b></td><td>%s</td>"
+ "<td align=\"right\"><b>Effective
Date: </b></td><td>%s</td>"
+ "<td align=\"right\"><b>Plan Type: </b></td><td>%s</td>"
"</tr>"
"<tr>"
"<td align=\"right\"><b>Guarantee Issue
Max: </b></td><td>%s</td>"
"<td align=\"right\"><b>Premium Mode: </b></td><td>%s</td>"
"</tr>"
"<tr>"
- "<td align=\"right\"><b>Product(s): </b></td><td>%s</td>"
+ "<td align=\"right\"><b>Product: </b></td><td>%s</td>"
"<td align=\"right\"><b>Contract
State: </b></td><td>%s</td>"
"</tr>"
"<tr>"
"<td align=\"right\"><b>Available
Riders: </b></td><td>%s</td>"
"</tr>"
"<tr>"
- "<td align=\"right\"><b>Number of
eligibles: </b></td><td>%d</td>"
+ "<td align=\"right\"><b>Number of
participants: </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
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [lmi-commits] [6265] Exclude composite from participant count in summary,
Greg Chicares <=