lmi-commits
[Top][All Lists]
Advanced

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

[lmi-commits] [6516] Fix defect introduced 20050720T1018Z: "substandard


From: Greg Chicares
Subject: [lmi-commits] [6516] Fix defect introduced 20050720T1018Z: "substandard standard"
Date: Wed, 09 Mar 2016 01:13:20 +0000

Revision: 6516
          http://svn.sv.gnu.org/viewvc/?view=rev&root=lmi&revision=6516
Author:   chicares
Date:     2016-03-09 01:13:20 +0000 (Wed, 09 Mar 2016)
Log Message:
-----------
Fix defect introduced 20050720T1018Z: "substandard standard"

Modified Paths:
--------------
    lmi/trunk/ChangeLog
    lmi/trunk/illustration_reg.xsl
    lmi/trunk/nasd.xsl
    lmi/trunk/reg_d_group.xsl

Modified: lmi/trunk/ChangeLog
===================================================================
--- lmi/trunk/ChangeLog 2016-03-09 00:40:23 UTC (rev 6515)
+++ lmi/trunk/ChangeLog 2016-03-09 01:13:20 UTC (rev 6516)
@@ -38692,3 +38692,10 @@
   test_coding_rules.cpp
 Allow a string rms discourages when GNU libtool requires it.
 
+20160309T0113Z <address@hidden> [454]
+
+  illustration_reg.xsl
+  nasd.xsl
+  reg_d_group.xsl
+Fix defect introduced 20050720T1018Z: "substandard standard".
+

Modified: lmi/trunk/illustration_reg.xsl
===================================================================
--- lmi/trunk/illustration_reg.xsl      2016-03-09 00:40:23 UTC (rev 6515)
+++ lmi/trunk/illustration_reg.xsl      2016-03-09 01:13:20 UTC (rev 6516)
@@ -508,14 +508,6 @@
                 "Nonstandard Simplified Underwriting".
               </fo:block>
             </xsl:if>
-            <xsl:if test="$scalars/StatePostalAbbrev='TX'">
-              <xsl:if test="$scalars/UWType='Guaranteed issue'">
-                <fo:block padding-top="1em">
-                  * This policy is classified as substandard guaranteed issue
-                  per the requirements of the Texas Insurance Department.
-                </fo:block>
-              </xsl:if>
-            </xsl:if>
             <!-- Group Experience Rating Logic -->
             <xsl:if test="$GroupExperienceRating='1'">
               <fo:block padding-top="1em">
@@ -1309,9 +1301,6 @@
                     <xsl:when test="$scalars/UWType='Medical'">
                       Fully underwritten
                     </xsl:when>
-                    <xsl:when test="($scalars/StatePostalAbbrev='TX') and 
($scalars/UWType='Guaranteed issue')">
-                      Substandard *
-                    </xsl:when>
                     <xsl:otherwise>
                       <xsl:value-of select="$scalars/UWType"/>
                     </xsl:otherwise>

Modified: lmi/trunk/nasd.xsl
===================================================================
--- lmi/trunk/nasd.xsl  2016-03-09 00:40:23 UTC (rev 6515)
+++ lmi/trunk/nasd.xsl  2016-03-09 01:13:20 UTC (rev 6516)
@@ -37,6 +37,10 @@
     <xsl:call-template name="set_group_carveout"/>
   </xsl:variable>
 
+  <xsl:variable name="TexasFootnote">
+    <xsl:call-template name="set_texas_footnote"/>
+  </xsl:variable>
+
   <xsl:template match="/">
     <fo:root>
       <fo:layout-master-set>
@@ -610,6 +614,16 @@
                 <xsl:value-of select="$compliance_tracking_number"/>
               </fo:block>
             </xsl:if>
+            <xsl:if test="$scalars/StatePostalAbbrev='TX'">
+              <xsl:if test="$scalars/UWType='Guaranteed issue'">
+                <xsl:if test="$TexasFootnote='1'">
+                    <fo:block padding-top="1em">
+                      *** This policy is classified as substandard guaranteed 
issue
+                      per the requirements of the Texas Insurance Department.
+                    </fo:block>
+                 </xsl:if>
+              </xsl:if>
+            </xsl:if>
             <fo:block font-weight="bold" text-align="center" padding-top="1em">
               GUARANTEED PRINCIPAL ACCOUNT
             </fo:block>
@@ -780,13 +794,11 @@
               <fo:block text-align="left">
                 <xsl:value-of 
select="concat(translate(substring($scalars/ContractName,1,1), $lowerAZ, 
$upperAZ), substring($scalars/ContractName,2))"/>: <xsl:value-of 
select="$scalars/PolicyMktgName"/>
               </fo:block>
-
               <xsl:if test="$GroupCarveout='1'">
                 <fo:block text-align="left">
                   Minimum Initial Premium: $<xsl:value-of 
select="$scalars/InitMinPrem"/>
                 </fo:block>
               </xsl:if>
-
               <fo:block text-align="left">
                 First Year Premium: $<xsl:value-of select="$scalars/InitPrem"/>
               </fo:block>
@@ -796,8 +808,8 @@
                     <xsl:when test="$scalars/UWType='Medical'">
                       Fully underwritten,
                     </xsl:when>
-                    <xsl:when test="$scalars/StatePostalAbbrev='TX' and 
$scalars/UWType='Guaranteed issue'">
-                      Substandard *,
+                    <xsl:when test="$scalars/StatePostalAbbrev='TX' and 
$scalars/UWType='Guaranteed issue' and $TexasFootnote='1'">
+                      Substandard ***,
                     </xsl:when>
                     <xsl:otherwise>
                       <xsl:value-of select="$scalars/UWType"/>,
@@ -1265,5 +1277,9 @@
     <xsl:value-of select="number($scalars/PolicyLegalName='Group Flexible 
Premium Variable Adjustable Life Insurance Certificate')"/>
   </xsl:template>
 
+  <xsl:template name="set_texas_footnote">
+    <xsl:value-of select="number($scalars/PolicyLegalName='Flexible Premium 
Variable Adjustable Life Insurance Policy')"/>
+  </xsl:template>
+
 </xsl:stylesheet>
 

Modified: lmi/trunk/reg_d_group.xsl
===================================================================
--- lmi/trunk/reg_d_group.xsl   2016-03-09 00:40:23 UTC (rev 6515)
+++ lmi/trunk/reg_d_group.xsl   2016-03-09 01:13:20 UTC (rev 6516)
@@ -574,9 +574,6 @@
                     <xsl:when test="$scalars/UWType='Medical'">
                       Fully underwritten,
                     </xsl:when>
-                    <xsl:when test="$scalars/StatePostalAbbrev='TX' and 
$scalars/UWType='Guaranteed issue'">
-                      Substandard *,
-                    </xsl:when>
                     <xsl:otherwise>
                       <xsl:value-of select="$scalars/UWType"/>,
                     </xsl:otherwise>




reply via email to

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