]> git.stg.codes - stg.git/commitdiff
Ticket 37. TariffChangelsAllowed() function definition added.
authorElena Mamontova <helenh463@gmail.com>
Fri, 5 Aug 2016 16:36:56 +0000 (19:36 +0300)
committerElena Mamontova <helenh463@gmail.com>
Fri, 5 Aug 2016 16:36:56 +0000 (19:36 +0300)
projects/stargazer/tariff_impl.cpp

index c6785cead85c26f71ea5e273014f0d71428a8d5f..32a52d8f13df1a5c2ada0e79e37d64e5473f1434 100644 (file)
@@ -145,3 +145,32 @@ else
     return tariffData.dirPrice[dir].priceDayA;
 }
 //-----------------------------------------------------------------------------
+std::string TARIFF_IMPL::TariffChangelsAllowed(const TARIFF & to) const
+{
+switch (GetChangePolicy())
+    {
+    case TARIFF::ALLOW:
+        {
+        return "";
+        }
+    case TARIFF::TO_CHEAP:
+        {
+        if (to.GetFee() < GetFee())
+            return "";
+        else
+            return "Current tariff " + GetName() + " is more cheap than new tariff " + to.GetName() + ". The policy is " + TARIFF::ChangePolicyToString(GetChangePolicy()).c_str() + ".";
+        }
+    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()).c_str() + ".";
+        }
+    case TARIFF::DENY:
+        {
+        return "Current tariff " + GetName() + ", new tariff " + to.GetName() + ".";
+        }
+    }
+}
+//-----------------------------------------------------------------------------