X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/0eb93798fdb7b37b7d43b92b5166e0ca4dac98b9..8c6fa3fbaccc22127280bf77a48fab5a3ee0716e:/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 b2bc52d6..16c4b198 100644 --- a/stglibs/srvconf.lib/parsers/chg_tariff.cpp +++ b/stglibs/srvconf.lib/parsers/chg_tariff.cpp @@ -51,22 +51,16 @@ 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; -appendResetable(stream, "fee", data.tariffConf.fee); -appendResetable(stream, "passiveCost", data.tariffConf.passiveCost); -appendResetable(stream, "free", data.tariffConf.free); +appendResetableTag(stream, "fee", data.tariffConf.fee); +appendResetableTag(stream, "passiveCost", data.tariffConf.passiveCost); +appendResetableTag(stream, "free", data.tariffConf.free); if (!data.tariffConf.traffType.empty()) - switch (data.tariffConf.traffType.data()) - { - case TRAFF_UP: stream << ""; break; - case TRAFF_DOWN: stream << ""; break; - case TRAFF_UP_DOWN: stream << ""; break; - case TRAFF_MAX: stream << ""; break; - } + stream << ""; if (!data.tariffConf.period.empty()) switch (data.tariffConf.period.data()) @@ -75,6 +69,16 @@ if (!data.tariffConf.period.empty()) case TARIFF::MONTH: stream << ""; break; } +if (!data.tariffConf.changePolicy.empty()) + switch (data.tariffConf.changePolicy.data()) + { + case TARIFF::ALLOW: stream << ""; break; + case TARIFF::TO_CHEAP: stream << ""; break; + case TARIFF::TO_EXPENSIVE: stream << ""; break; + case TARIFF::DENY: stream << ""; break; + } + +appendResetableTag(stream, "changePolicyTimeout", data.tariffConf.changePolicyTimeout); for (size_t i = 0; i < DIR_NUM; ++i) if (!data.dirPrice[i].hDay.empty() && !data.dirPrice[i].mDay.empty() &&