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 %}