From db555bbf553c24da3f1636efda7adbb2b077d263 Mon Sep 17 00:00:00 2001 From: root Date: Wed, 27 May 2026 14:03:57 +0000 Subject: [PATCH] remove: drop readiness column from orders table --- src/components/orders/OrdersTable.jsx | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/components/orders/OrdersTable.jsx b/src/components/orders/OrdersTable.jsx index d2ce72c..910bcf3 100644 --- a/src/components/orders/OrdersTable.jsx +++ b/src/components/orders/OrdersTable.jsx @@ -9,8 +9,7 @@ import { const buildGroupSummary = (group) => { const orderCountLabel = `${group.ordersCount || 0} ${group.ordersCount === 1 ? "заказ" : group.ordersCount < 5 ? "заказа" : "заказов"}`; - const readyCountLabel = `${group.readyCount || 0} готовы`; - const parts = [orderCountLabel, readyCountLabel]; + const parts = [orderCountLabel]; if (group.deliveryDate) { const datePart = group.deliveryTime ? `${group.deliveryDate} · ${group.deliveryTime}` : group.deliveryDate; parts.push(datePart); @@ -110,7 +109,6 @@ export const OrdersTable = ({ Статус Водитель Дата доставки - Готовность Обновлён @@ -150,9 +148,6 @@ export const OrdersTable = ({ )} - - {group.readyCount || 0}/{group.ordersCount || 0} - {formatDateTime(group.updatedAt)}