Merge branch 'main' of https://gittea.biveki.ru/Sfera/sfera
This commit is contained in:
@ -209,23 +209,18 @@ export function FulfillmentWarehouseDemo() {
|
|||||||
<div className="text-sm text-white/60">Всего</div>
|
<div className="text-sm text-white/60">Всего</div>
|
||||||
</div>
|
</div>
|
||||||
<div className="text-center">
|
<div className="text-center">
|
||||||
<div className="text-sm text-white/60">Магазинов</div>
|
|
||||||
<div className="text-lg font-semibold text-white">3</div>
|
<div className="text-lg font-semibold text-white">3</div>
|
||||||
</div>
|
</div>
|
||||||
<div className="text-center">
|
<div className="text-center">
|
||||||
<div className="text-sm text-white/60">Продуктов</div>
|
<StatCell value={5} prevValue={3} nextValue={7} />
|
||||||
<div className="text-lg font-semibold text-white">5</div>
|
|
||||||
</div>
|
</div>
|
||||||
<div className="text-center">
|
<div className="text-center">
|
||||||
<div className="text-sm text-white/60 mb-2">Товар</div>
|
|
||||||
<StatCell value={totals.goods} prevValue={520} nextValue={610} />
|
<StatCell value={totals.goods} prevValue={520} nextValue={610} />
|
||||||
</div>
|
</div>
|
||||||
<div className="text-center">
|
<div className="text-center">
|
||||||
<div className="text-sm text-white/60 mb-2">Брак</div>
|
|
||||||
<StatCell value={totals.defects} prevValue={15} nextValue={25} />
|
<StatCell value={totals.defects} prevValue={15} nextValue={25} />
|
||||||
</div>
|
</div>
|
||||||
<div className="text-center">
|
<div className="text-center">
|
||||||
<div className="text-sm text-white/60 mb-2">Расходники</div>
|
|
||||||
<StatCell
|
<StatCell
|
||||||
value={totals.sellerSupplies}
|
value={totals.sellerSupplies}
|
||||||
prevValue={95}
|
prevValue={95}
|
||||||
@ -233,7 +228,6 @@ export function FulfillmentWarehouseDemo() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div className="text-center">
|
<div className="text-center">
|
||||||
<div className="text-sm text-white/60 mb-2">Возвраты</div>
|
|
||||||
<StatCell
|
<StatCell
|
||||||
value={totals.pvzReturns}
|
value={totals.pvzReturns}
|
||||||
prevValue={38}
|
prevValue={38}
|
||||||
@ -252,12 +246,25 @@ export function FulfillmentWarehouseDemo() {
|
|||||||
>
|
>
|
||||||
<div className="text-center text-white/80">{row.number}</div>
|
<div className="text-center text-white/80">{row.number}</div>
|
||||||
<div className="text-center text-white/80">{row.store}</div>
|
<div className="text-center text-white/80">{row.store}</div>
|
||||||
<div
|
<div className="text-center">
|
||||||
className="text-center text-white/80 truncate"
|
<div className="flex items-center justify-center gap-2">
|
||||||
title={row.product}
|
<div className="flex items-center text-xs text-green-400">
|
||||||
>
|
<TrendingUp size={12} className="mr-1" />
|
||||||
|
{row.id + 2}
|
||||||
|
</div>
|
||||||
|
<div className="text-white/80 font-medium truncate" title={row.product}>
|
||||||
{row.product}
|
{row.product}
|
||||||
</div>
|
</div>
|
||||||
|
<div className="flex items-center text-xs text-red-400">
|
||||||
|
<TrendingDown size={12} className="mr-1" />
|
||||||
|
{row.id + 1}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="text-xs text-white/50 mt-1">
|
||||||
|
Артикул: {row.store.slice(0, 3).toUpperCase()}-
|
||||||
|
{row.id.toString().padStart(3, "0")}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<div className="text-center text-white font-medium">
|
<div className="text-center text-white font-medium">
|
||||||
{row.goods.toLocaleString()}
|
{row.goods.toLocaleString()}
|
||||||
</div>
|
</div>
|
||||||
|
Reference in New Issue
Block a user