lmi-commits
[Top][All Lists]
Advanced

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

[lmi-commits] [5952] Recognize client system's values for table ratings


From: Greg Chicares
Subject: [lmi-commits] [5952] Recognize client system's values for table ratings
Date: Tue, 30 Sep 2014 13:47:16 +0000

Revision: 5952
          http://svn.sv.gnu.org/viewvc/?view=rev&root=lmi&revision=5952
Author:   chicares
Date:     2014-09-30 13:47:15 +0000 (Tue, 30 Sep 2014)
Log Message:
-----------
Recognize client system's values for table ratings

Modified Paths:
--------------
    lmi/trunk/ChangeLog
    lmi/trunk/custom_io_1.cpp

Modified: lmi/trunk/ChangeLog
===================================================================
--- lmi/trunk/ChangeLog 2014-09-30 11:20:12 UTC (rev 5951)
+++ lmi/trunk/ChangeLog 2014-09-30 13:47:15 UTC (rev 5952)
@@ -34137,3 +34137,31 @@
   version.hpp
 Designate release candidate 5947.
 
+20140930T1103Z <address@hidden> [533]
+
+  GNUmakefile
+  main_cli.cpp
+  test_coding_rules.cpp
+  workhorse.make
+Support automated testing of new custom IO.
+
+20140930T1106Z <address@hidden> [533]
+
+  install_msw.sh
+Update makefile-generated configurable-settings file.
+
+20140930T1117Z <address@hidden> [533]
+
+  custom_io_1.cpp
+For testing, optionally emit an '.ill' file translated from '.inix'.
+
+20140930T1120Z <address@hidden> [533]
+
+  custom_io_1.cpp
+Set 'InforceAsOfDate' and 'LastMaterialChangeDate' to wire date.
+
+20140930T1347Z <address@hidden> [533]
+
+  custom_io_1.cpp
+Recognize client system's values for table ratings.
+

Modified: lmi/trunk/custom_io_1.cpp
===================================================================
--- lmi/trunk/custom_io_1.cpp   2014-09-30 11:20:12 UTC (rev 5951)
+++ lmi/trunk/custom_io_1.cpp   2014-09-30 13:47:15 UTC (rev 5952)
@@ -217,19 +217,19 @@
         : ("PF"      == ApplicantRating) ? "Preferred"
         :                                  "Rated"
         ;
-    z["SubstandardTable"] = // ?! Need to know range of values.
+    z["SubstandardTable"] =
           ("[EMPTY]" == ApplicantRating) ? "None"
         : ("PF"      == ApplicantRating) ? "None"
-        : ("?0?"     == ApplicantRating) ? "A=+25%"
-        : ("?1?"     == ApplicantRating) ? "B=+50%"
-        : ("?2?"     == ApplicantRating) ? "C=+75%"
-        : ("?3?"     == ApplicantRating) ? "D=+100%"
-        : ("?4?"     == ApplicantRating) ? "E=+125%"
-        : ("?5?"     == ApplicantRating) ? "F=+150%"
-        : ("?6?"     == ApplicantRating) ? "H=+200%"
-        : ("?7?"     == ApplicantRating) ? "J=+250%"
-        : ("?8?"     == ApplicantRating) ? "L=+300%"
-        : ("?9?"     == ApplicantRating) ? "P=+400%"
+        : ("A"       == ApplicantRating) ? "A=+25%"
+        : ("B"       == ApplicantRating) ? "B=+50%"
+        : ("C"       == ApplicantRating) ? "C=+75%"
+        : ("D"       == ApplicantRating) ? "D=+100%"
+        : ("E"       == ApplicantRating) ? "E=+125%"
+        : ("F"       == ApplicantRating) ? "F=+150%"
+        : ("H"       == ApplicantRating) ? "H=+200%"
+        : ("J"       == ApplicantRating) ? "J=+250%"
+        : ("L"       == ApplicantRating) ? "L=+300%"
+        : ("P"       == ApplicantRating) ? "P=+400%"
         : throw std::runtime_error(ApplicantRating + ": ApplicantRating 
unrecognized.")
         ;
     double permanent_flat         = 
value_cast<double>(ApplicantPermFlatExtraAmt);




reply via email to

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