From 47fe7efd92127ddcb32e28d4244831282d83a4c7 Mon Sep 17 00:00:00 2001 From: Claude Agent Date: Mon, 6 Apr 2026 15:44:48 +0000 Subject: [PATCH] refactor(ui): move Factura column next to status dot in orders table Co-Authored-By: Claude Opus 4.5 --- api/app/static/js/dashboard.js | 2 +- api/app/templates/dashboard.html | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/api/app/static/js/dashboard.js b/api/app/static/js/dashboard.js index bece68a..eb3fef8 100644 --- a/api/app/static/js/dashboard.js +++ b/api/app/static/js/dashboard.js @@ -366,6 +366,7 @@ async function loadDashOrders() { return ` ${statusDot(o.status)} + ${invoiceDot(o)} ${dateStr} ${renderClientCell(o)} ${esc(o.order_number)}${diffDots(o)} @@ -373,7 +374,6 @@ async function loadDashOrders() { ${fmtCost(o.delivery_cost)} ${fmtCost(o.discount_total)} ${orderTotal} - ${invoiceDot(o)} `; }).join(''); } diff --git a/api/app/templates/dashboard.html b/api/app/templates/dashboard.html index 8e80a18..02a710a 100644 --- a/api/app/templates/dashboard.html +++ b/api/app/templates/dashboard.html @@ -92,6 +92,7 @@ + F Data Client Nr Comanda @@ -99,7 +100,6 @@ Transport Discount Total - F @@ -114,5 +114,5 @@ {% endblock %} {% block scripts %} - + {% endblock %}