chats kept

This commit is contained in:
2026-07-02 23:03:33 +03:30
parent 98f3e5e5bd
commit d56d4f7373
5 changed files with 39 additions and 25 deletions
-11
View File
@@ -99,17 +99,6 @@ const RequestList: FC = () => {
)
}
},
{
key: 'invoices',
title: 'فاکتورها',
render: (item) => {
return (
<div className=' '>
{item.invoices.length}
</div>
)
}
},
{
key: 'actions',
title: '',
-2
View File
@@ -1,4 +1,3 @@
import type { InvoiceType } from "@/pages/invoice/types/Types";
import type { UserType } from "@/pages/order/types/Types";
import type { ProductType } from "@/pages/product/types/Types";
import type { BaseResponse } from "@/shared/types/Types";
@@ -31,7 +30,6 @@ export type RequestType = {
user: UserType;
requestNumber: number;
items: RequestItemType[];
invoices: InvoiceType[]
};
export type RequestResponseType = BaseResponse<RequestType[]>;