Auto commit: 2025-11-27T11:20:08.013Z

This commit is contained in:
Flatlogic Bot 2025-11-27 11:20:08 +00:00
parent 09ebb5bdee
commit e23abde359

View File

@ -287,7 +287,8 @@ if (!$project) {
$is_first_month_for_body = true; $is_first_month_for_body = true;
foreach ($months as $month): foreach ($months as $month):
$cell_id = ''; $cell_id = '';
if ($is_first_month_for_body && in_array($metric, $editable_metrics)) { $refreshable_metrics = array_merge($editable_metrics, ['NSR', 'Margin']);
if ($is_first_month_for_body && in_array($metric, $refreshable_metrics)) {
$cell_id = 'id="' . str_replace(' ', '-', strtolower($metric)) . '-' . $month . '"'; $cell_id = 'id="' . str_replace(' ', '-', strtolower($metric)) . '-' . $month . '"';
} }
?> ?>