diff --git a/src/pages/Organization/SearchPage/OrganizationSearchForm.js b/src/pages/Organization/SearchPage/OrganizationSearchForm.js index 5c1f317..a406efe 100644 --- a/src/pages/Organization/SearchPage/OrganizationSearchForm.js +++ b/src/pages/Organization/SearchPage/OrganizationSearchForm.js @@ -11,6 +11,9 @@ import { useForm } from "react-hook-form"; import { useState } from "react"; import * as React from "react"; + +import * as UrlUtils from "../../../utils/ApiPathConst"; +import * as HttpUtils from "../../../utils/HttpUtils"; // ==============================|| DASHBOARD - DEFAULT ||============================== // @@ -41,6 +44,12 @@ const OrganizationSearchForm = ({ applySearch }) => { reset(); } + const doExport=()=>{ + HttpUtils.get({ + url: UrlUtils.GET_ORG_EXPORT + }); + } + return ( { {...register("searchCreditor")} control={} label="Search Creditor Only" - id=" " + id="searchCreditor" /> @@ -107,6 +116,19 @@ const OrganizationSearchForm = ({ applySearch }) => { {/*last row*/} + + + +