]> git.stg.codes - stg.git/blobdiff - projects/stargazer/plugins/store/firebird/firebird_store_tariffs.cpp
Ticket 37. The 'change_policy_timeout' field added to update tb_tariffs
[stg.git] / projects / stargazer / plugins / store / firebird / firebird_store_tariffs.cpp
index b00fd1224c24b07d2edc6c5ee864703d84d75fbe..cef5b203c87822987eccb01aa7c5ea576d700b05 100644 (file)
@@ -160,10 +160,12 @@ try
     if (schemaVersion > 0)
         query += ", period = ?";
     if (schemaVersion > 1)
-        query += ", change_policy = ?";
+        query += ", change_policy = ?, \
+                    change_policy_timeout = ?";
 
     query += " where pk_tariff = ?";
 
+    st->Prepare(query);
     st->Set(1, td.tariffConf.fee);
     st->Set(2, td.tariffConf.free);
     st->Set(3, td.tariffConf.passiveCost);
@@ -172,8 +174,14 @@ try
     if (schemaVersion > 0)
         st->Set(5, TARIFF::PeriodToString(td.tariffConf.period));
     if (schemaVersion > 1)
+        {
         st->Set(6, TARIFF::ChangePolicyToString(td.tariffConf.changePolicy));
+        IBPP::Timestamp policyTimeout;
+        time_t2ts(td.tariffConf.changePolicyTimeout, &policyTimeout);
+        st->Set(7, policyTimeout);
+        }
 
+    st->Set(8, id);
     st->Execute();
     st->Close();
 
@@ -281,7 +289,10 @@ try
     if (schemaVersion > 0)
         td->tariffConf.period = TARIFF::StringToPeriod(Get<std::string>(st, 7));
     if (schemaVersion > 1)
+        {
         td->tariffConf.changePolicy = TARIFF::StringToChangePolicy(Get<std::string>(st, 8));
+        td->tariffConf.changePolicyTimeout = ts2time_t(Get<IBPP::Timestamp>(st, 9));
+        }
     st->Close();
     st->Prepare("select * from tb_tariffs_params where fk_tariff = ?");
     st->Set(1, id);