From 995f4a443cd6068ecd1f40b85b1cef66341a759f Mon Sep 17 00:00:00 2001 From: priyanshuvish Date: Fri, 27 Sep 2024 13:23:46 +0530 Subject: [PATCH] table pending --- .../OptiFiiExpense/ReimbursementRequest.jsx | 33 ++++- .../ReimbursementRequestView.jsx | 140 ++++++++++++++++++ src/Routes/Routes.js | 2 + 3 files changed, 172 insertions(+), 3 deletions(-) create mode 100644 src/Pages/OptiFiiExpense/ReimbursementRequestView.jsx diff --git a/src/Pages/OptiFiiExpense/ReimbursementRequest.jsx b/src/Pages/OptiFiiExpense/ReimbursementRequest.jsx index ff4666f..84318c1 100644 --- a/src/Pages/OptiFiiExpense/ReimbursementRequest.jsx +++ b/src/Pages/OptiFiiExpense/ReimbursementRequest.jsx @@ -1,15 +1,42 @@ -import { Box } from "@chakra-ui/react"; +import { Box, HStack, Text, VStack } from "@chakra-ui/react"; import React from "react"; import MiniHeader from "../../Components/MiniHeader"; +import { MdOutlineNoFood } from "react-icons/md"; const ReimbursementRequest = () => { return ( - + /> */} + + + + + + + + + + Food + + + Created by - Reethik Thota + + + + + + Created by - Reethik Thota + + + ₹ 50,000 + + + + ); }; diff --git a/src/Pages/OptiFiiExpense/ReimbursementRequestView.jsx b/src/Pages/OptiFiiExpense/ReimbursementRequestView.jsx new file mode 100644 index 0000000..0b30343 --- /dev/null +++ b/src/Pages/OptiFiiExpense/ReimbursementRequestView.jsx @@ -0,0 +1,140 @@ +import { Badge, Box, HStack, Image, Text, VStack } from "@chakra-ui/react"; +import React from "react"; +import MiniHeader from "../../Components/MiniHeader"; +import { MdOutlineNoFood } from "react-icons/md"; +import { IoMdCheckmark } from "react-icons/io"; + +const ReimbursementRequestView = () => { + return ( + + {/* */} + + + + + + + + + + + + Approved + + + + By Sr. Manager + + + + + In progress + + + + + Pending + + + By Sr. Manager + + + + + Pending + + + By Sr. Manager + + + + + Pending + + + By Sr. Manager + + + + + + + + + + + Report number : 1254587841 + + + Reimbursement report 2024 + + + + + Amount to be reimbursed + + + ₹ 50,000 + + + + + + + + + Submitted by + + + Dan Abramov + + + Pooja Shah + + + poojashah @wdipl.com + + + + + + Duration - 10 June - 28 June + + + + + Pending approval + + + + + Manav sain + + + manavsain@wdipl.com + + + Dan Abramov + + + + + + ); +}; + +export default ReimbursementRequestView; diff --git a/src/Routes/Routes.js b/src/Routes/Routes.js index 972b6de..340580f 100644 --- a/src/Routes/Routes.js +++ b/src/Routes/Routes.js @@ -20,6 +20,7 @@ import GiftCard from "../Pages/OptiFiiGifsAndVouchers/GiftCard"; import ApplicationStatus from "../Pages/OptiFiiGifsAndVouchers/id/ApplicationStatus"; import DigitalApplicationStatus from "../Pages/OptiFiiGifsAndVouchers/id/DigitalApplication"; import GiftDashboard from "../Pages/OptiFiiGifsAndVouchers/GiftDashboard"; +import ReimbursementRequestView from "../Pages/OptiFiiExpense/ReimbursementRequestView"; export const RouteLink = [ { path: "/", Component: Dashbaord }, { path: "/expenses", Component: Expenses }, @@ -30,6 +31,7 @@ export const RouteLink = [ { path: "/Manage-roles", Component: ManageDepartmentAndRoles }, { path: "/wallet-program", Component: WalletProgram }, { path: "/reimbursement-request", Component: ReimbursementRequest }, + { path: "/reimbursement-request-view", Component: ReimbursementRequestView }, { path: "/advance-expense-request", Component: AdvanceExpenseRequest }, { path: "/optiFii-benefit", Component: OptiFiiTaxBenefit }, { path: "/optiFii-vouchers", Component: OptiFiiGifsAndVouchers },