From b4010c09d6b99de2d94f3c2fc596c7165595c1c7 Mon Sep 17 00:00:00 2001 From: morteza-mortezai Date: Fri, 26 Jun 2026 15:50:47 +0330 Subject: [PATCH] up --- src/pages/order/List.tsx | 38 ++++++++++++++++++++++++-------------- 1 file changed, 24 insertions(+), 14 deletions(-) diff --git a/src/pages/order/List.tsx b/src/pages/order/List.tsx index a2e0e44..ea572a6 100644 --- a/src/pages/order/List.tsx +++ b/src/pages/order/List.tsx @@ -84,6 +84,17 @@ const OrdersList: FC = () => { key: 'orderNumber', title: 'شماره', }, + { + key: 'title', + title: 'عنوان', + render: (item) => { + return ( +
+ {item.title} +
+ ) + } + }, { key: 'customer', title: 'مشتری', @@ -95,6 +106,8 @@ const OrdersList: FC = () => { ) } }, + + { key: 'product', title: 'نام محصول', @@ -102,20 +115,8 @@ const OrdersList: FC = () => {
{item.product?.title ?? '—'}
), }, - { - key: 'createdAt', - title: 'تاریخ ایجاد ', - render: (item) => { - return ( -
{moment(item.createdAt).format('jYYYY-jMM-jDD')}
- ) - } - }, - { - key: 'type', - title: 'تعداد اقلام', - render: () =>
۱
, - }, + + { key: 'designer', title: 'مجری / طراح', @@ -139,6 +140,15 @@ const OrdersList: FC = () => { ) } }, + { + key: 'createdAt', + title: 'تاریخ ایجاد ', + render: (item) => { + return ( +
{moment(item.createdAt).format('jYYYY-jMM-jDD')}
+ ) + } + }, { key: 'actions', title: '',