X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/ae21e8d6ad32d0bf3517127aef5cd8129b7507aa..34d407f7df45b5faaa25a92a04e8582f95162f31:/stglibs/srvconf.lib/parsers/chg_tariff.cpp?ds=inline diff --git a/stglibs/srvconf.lib/parsers/chg_tariff.cpp b/stglibs/srvconf.lib/parsers/chg_tariff.cpp index cb7d9475..80bb4cb2 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; @@ -68,6 +68,13 @@ if (!data.tariffConf.traffType.empty()) case TRAFF_MAX: stream << ""; break; } +if (!data.tariffConf.period.empty()) + switch (data.tariffConf.period.data()) + { + case TARIFF::DAY: stream << ""; break; + case TARIFF::MONTH: stream << ""; break; + } + for (size_t i = 0; i < DIR_NUM; ++i) if (!data.dirPrice[i].hDay.empty() && !data.dirPrice[i].mDay.empty() &&