]> git.stg.codes - stg.git/commitdiff
Ticket 37. if (version > 7) check added and the 'change_policy' field
authorElena Mamontova <helenh463@gmail.com>
Tue, 7 Jun 2016 07:36:26 +0000 (10:36 +0300)
committerElena Mamontova <helenh463@gmail.com>
Tue, 7 Jun 2016 07:36:26 +0000 (10:36 +0300)
added to the UPDATE tb_tariffs query in the SaveTariff() function.

projects/stargazer/plugins/store/postgresql/postgresql_store_tariffs.cpp

index 045411b1499f822400cfc860831a1ebd6661d1d9..8620ef600192625c11204f4ca03566a2171a878f 100644 (file)
@@ -317,6 +317,9 @@ int32_t id;
     if (version > 6)
         query << ", period = '" << TARIFF::PeriodToString(td.tariffConf.period) << "'";
 
+    if (version > 7)
+        query << ", change_policy = '" << TARIFF::ChangePolicyToString(td.tariffConf.changePolicy) << "'";
+
     query << " WHERE pk_tariff = " << id;
 
     result = PQexec(connection, query.str().c_str());