fix: 修复未开启线索交流时不计算会客室效率

This commit is contained in:
uye
2026-05-22 23:43:50 +08:00
parent 0dec7ff8fc
commit e4ab103f96

View File

@@ -66,6 +66,11 @@ bool asst::InfrastReceptionTask::_run()
return false;
}
// 线索交流关闭时 use_clue() 不会执行m_product 为空导致 optimal_calc 效率全为 0
if (m_product.empty()) {
set_product("General");
}
if (!m_skip_shift) {
return shift();
}