fixing ui of RD and delete stock
This commit is contained in:
parent
fc12e4e760
commit
90cb27e69b
@ -154,7 +154,6 @@ import ViewRetailDistributorPD from "./views/PrincipalDistributors/ViewRetailDis
|
|||||||
import MapRD from "./views/RetailDistributors/MapRD";
|
import MapRD from "./views/RetailDistributors/MapRD";
|
||||||
import PendingOrders from "./views/orders/pendingOrders";
|
import PendingOrders from "./views/orders/pendingOrders";
|
||||||
import ViewInvoices from "./views/orders/viewInoices";
|
import ViewInvoices from "./views/orders/viewInoices";
|
||||||
import Stocks from "./views/PrincipalDistributors/Stock";
|
|
||||||
import SingleDistributorOrder from "./views/RetailDistributors/DistributorOrders";
|
import SingleDistributorOrder from "./views/RetailDistributors/DistributorOrders";
|
||||||
import DistributorStocks from "./views/RetailDistributors/DistributorStock";
|
import DistributorStocks from "./views/RetailDistributors/DistributorStock";
|
||||||
const routes = [
|
const routes = [
|
||||||
@ -440,12 +439,6 @@ const routes = [
|
|||||||
element: ViewRetailDistributorPD,
|
element: ViewRetailDistributorPD,
|
||||||
navName: "PrincipalDistributor",
|
navName: "PrincipalDistributor",
|
||||||
},
|
},
|
||||||
{
|
|
||||||
path: "/pd-stock/:id",
|
|
||||||
name: "view Stock",
|
|
||||||
element: Stocks,
|
|
||||||
navName: "PrincipalDistributor",
|
|
||||||
},
|
|
||||||
//Inventory
|
//Inventory
|
||||||
{
|
{
|
||||||
path: "/inventory",
|
path: "/inventory",
|
||||||
|
@ -1,513 +0,0 @@
|
|||||||
import React, { useState, useEffect, useRef, useCallback } from "react";
|
|
||||||
import { Link, useParams } from "react-router-dom";
|
|
||||||
import axios from "axios";
|
|
||||||
import Button from "@material-ui/core/Button";
|
|
||||||
import { useNavigate } from "react-router-dom";
|
|
||||||
import { isAutheticated } from "src/auth";
|
|
||||||
import swal from "sweetalert";
|
|
||||||
import debounce from "lodash.debounce";
|
|
||||||
import { Typography } from "@mui/material";
|
|
||||||
const Stocks = () => {
|
|
||||||
const token = isAutheticated();
|
|
||||||
const navigate = useNavigate();
|
|
||||||
const { id } = useParams();
|
|
||||||
const [loading, setLoading] = useState(false);
|
|
||||||
const [productsData, setProductsData] = useState([]);
|
|
||||||
const [categories, setCategories] = useState([]);
|
|
||||||
const [brands, setBrands] = useState([]);
|
|
||||||
const [user, setUser] = useState(null);
|
|
||||||
|
|
||||||
const nameRef = useRef();
|
|
||||||
const categoryRef = useRef();
|
|
||||||
const brandRef = useRef();
|
|
||||||
|
|
||||||
const [currentPage, setCurrentPage] = useState(1);
|
|
||||||
const [itemPerPage, setItemPerPage] = useState(10);
|
|
||||||
const [totalData, setTotalData] = useState(0);
|
|
||||||
// Fetch User Details
|
|
||||||
const getUserDetails = useCallback(async () => {
|
|
||||||
try {
|
|
||||||
const response = await axios.get(`/api/v1/admin/user/${id}`, {
|
|
||||||
headers: {
|
|
||||||
Authorization: `Bearer ${token}`,
|
|
||||||
},
|
|
||||||
});
|
|
||||||
setUser(response.data.user);
|
|
||||||
} catch (error) {
|
|
||||||
swal({
|
|
||||||
title: "Warning",
|
|
||||||
text: error.message,
|
|
||||||
icon: "error",
|
|
||||||
button: "Close",
|
|
||||||
dangerMode: true,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}, [id, token]);
|
|
||||||
|
|
||||||
// Call getUserDetails on component mount
|
|
||||||
useEffect(() => {
|
|
||||||
getUserDetails();
|
|
||||||
}, [getUserDetails]);
|
|
||||||
|
|
||||||
const getProductsData = async () => {
|
|
||||||
setLoading(true);
|
|
||||||
try {
|
|
||||||
const response = await axios.get(`/api/pd/stock/${id}`, {
|
|
||||||
headers: {
|
|
||||||
Authorization: `Bearer ${token}`,
|
|
||||||
},
|
|
||||||
params: {
|
|
||||||
page: currentPage,
|
|
||||||
show: itemPerPage,
|
|
||||||
name: nameRef.current?.value || "",
|
|
||||||
category: categoryRef.current?.value || "",
|
|
||||||
brand: brandRef.current?.value || "",
|
|
||||||
},
|
|
||||||
});
|
|
||||||
// console.log(response.data);
|
|
||||||
setProductsData(response.data?.products || []);
|
|
||||||
setTotalData(response.data?.totalProducts || 0);
|
|
||||||
} catch (err) {
|
|
||||||
const msg = err?.response?.data?.msg || "Something went wrong!";
|
|
||||||
swal({
|
|
||||||
title: "Error",
|
|
||||||
text: msg,
|
|
||||||
icon: "error",
|
|
||||||
button: "Retry",
|
|
||||||
dangerMode: true,
|
|
||||||
});
|
|
||||||
} finally {
|
|
||||||
setLoading(false);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
const getCatagories = () => {
|
|
||||||
axios
|
|
||||||
.get(`/api/category/getCategories`, {
|
|
||||||
headers: {
|
|
||||||
"Access-Control-Allow-Origin": "*",
|
|
||||||
Authorization: `Bearer ${token}`,
|
|
||||||
},
|
|
||||||
})
|
|
||||||
.then((res) => {
|
|
||||||
// console.log(res?.data?.categories);
|
|
||||||
setCategories(res?.data?.categories);
|
|
||||||
});
|
|
||||||
};
|
|
||||||
const getBrands = () => {
|
|
||||||
axios
|
|
||||||
.get(`/api/brand/getBrands`, {
|
|
||||||
headers: {
|
|
||||||
"Access-Control-Allow-Origin": "*",
|
|
||||||
Authorization: `Bearer ${token}`,
|
|
||||||
},
|
|
||||||
})
|
|
||||||
.then((res) => {
|
|
||||||
// console.log(res?.data?.brands);
|
|
||||||
setBrands(res?.data?.brands);
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
const [currencyDetails, setCurrencyDetails] = useState(null);
|
|
||||||
|
|
||||||
const getCurrency = async () => {
|
|
||||||
try {
|
|
||||||
const response = await axios.get("/api/currency/getall", {
|
|
||||||
// headers: {
|
|
||||||
// Authorization: `Bearer ${token}`,
|
|
||||||
// },
|
|
||||||
});
|
|
||||||
|
|
||||||
if (response.status === 200) {
|
|
||||||
setCurrencyDetails(response?.data?.currency[0]);
|
|
||||||
}
|
|
||||||
} catch (error) {
|
|
||||||
console.log(error);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
useEffect(() => {
|
|
||||||
getCatagories();
|
|
||||||
getCurrency();
|
|
||||||
getBrands();
|
|
||||||
}, []);
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
getProductsData();
|
|
||||||
}, [itemPerPage, currentPage]);
|
|
||||||
|
|
||||||
const debouncedSearch = useCallback(
|
|
||||||
debounce(() => {
|
|
||||||
setCurrentPage(1);
|
|
||||||
getProductsData();
|
|
||||||
}, 500),
|
|
||||||
[]
|
|
||||||
);
|
|
||||||
|
|
||||||
const handleSearchChange = () => {
|
|
||||||
debouncedSearch();
|
|
||||||
};
|
|
||||||
return (
|
|
||||||
<div className="main-content">
|
|
||||||
<div className="page-content">
|
|
||||||
<div className="container-fluid">
|
|
||||||
<div className="row">
|
|
||||||
<div className="col-12">
|
|
||||||
<div
|
|
||||||
className="
|
|
||||||
page-title-box
|
|
||||||
d-flex
|
|
||||||
align-items-center
|
|
||||||
justify-content-between
|
|
||||||
"
|
|
||||||
>
|
|
||||||
<div style={{ flex: 1 }}>
|
|
||||||
{[
|
|
||||||
{ label: "Id", value: user?.uniqueId },
|
|
||||||
{ label: "SBU", value: user?.SBU },
|
|
||||||
{ label: "Name", value: user?.name },
|
|
||||||
].map((item, index) => (
|
|
||||||
<Typography
|
|
||||||
key={index}
|
|
||||||
style={{ fontWeight: "bold", fontSize: "1.2rem" }}
|
|
||||||
>
|
|
||||||
{item.label}:
|
|
||||||
<Typography
|
|
||||||
component="span"
|
|
||||||
style={{ fontWeight: "normal", marginLeft: "0.5rem" }}
|
|
||||||
>
|
|
||||||
{item.value}
|
|
||||||
</Typography>
|
|
||||||
</Typography>
|
|
||||||
))}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
{/* Right side: Email, Mobile Number */}
|
|
||||||
<div style={{ flex: 1 }}>
|
|
||||||
{[
|
|
||||||
{ label: "Email", value: user?.email },
|
|
||||||
{ label: "Mobile Number", value: user?.phone },
|
|
||||||
].map((item, index) => (
|
|
||||||
<Typography
|
|
||||||
key={index}
|
|
||||||
style={{ fontWeight: "bold", fontSize: "1.2rem" }}
|
|
||||||
>
|
|
||||||
{item.label}:
|
|
||||||
<Typography
|
|
||||||
component="span"
|
|
||||||
style={{ fontWeight: "normal", marginLeft: "0.5rem" }}
|
|
||||||
>
|
|
||||||
{item.value}
|
|
||||||
</Typography>
|
|
||||||
</Typography>
|
|
||||||
))}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
{/* Back Button on the right */}
|
|
||||||
<div className="page-title-right">
|
|
||||||
<Link to="/principal-distributor">
|
|
||||||
<Button
|
|
||||||
variant="contained"
|
|
||||||
color="secondary"
|
|
||||||
style={{
|
|
||||||
fontWeight: "bold",
|
|
||||||
textTransform: "capitalize",
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
Back
|
|
||||||
</Button>
|
|
||||||
</Link>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
{/* Section Heading: Product Stocks */}
|
|
||||||
<div className="row mt-4">
|
|
||||||
<div className="col-12">
|
|
||||||
<div style={{ fontSize: "22px" }} className="fw-bold">
|
|
||||||
Product Stocks
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div className="row">
|
|
||||||
<div className="col-lg-12">
|
|
||||||
<div className="card">
|
|
||||||
<div className="card-body">
|
|
||||||
<div className="row ml-0 mr-0 mb-10">
|
|
||||||
<div className="col-lg-1">
|
|
||||||
<div className="dataTables_length">
|
|
||||||
<label className="w-100">
|
|
||||||
Show
|
|
||||||
<select
|
|
||||||
onChange={(e) => {
|
|
||||||
setItemPerPage(e.target.value);
|
|
||||||
setCurrentPage(1);
|
|
||||||
}}
|
|
||||||
className="form-control"
|
|
||||||
disabled={loading}
|
|
||||||
>
|
|
||||||
<option value="10">10</option>
|
|
||||||
<option value="25">25</option>
|
|
||||||
<option value="50">50</option>
|
|
||||||
<option value="100">100</option>
|
|
||||||
</select>
|
|
||||||
entries
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div className="col-lg-3">
|
|
||||||
<label>Product Name:</label>
|
|
||||||
<input
|
|
||||||
type="text"
|
|
||||||
placeholder="product name"
|
|
||||||
className="form-control"
|
|
||||||
ref={nameRef}
|
|
||||||
onChange={handleSearchChange}
|
|
||||||
disabled={loading}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
<div className="col-lg-3">
|
|
||||||
<label>Filter by Category:</label>
|
|
||||||
<select
|
|
||||||
className="form-control"
|
|
||||||
ref={categoryRef}
|
|
||||||
onChange={handleSearchChange}
|
|
||||||
disabled={loading}
|
|
||||||
>
|
|
||||||
<option value="">All</option>
|
|
||||||
{categories?.map((e, i) => (
|
|
||||||
<option key={i} value={e._id}>
|
|
||||||
{e?.categoryName}
|
|
||||||
</option>
|
|
||||||
))}
|
|
||||||
</select>
|
|
||||||
</div>
|
|
||||||
<div className="col-lg-3">
|
|
||||||
<label>Filter by Brand:</label>
|
|
||||||
<select
|
|
||||||
className="form-control"
|
|
||||||
ref={brandRef}
|
|
||||||
onChange={handleSearchChange}
|
|
||||||
disabled={loading}
|
|
||||||
>
|
|
||||||
<option value="">All</option>
|
|
||||||
{brands?.map((e, i) => (
|
|
||||||
<option key={i} value={e._id}>
|
|
||||||
{e?.brandName}
|
|
||||||
</option>
|
|
||||||
))}
|
|
||||||
</select>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div className="table-responsive table-shoot mt-3">
|
|
||||||
<table
|
|
||||||
className="table table-centered table-nowrap"
|
|
||||||
style={{ border: "1px solid" }}
|
|
||||||
>
|
|
||||||
<thead
|
|
||||||
className="thead-light"
|
|
||||||
style={{ background: "#ecdddd" }}
|
|
||||||
>
|
|
||||||
<tr>
|
|
||||||
<th className="text-start">Image</th>
|
|
||||||
<th className="text-start">SKU</th>
|
|
||||||
<th className="text-start">Product</th>
|
|
||||||
<th className="text-start">Category Name</th>
|
|
||||||
<th className="text-start">Brand Name</th>
|
|
||||||
<th className="text-start">Price</th>
|
|
||||||
<th className="text-start">Added On</th>
|
|
||||||
<th className="text-start">Stock</th>
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
|
|
||||||
<tbody>
|
|
||||||
{loading ? (
|
|
||||||
<tr>
|
|
||||||
<td className="text-center" colSpan="6">
|
|
||||||
Loading...
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
) : productsData?.length > 0 ? (
|
|
||||||
productsData?.map((product, i) => {
|
|
||||||
return (
|
|
||||||
<tr key={i}>
|
|
||||||
<th>
|
|
||||||
{product?.image &&
|
|
||||||
product?.image?.length !== 0 ? (
|
|
||||||
<>
|
|
||||||
<img
|
|
||||||
src={product?.image[0]?.url}
|
|
||||||
width="50"
|
|
||||||
alt="preview"
|
|
||||||
/>
|
|
||||||
</>
|
|
||||||
) : (
|
|
||||||
<div
|
|
||||||
className=""
|
|
||||||
style={{ fontSize: "13px" }}
|
|
||||||
>
|
|
||||||
<p className="m-0">No</p>
|
|
||||||
<p className="m-0">image</p>
|
|
||||||
<p className="m-0">uploaded!</p>
|
|
||||||
</div>
|
|
||||||
)}
|
|
||||||
</th>
|
|
||||||
<td className="text-start">{product.SKU}</td>
|
|
||||||
<td className="text-start">{product.name}</td>
|
|
||||||
<td className="text-start">
|
|
||||||
{product.category !== ""
|
|
||||||
? product.category
|
|
||||||
: "Category Not selected "}
|
|
||||||
</td>
|
|
||||||
<td className="text-start">
|
|
||||||
{product.brand !== ""
|
|
||||||
? product.brand
|
|
||||||
: "Brand Not selected "}
|
|
||||||
</td>
|
|
||||||
<th className="text-start">
|
|
||||||
{currencyDetails?.CurrencySymbol}
|
|
||||||
{product?.price}
|
|
||||||
</th>
|
|
||||||
<td className="text-start">
|
|
||||||
{new Date(product.createdAt).toLocaleString(
|
|
||||||
"en-IN",
|
|
||||||
{
|
|
||||||
weekday: "short",
|
|
||||||
month: "short",
|
|
||||||
day: "numeric",
|
|
||||||
year: "numeric",
|
|
||||||
hour: "numeric",
|
|
||||||
minute: "numeric",
|
|
||||||
hour12: true,
|
|
||||||
}
|
|
||||||
)}
|
|
||||||
</td>
|
|
||||||
<td className="text-start">{product.stock}</td>
|
|
||||||
</tr>
|
|
||||||
);
|
|
||||||
})
|
|
||||||
) : (
|
|
||||||
!loading &&
|
|
||||||
productsData?.length === 0 && (
|
|
||||||
<tr className="text-center">
|
|
||||||
<td colSpan="6">
|
|
||||||
<h5>No Product Available...</h5>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
)
|
|
||||||
)}
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div className="row mt-20">
|
|
||||||
<div className="col-sm-12 col-md-6 mb-20">
|
|
||||||
<div
|
|
||||||
className="dataTables_info"
|
|
||||||
id="datatable_info"
|
|
||||||
role="status"
|
|
||||||
aria-live="polite"
|
|
||||||
>
|
|
||||||
Showing {currentPage * itemPerPage - itemPerPage + 1} to{" "}
|
|
||||||
{Math.min(currentPage * itemPerPage, totalData)} of{" "}
|
|
||||||
{totalData} entries
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div className="col-sm-12 col-md-6">
|
|
||||||
<div className="d-flex">
|
|
||||||
<ul className="pagination ms-auto">
|
|
||||||
<li
|
|
||||||
className={
|
|
||||||
currentPage === 1
|
|
||||||
? "paginate_button page-item previous disabled"
|
|
||||||
: "paginate_button page-item previous"
|
|
||||||
}
|
|
||||||
>
|
|
||||||
<span
|
|
||||||
className="page-link"
|
|
||||||
style={{ cursor: "pointer" }}
|
|
||||||
onClick={() => setCurrentPage((prev) => prev - 1)}
|
|
||||||
disabled={loading}
|
|
||||||
>
|
|
||||||
Previous
|
|
||||||
</span>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
{!(currentPage - 1 < 1) && (
|
|
||||||
<li className="paginate_button page-item">
|
|
||||||
<span
|
|
||||||
className="page-link"
|
|
||||||
style={{ cursor: "pointer" }}
|
|
||||||
onClick={(e) =>
|
|
||||||
setCurrentPage((prev) => prev - 1)
|
|
||||||
}
|
|
||||||
disabled={loading}
|
|
||||||
>
|
|
||||||
{currentPage - 1}
|
|
||||||
</span>
|
|
||||||
</li>
|
|
||||||
)}
|
|
||||||
|
|
||||||
<li className="paginate_button page-item active">
|
|
||||||
<span
|
|
||||||
className="page-link"
|
|
||||||
style={{ cursor: "pointer" }}
|
|
||||||
>
|
|
||||||
{currentPage}
|
|
||||||
</span>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
{!(
|
|
||||||
(currentPage + 1) * itemPerPage - itemPerPage >
|
|
||||||
totalData - 1
|
|
||||||
) && (
|
|
||||||
<li className="paginate_button page-item ">
|
|
||||||
<span
|
|
||||||
className="page-link"
|
|
||||||
style={{ cursor: "pointer" }}
|
|
||||||
onClick={() => {
|
|
||||||
setCurrentPage((prev) => prev + 1);
|
|
||||||
}}
|
|
||||||
disabled={loading}
|
|
||||||
>
|
|
||||||
{currentPage + 1}
|
|
||||||
</span>
|
|
||||||
</li>
|
|
||||||
)}
|
|
||||||
|
|
||||||
<li
|
|
||||||
className={
|
|
||||||
!(
|
|
||||||
(currentPage + 1) * itemPerPage - itemPerPage >
|
|
||||||
totalData - 1
|
|
||||||
)
|
|
||||||
? "paginate_button page-item next"
|
|
||||||
: "paginate_button page-item next disabled"
|
|
||||||
}
|
|
||||||
>
|
|
||||||
<span
|
|
||||||
className="page-link"
|
|
||||||
style={{ cursor: "pointer" }}
|
|
||||||
onClick={() => setCurrentPage((prev) => prev + 1)}
|
|
||||||
disabled={loading}
|
|
||||||
>
|
|
||||||
Next
|
|
||||||
</span>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
export default Stocks;
|
|
@ -87,6 +87,9 @@ useEffect(() => {
|
|||||||
</Typography>
|
</Typography>
|
||||||
<Grid container spacing={2}>
|
<Grid container spacing={2}>
|
||||||
<Grid item xs={6}>
|
<Grid item xs={6}>
|
||||||
|
<Typography>
|
||||||
|
<strong>Unique Id:</strong> {retailerDetails.uniqueId}
|
||||||
|
</Typography>
|
||||||
<Typography>
|
<Typography>
|
||||||
<strong>Trade Name:</strong> {retailerDetails.kyc.trade_name}
|
<strong>Trade Name:</strong> {retailerDetails.kyc.trade_name}
|
||||||
</Typography>
|
</Typography>
|
||||||
@ -94,13 +97,19 @@ useEffect(() => {
|
|||||||
<strong>Name:</strong> {retailerDetails.name}
|
<strong>Name:</strong> {retailerDetails.name}
|
||||||
</Typography>
|
</Typography>
|
||||||
<Typography>
|
<Typography>
|
||||||
|
<strong>Mobile Number:</strong> {retailerDetails.mobile_number}
|
||||||
|
</Typography>
|
||||||
|
<Typography>
|
||||||
|
<strong>Email:</strong> {retailerDetails.email}
|
||||||
|
</Typography>
|
||||||
|
</Grid>
|
||||||
|
<Grid item xs={6}>
|
||||||
|
<Typography>
|
||||||
<strong>Address:</strong> {retailerDetails.kyc.address}
|
<strong>Address:</strong> {retailerDetails.kyc.address}
|
||||||
</Typography>
|
</Typography>
|
||||||
<Typography>
|
<Typography>
|
||||||
<strong>Town/City:</strong> {retailerDetails.kyc.city}
|
<strong>Town/City:</strong> {retailerDetails.kyc.city}
|
||||||
</Typography>
|
</Typography>
|
||||||
</Grid>
|
|
||||||
<Grid item xs={6}>
|
|
||||||
<Typography>
|
<Typography>
|
||||||
<strong>District:</strong> {retailerDetails.kyc.district}
|
<strong>District:</strong> {retailerDetails.kyc.district}
|
||||||
</Typography>
|
</Typography>
|
||||||
@ -110,9 +119,6 @@ useEffect(() => {
|
|||||||
<Typography>
|
<Typography>
|
||||||
<strong>Pincode:</strong> {retailerDetails.kyc.pincode}
|
<strong>Pincode:</strong> {retailerDetails.kyc.pincode}
|
||||||
</Typography>
|
</Typography>
|
||||||
<Typography>
|
|
||||||
<strong>Mobile Number:</strong> {retailerDetails.mobile_number}
|
|
||||||
</Typography>
|
|
||||||
<Typography>
|
<Typography>
|
||||||
<strong>Mapped Principal Distributor:</strong>{" "}
|
<strong>Mapped Principal Distributor:</strong>{" "}
|
||||||
{retailerDetails?.principal_distributer?.name || "Not Mapped"}
|
{retailerDetails?.principal_distributer?.name || "Not Mapped"}
|
||||||
|
Loading…
Reference in New Issue
Block a user