From be125a68809bd559cc786efa8bc886f1e4bd0974 Mon Sep 17 00:00:00 2001 From: M_Kececi Date: Fri, 3 Jul 2026 20:46:31 +0300 Subject: [PATCH] Merge remote-tracking branch 'origin/master' # Conflicts: # svc/queries/product_performance_sql.go # ui/src/pages/ProductPerformanceProfitability.vue --- svc/queries/product_performance.go | 1 + 1 file changed, 1 insertion(+) diff --git a/svc/queries/product_performance.go b/svc/queries/product_performance.go index 8c34cbc..6a60dc2 100644 --- a/svc/queries/product_performance.go +++ b/svc/queries/product_performance.go @@ -3523,6 +3523,7 @@ Source AS ( COALESCE(margin_index_90d,0) AS margin_index_90d, COALESCE(performance_score,0) AS performance_score, COALESCE(performance_bucket,'') AS performance_bucket, + COALESCE(recommendation,'') AS recommendation, COALESCE(stock_qty,0) * COALESCE(cost_price_usd,0) AS idle_cost_usd FROM mk_product_performance_kpi_daily WHERE kpi_date = (SELECT MAX(kpi_date) FROM mk_product_performance_kpi_daily)