if (!m_ucr.tariffName.empty())
{
- const TARIFF * tariff = u->GetTariff();
const TARIFF * newTariff = m_tariffs.FindByName(m_ucr.tariffName.const_data());
if (newTariff)
{
- if (tariff->TariffChangelsAllowed(*newTariff) == "")
+ const TARIFF * tariff = u->GetTariff();
+ std::string message = tariff->TariffChangeIsAllowed(*newTariff, stgTime);
+ if (message.empty())
{
if (!u->GetProperty().tariffName.Set(m_ucr.tariffName.const_data(), &m_currAdmin, m_login, &m_store))
return -1;
}
else
{
- std::string message = tariff->TariffChangelsAllowed(*newTariff);
GetStgLogger()("Tariff change is prohibited for user %s. %s", u->GetLogin().c_str(), message.c_str());
}
}