diff --git a/src/pages/invoice/DetailPerfomaInvoice.tsx b/src/pages/invoice/DetailPerfomaInvoice.tsx
new file mode 100644
index 0000000..82ed714
--- /dev/null
+++ b/src/pages/invoice/DetailPerfomaInvoice.tsx
@@ -0,0 +1,106 @@
+import { type FC } from 'react'
+import Button from '@/components/Button'
+import { AddSquare, TickSquare } from 'iconsax-react'
+import Input from '@/components/Input'
+import { COLORS } from '@/constants/colors'
+import { Checkbox } from '@/components/ui/checkbox'
+import UploadBox from '@/components/UploadBox'
+import Textarea from '@/components/Textarea'
+
+const DetailPerfomaInvoice: FC = () => {
+ return (
+
+
+
پیش فاکتور درخواست #123456
+
+
+
+
+
اطلاعات پیش فاکتور
+
+
+
+
+
+
مالیات بر ارزش افزوده
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ )
+}
+
+export default DetailPerfomaInvoice
\ No newline at end of file
diff --git a/src/pages/invoice/ProformaInvoice.tsx b/src/pages/invoice/ProformaInvoice.tsx
index 8c8fff5..9376248 100644
--- a/src/pages/invoice/ProformaInvoice.tsx
+++ b/src/pages/invoice/ProformaInvoice.tsx
@@ -3,6 +3,9 @@ import { useState, type FC } from 'react'
import { ProformaInvoiceStatusEnum } from './enum/InvoiceEnum'
import Filters from '@/components/Filters'
import Table from '@/components/Table'
+import { Eye } from 'iconsax-react'
+import { Link } from 'react-router-dom'
+import { Paths } from '@/config/Paths'
const ProformaInvoice: FC = () => {
@@ -73,6 +76,17 @@ const ProformaInvoice: FC = () => {
{
key: 'paymentStatus',
title: 'وضعیت پرداخت',
+ },
+ {
+ key: 'actions',
+ title: '',
+ render: () => {
+ return (
+
+
+
+ )
+ }
}
]}
data={[
diff --git a/src/router/MainRouter.tsx b/src/router/MainRouter.tsx
index bb95dd1..b2b29c4 100644
--- a/src/router/MainRouter.tsx
+++ b/src/router/MainRouter.tsx
@@ -12,6 +12,7 @@ import FeaturesList from '@/pages/features/List'
import CreateProduct from '@/pages/product/Create'
import CreateFeature from '@/pages/features/Create'
import PrintService from '@/pages/service/PrintService'
+import DetailPerfomaInvoice from '@/pages/invoice/DetailPerfomaInvoice'
const MainRouter: FC = () => {
return (
@@ -25,7 +26,7 @@ const MainRouter: FC = () => {
} />
} />
} />
-
+ } />
} />
} />
} />