]> git.stg.codes - stg.git/commitdiff
Ticket 37. Single quotes added in the message for user login, tariff name,
authorElena Mamontova <helenh463@gmail.com>
Mon, 8 Aug 2016 12:50:20 +0000 (15:50 +0300)
committerElena Mamontova <helenh463@gmail.com>
Mon, 8 Aug 2016 12:50:20 +0000 (15:50 +0300)
change policy name in TariffChangeIsAllowed() function.

projects/stargazer/tariff_impl.cpp

index 271a1da08036752728c55de665ed8f43f5e55003..7a024d0f823dba75171ccc970427f6469c333004 100644 (file)
@@ -155,14 +155,14 @@ switch (GetChangePolicy())
         if (to.GetFee() < GetFee())
             return "";
         else
-            return "Current tariff " + GetName() + " is more cheap than new tariff " + to.GetName() + ". The policy is " + TARIFF::ChangePolicyToString(GetChangePolicy()) + ".";
+            return "Current tariff '" + GetName() + "' is more cheap than new tariff '" + to.GetName() + "'. The policy is '" + TARIFF::ChangePolicyToString(GetChangePolicy()) + "'.";
     case TARIFF::TO_EXPENSIVE:
         if (to.GetFee() > GetFee())
             return "";
         else
-            return "Current tariff " + GetName() + " is more expensive than new tariff " + to.GetName() + ". The policy is " + TARIFF::ChangePolicyToString(GetChangePolicy()) + ".";
+            return "Current tariff '" + GetName() + "' is more expensive than new tariff '" + to.GetName() + "'. The policy is '" + TARIFF::ChangePolicyToString(GetChangePolicy()) + "'.";
     case TARIFF::DENY:
-        return "Current tariff " + GetName() + ", new tariff " + to.GetName() + ". The policy is " + TARIFF::ChangePolicyToString(GetChangePolicy()) + ".";
+        return "Current tariff '" + GetName() + "', new tariff '" + to.GetName() + "'. The policy is '" + TARIFF::ChangePolicyToString(GetChangePolicy()) + "'.";
     }
 }
 //-----------------------------------------------------------------------------