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