X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/f6eb7e68d3af08757b683092705dcd72ba1f4796..1487578f4887f49661320e24e311074a9af36f80:/projects/stargazer/plugins/store/firebird/firebird_store_tariffs.cpp diff --git a/projects/stargazer/plugins/store/firebird/firebird_store_tariffs.cpp b/projects/stargazer/plugins/store/firebird/firebird_store_tariffs.cpp index c3aecbec..6f8177ca 100644 --- a/projects/stargazer/plugins/store/firebird/firebird_store_tariffs.cpp +++ b/projects/stargazer/plugins/store/firebird/firebird_store_tariffs.cpp @@ -171,14 +171,11 @@ try st->Set(2, td.tariffConf.free); st->Set(3, td.tariffConf.passiveCost); st->Set(4, td.tariffConf.traffType); - if (schemaVersion == 0) - st->Set(num, id); if (schemaVersion > 0) { st->Set(5, TARIFF::PeriodToString(td.tariffConf.period)); - if (schemaVersion == 1) - st->Set(num + 1, id); + ++num; } if (schemaVersion > 1) @@ -187,10 +184,10 @@ try IBPP::Timestamp policyTimeout; time_t2ts(td.tariffConf.changePolicyTimeout, &policyTimeout); st->Set(7, policyTimeout); - if (schemaVersion == 2) - st->Set(num + 3, id); + num += 2; } + st->Set(num, id); st->Execute(); st->Close(); @@ -293,7 +290,6 @@ try st->Get(3, td->tariffConf.fee); st->Get(4, td->tariffConf.free); st->Get(5, td->tariffConf.passiveCost); - //st->Get(6, td->tariffConf.traffType); td->tariffConf.traffType = TARIFF::IntToTraffType(Get(st, 6)); if (schemaVersion > 0) td->tariffConf.period = TARIFF::StringToPeriod(Get(st, 7));