X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/8569ecdc2c9368dc0fe650b901cce7b37337ffec..9af0b6faad1f5e6ca2206f7cddc02885a08e718c:/stglibs/srvconf.lib/parsers/chg_tariff.cpp
diff --git a/stglibs/srvconf.lib/parsers/chg_tariff.cpp b/stglibs/srvconf.lib/parsers/chg_tariff.cpp
index cb7d9475..8a1c56a4 100644
--- a/stglibs/srvconf.lib/parsers/chg_tariff.cpp
+++ b/stglibs/srvconf.lib/parsers/chg_tariff.cpp
@@ -51,7 +51,7 @@ stream << "<" << name << " value=\"" << res << "\"/>";
} // namespace anonymous
-std::string CHG_TARIFF::Serialize(const TARIFF_DATA_RES & data)
+std::string CHG_TARIFF::Serialize(const TARIFF_DATA_RES & data, const std::string & /*encoding*/)
{
std::ostringstream stream;
@@ -60,12 +60,13 @@ appendResetable(stream, "passiveCost", data.tariffConf.passiveCost);
appendResetable(stream, "free", data.tariffConf.free);
if (!data.tariffConf.traffType.empty())
- switch (data.tariffConf.traffType.data())
+ stream << "";
+
+if (!data.tariffConf.period.empty())
+ switch (data.tariffConf.period.data())
{
- case TRAFF_UP: stream << ""; break;
- case TRAFF_DOWN: stream << ""; break;
- case TRAFF_UP_DOWN: stream << ""; break;
- case TRAFF_MAX: stream << ""; break;
+ case TARIFF::DAY: stream << ""; break;
+ case TARIFF::MONTH: stream << ""; break;
}
for (size_t i = 0; i < DIR_NUM; ++i)