up
deploy to danak / build_and_deploy (push) Has been cancelled

This commit is contained in:
2026-06-26 11:35:22 +03:30
parent 44cb2f099d
commit 45eef21b39
2 changed files with 0 additions and 26 deletions
-22
View File
@@ -23,17 +23,6 @@ const RequestList: FC = () => {
type: 'input', type: 'input',
placeholder: 'جستجو', placeholder: 'جستجو',
}, },
{
name: 'status',
type: 'select',
placeholder: 'وضعیت',
options: [
{
label: 'درحال انتظار',
value: 'pending',
},
],
},
{ {
name: 'date', name: 'date',
type: 'date', type: 'date',
@@ -95,17 +84,6 @@ const RequestList: FC = () => {
) )
} }
}, },
{
key: 'status',
title: 'وضعیت',
render: (item) => {
return (
<div className='h-6 w-fit flex items-center bg-[#FFEDCA] text-[#FF7B00] rounded-full px-2.5 text-xs'>
{item.status}
</div>
)
}
},
{ {
key: 'invoices', key: 'invoices',
title: 'فاکتورها', title: 'فاکتورها',
-4
View File
@@ -25,15 +25,12 @@ export type RequestItemType = {
attachments: string[]; attachments: string[];
}; };
export type RequestStatus = "pending" | string;
export type RequestType = { export type RequestType = {
id: string; id: string;
createdAt: string; createdAt: string;
deletedAt: string | null; deletedAt: string | null;
user: UserType; user: UserType;
requestNumber: number; requestNumber: number;
status: RequestStatus;
items: RequestItemType[]; items: RequestItemType[];
invoices: InvoiceType[] invoices: InvoiceType[]
}; };
@@ -86,7 +83,6 @@ export type RequestDetailType = {
deletedAt: string | null; deletedAt: string | null;
user: RequestDetailUserType; user: RequestDetailUserType;
requestNumber: number; requestNumber: number;
status: RequestStatus;
items: RequestDetailItemType[]; items: RequestDetailItemType[];
}; };