opening inventory in PD

This commit is contained in:
Sibunnayak 2024-10-24 11:06:19 +05:30
parent a0e12e91ee
commit c478471124
5 changed files with 559 additions and 14 deletions

View File

@ -104,13 +104,13 @@ const _nav = [
to: "/retail-distributor", to: "/retail-distributor",
group: "RetailDistributor", group: "RetailDistributor",
}, },
{ // {
component: CNavItem, // component: CNavItem,
name: "Opening Inventory", // name: "Opening Inventory",
icon: <CIcon icon={cilSwapHorizontal} customClassName="nav-icon" />, // icon: <CIcon icon={cilSwapHorizontal} customClassName="nav-icon" />,
to: "/opening-inventory", // to: "/opening-inventory",
group: "OpeningInventory", // group: "OpeningInventory",
}, // },
{ {
component: CNavItem, component: CNavItem,
name: "Attendance", name: "Attendance",

View File

@ -166,6 +166,7 @@ import Sales from "./views/Sales/Sales";
import SingleSales from "./views/Sales/SingleSale"; import SingleSales from "./views/Sales/SingleSale";
import MobileApp from "./views/configuration/MobileApp"; import MobileApp from "./views/configuration/MobileApp";
import PDOpeningInventory from "./views/OpeningInventory/PDOpeningInventory"; import PDOpeningInventory from "./views/OpeningInventory/PDOpeningInventory";
import DistributorOpeningInventory from "./views/PrincipalDistributors/OpeningInventory";
const routes = [ const routes = [
//dashboard //dashboard
@ -413,11 +414,17 @@ const routes = [
navName: "Distributor", navName: "Distributor",
}, },
{ {
path: "/:distributortype/:stocks/:id", path: "/:distributortype/stocks/:id",
name: " Distributor Stocks", name: " Distributor Stocks",
element: DistributorStocks, element: DistributorStocks,
navName: "Distributor", navName: "Distributor",
}, },
{
path: "/:distributortype/opening-inventory/:id",
name: " Distributor Opening Inventory",
element: DistributorOpeningInventory,
navName: "Distributor",
},
//----------------------- End Product Management Routes------------------------------------------------ //----------------------- End Product Management Routes------------------------------------------------
//Departure //Departure

View File

@ -0,0 +1,525 @@
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, Paper } from "@mui/material";
const DistributorOpeningInventory = () => {
const token = isAutheticated();
const navigate = useNavigate();
const { id, distributortype } = useParams();
const [loading, setLoading] = useState(false);
const [productsData, setProductsData] = useState([]);
const [categories, setCategories] = useState([]);
const [brands, setBrands] = useState([]);
const [user, setUser] = useState(null);
const [updatedStocks, setUpdatedStocks] = useState({});
const [currencyDetails, setCurrencyDetails] = 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(
distributortype === "principaldistributor"
? `/api/v1/admin/user/${id}`
: `/api/getRD/${id}`,
{
headers: {
Authorization: `Bearer ${token}`,
},
}
);
setUser(
distributortype === "principaldistributor"
? response.data.user
: response.data
);
} catch (error) {
swal({
title: "Warning",
text: error.message,
icon: "error",
button: "Close",
dangerMode: true,
});
}
}, [id, token]);
// Fetch Products Data
const getProductsData = async () => {
setLoading(true);
try {
const response = await axios.get(
distributortype === "principaldistributor"
? `/api/pd/stock/${id}`
: `/api/rd/stock/${id}`,
{
headers: { Authorization: `Bearer ${token}` },
params: {
page: currentPage,
show: itemPerPage,
name: nameRef.current?.value || "",
category: categoryRef.current?.value || "",
brand: brandRef.current?.value || "",
},
}
);
setProductsData(response.data?.products || []);
setTotalData(response.data?.totalProducts || 0);
} catch (err) {
swal({
title: "Error",
text: "Something went wrong!",
icon: "error",
button: "Retry",
dangerMode: true,
});
} finally {
setLoading(false);
}
};
// Call getUserDetails on component mount
useEffect(() => {
getUserDetails();
}, [getUserDetails]);
useEffect(() => {
getProductsData();
}, [currentPage, itemPerPage]);
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 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();
}, []);
const handleSearchChange = useCallback(
debounce(() => {
setCurrentPage(1);
getProductsData();
}, 500),
[]
);
const handleStockChange = (sku, newStock) => {
setUpdatedStocks((prevStocks) => ({
...prevStocks,
[sku]: newStock, // Update stock for specific product (identified by SKU)
}));
};
const handleSubmitStocks = async () => {
try {
const updatedProducts = productsData.map((product) => ({
...product,
stock: updatedStocks[product.SKU] || product.stock,
}));
await axios.post(
distributortype === "principaldistributor"
? `/api/pd/updateStocks/${id}`
: `/api/rd/updateStocks/${id}`,
{ updatedProducts },
{ headers: { Authorization: `Bearer ${token}` } }
);
swal("Success", "Stocks updated successfully!", "success");
} catch (error) {
swal("Error", "Failed to update stocks!", "error");
}
};
const handleCancel = () => {
navigate(
distributortype === "principaldistributor"
? "/principal-distributor"
: "/retail-distributor"
);
};
return (
<div className="main-content">
<div className="page-content">
<div className="container-fluid">
<div className="row">
<div className="col-12">
<Paper sx={{ p: 2 }}>
<div
className="
page-title-box
d-flex
align-items-center
justify-content-between
"
>
<div style={{ flex: 1 }}>
<Typography>
<strong>Name:</strong> {user?.name}
</Typography>
<Typography>
<strong>Mobile Number:</strong>{" "}
{distributortype === "principaldistributor"
? user?.phone
: user?.mobile_number}
</Typography>
<Typography>
<strong>Email:</strong> {user?.email}
</Typography>
</div>
{/* Back Button on the right */}
<div className="page-title-right">
<Button
variant="contained"
color="secondary"
style={{
fontWeight: "bold",
textTransform: "capitalize",
}}
onClick={handleCancel}
>
Back
</Button>
</div>
</div>
</Paper>
{/* Section Heading: Product Stocks */}
<div className="row mt-2 mb-1">
<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">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 style={{ width: "15%" }}>Opening Inventory</th>
</tr>
</thead>
<tbody>
{loading ? (
<tr>
<td className="text-center" colSpan="7">
Loading...
</td>
</tr>
) : productsData?.length > 0 ? (
productsData?.map((product, i) => {
return (
<tr key={i}>
<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">
<input
type="text"
value={
updatedStocks[product.SKU] ||
product.openingInventory
}
onChange={(e) => {
// Check if the input is a valid number or empty
const value = e.target.value;
if (
value === "" ||
/^[0-9]*$/.test(value)
) {
// Allow only numbers or empty
handleStockChange(product.SKU, value);
}
}}
className="form-control"
/>
</td>
</tr>
);
})
) : (
!loading &&
productsData?.length === 0 && (
<tr className="text-center">
<td colSpan="7">
<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 DistributorOpeningInventory;

View File

@ -220,14 +220,14 @@ const principalDistributor = () => {
> >
<tr> <tr>
<th style={{ width: "10%" }}>Unique Id</th> <th style={{ width: "10%" }}>Unique Id</th>
<th style={{ width: "7%" }}>SBU</th> <th style={{ width: "8%" }}>SBU</th>
<th style={{ width: "15%" }}>Name</th> <th style={{ width: "15%" }}>Name</th>
<th style={{ width: "17%" }}>Email</th> <th style={{ width: "13%" }}>Email</th>
<th style={{ width: "12%" }}>Date Registered</th> <th style={{ width: "12%" }}>Date Registered</th>
<th style={{ width: "12%" }}>Last Purchase</th> <th style={{ width: "12%" }}>Last Purchase</th>
<th style={{ width: "7%" }}>Orders</th> <th style={{ width: "7%" }}>Orders</th>
<th style={{ width: "8%" }}>Mapping</th> <th style={{ width: "8%" }}>Mapping</th>
<th className="text-center" style={{ width: "12%" }}> <th className="text-center" style={{ width: "15%" }}>
Action Action
</th> </th>
</tr> </tr>
@ -411,6 +411,18 @@ const principalDistributor = () => {
Stock Stock
</button> </button>
</Link> </Link>
<Link
to={`/principaldistributor/opening-inventory/${user?._id}`}
>
<button
type="button"
className=" btn btn-info btn-sm waves-effect waves-light btn-table ml-1
md-mt-1
md-ml-0"
>
OI
</button>
</Link>
</td> </td>
</tr> </tr>
)) ))

View File

@ -160,7 +160,8 @@ const DistributorStocks = () => {
const handleCancel = () => { const handleCancel = () => {
navigate( navigate(
distributortype === "principaldistributor" distributortype === "principaldistributor"
? stocks==="stocks"?"/principal-distributor":"/opening-inventory" // ? stocks==="stocks"?"/principal-distributor":"/opening-inventory"
? "/principal-distributor"
: "/retail-distributor" : "/retail-distributor"
); );
}; };
@ -324,7 +325,7 @@ const DistributorStocks = () => {
productsData?.map((product, i) => { productsData?.map((product, i) => {
return ( return (
<tr key={i}> <tr key={i}>
<th> <td>
{product?.image && {product?.image &&
product?.image?.length !== 0 ? ( product?.image?.length !== 0 ? (
<> <>
@ -344,7 +345,7 @@ const DistributorStocks = () => {
<p className="m-0">uploaded!</p> <p className="m-0">uploaded!</p>
</div> </div>
)} )}
</th> </td>
<td className="text-start">{product.SKU}</td> <td className="text-start">{product.SKU}</td>
<td className="text-start">{product.name}</td> <td className="text-start">{product.name}</td>
<td className="text-start"> <td className="text-start">