._.
This commit is contained in:
parent
19aa7fdf4d
commit
4ed9d711a7
@ -118,16 +118,22 @@ const Home = () => {
|
||||
|
||||
{expandedOrderId === order.id && (
|
||||
<div className="card-body">
|
||||
<p>
|
||||
<strong>Статус:</strong>{" "}
|
||||
{order.status_name || "Неизвестный статус"}
|
||||
</p>
|
||||
<p>
|
||||
<strong>Количество роботов:</strong> {order.count_robots}
|
||||
</p>
|
||||
<p>
|
||||
<strong>Количество этапов:</strong> {deliveryOrdersCount || 0}
|
||||
</p>
|
||||
<table className="table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Статус</th>
|
||||
<th>Количество роботов</th>
|
||||
<th>Количество этапов</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>{order.status_name || "Неизвестный статус"}</td>
|
||||
<td>{order.count_robots}</td>
|
||||
<td>{deliveryOrdersCount || 0}</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<DeliveryOrdersList
|
||||
totalOrderId={order.id}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user