Adding Product Category in Master.
This commit is contained in:
parent
76abfb5fd3
commit
69a854174f
@ -0,0 +1,97 @@
|
||||
import React, { useEffect } from "react";
|
||||
import { useForm } from "react-hook-form";
|
||||
import { z } from "zod";
|
||||
import { zodResolver } from "@hookform/resolvers/zod";
|
||||
import Label from "../../common/Label";
|
||||
import { useCreateProductCategory, useUpdateProductCategory } from "../../../hooks/masterHook/useMaster";
|
||||
|
||||
const ProductCategorySchema = z.object({
|
||||
name: z.string().min(1, { message: "Name is required" }),
|
||||
description: z.string().min(1, { message: "Description is required" }),
|
||||
});
|
||||
|
||||
const ProductCategory = ({ data = null, onClose }) => {
|
||||
const {
|
||||
register,
|
||||
handleSubmit,
|
||||
reset,
|
||||
formState: { errors },
|
||||
} = useForm({
|
||||
resolver: zodResolver(ProductCategorySchema),
|
||||
defaultValues: { name: "", description: "" },
|
||||
});
|
||||
|
||||
const { mutate: CreateProductCategory, isPending } = useCreateProductCategory(() =>
|
||||
onClose?.()
|
||||
);
|
||||
const { mutate: UpdateProductCategory, isPending: Updating } = useUpdateProductCategory(() => onClose?.())
|
||||
|
||||
const onSubmit = (payload) => {
|
||||
if (data) {
|
||||
UpdateProductCategory({ id: data.id, payload: { ...payload, id: data.id } })
|
||||
} else (
|
||||
CreateProductCategory(payload)
|
||||
)
|
||||
|
||||
};
|
||||
|
||||
useEffect(() => {
|
||||
if (data) {
|
||||
reset({
|
||||
name: data.name ?? "",
|
||||
description: data.description ?? ""
|
||||
})
|
||||
}
|
||||
}, [data])
|
||||
|
||||
|
||||
return (
|
||||
<form className="row g-2" onSubmit={handleSubmit(onSubmit)}>
|
||||
<div className="col-12 col-md-12 text-start">
|
||||
<Label className="form-label" required>Name</Label>
|
||||
<input
|
||||
type="text"
|
||||
{...register("name")}
|
||||
className={`form-control ${errors.name ? "is-invalids" : ""}`}
|
||||
/>
|
||||
{errors.name && <p className="danger-text">{errors.name.message}</p>}
|
||||
</div>
|
||||
<div className="col-12 col-md-12 text-start">
|
||||
<Label className="form-label" htmlFor="description" required>
|
||||
Description
|
||||
</Label>
|
||||
<textarea
|
||||
rows="3"
|
||||
{...register("description")}
|
||||
className={`form-control ${errors.description ? "is-invalids" : ""}`}
|
||||
></textarea>
|
||||
|
||||
{errors.description && (
|
||||
<p className="danger-text">{errors.description.message}</p>
|
||||
)}
|
||||
</div>
|
||||
|
||||
<div className="col-12 text-end">
|
||||
<button
|
||||
type="reset"
|
||||
className="btn btn-sm btn-label-secondary me-3"
|
||||
data-bs-dismiss="modal"
|
||||
aria-label="Close"
|
||||
disabled={isPending || Updating}
|
||||
>
|
||||
Cancel
|
||||
</button>
|
||||
<button
|
||||
type="submit"
|
||||
className="btn btn-sm btn-primary"
|
||||
disabled={isPending || Updating}
|
||||
>
|
||||
{isPending || Updating ? "Please Wait..." : Updating ? "Update" : "Submit"}
|
||||
</button>
|
||||
|
||||
</div>
|
||||
</form>
|
||||
);
|
||||
};
|
||||
|
||||
export default ProductCategory;
|
||||
@ -19,6 +19,7 @@ import ServiceGroups from "./Services/ServicesGroups";
|
||||
import ManagePaymentHead from "./paymentAdjustmentHead/ManagePaymentHead";
|
||||
import RequisitionStatus from "./InventoryManagement/RequisitionStatus";
|
||||
import PurchaseOrderStatus from "./InventoryManagement/PurchaseOrderStatus";
|
||||
import ProductCategory from "./InventoryManagement/ProductCategory";
|
||||
|
||||
const MasterModal = ({ modaldata, closeModal }) => {
|
||||
if (!modaldata?.modalType || modaldata.modalType === "delete") {
|
||||
@ -74,6 +75,10 @@ const MasterModal = ({ modaldata, closeModal }) => {
|
||||
"Edit-Purchase Order Status": (
|
||||
<PurchaseOrderStatus data={item} onClose={closeModal} />
|
||||
),
|
||||
"Product Category": <ProductCategory onClose={closeModal} />,
|
||||
"Edit-Product Category": (
|
||||
<ProductCategory data={item} onClose={closeModal} />
|
||||
),
|
||||
};
|
||||
|
||||
return (
|
||||
|
||||
@ -309,6 +309,8 @@ const fetchMasterData = async (masterType,isActiveMaster) => {
|
||||
return (await MasterRespository.getRequisitionStatus(isActiveMaster)).data;
|
||||
case "Purchase Order Status":
|
||||
return (await MasterRespository.getPurchaseOrderStatus(isActiveMaster)).data;
|
||||
case "Product Category":
|
||||
return (await MasterRespository.getProductCategory(isActiveMaster)).data;
|
||||
case "Status":
|
||||
return [
|
||||
{
|
||||
@ -1090,6 +1092,49 @@ export const useUpdateRequisitionStatus = (onSuccessCallback) => {
|
||||
});
|
||||
};
|
||||
|
||||
// ============================== Product Category =============================
|
||||
|
||||
export const useCreateProductCategory = (onSuccessCallback) => {
|
||||
const queryClient = useQueryClient();
|
||||
|
||||
return useMutation({
|
||||
mutationFn: async (payload) => {
|
||||
const resp = await MasterRespository.createProductCategory(payload);
|
||||
return resp.data;
|
||||
},
|
||||
onSuccess: (data) => {
|
||||
queryClient.invalidateQueries({
|
||||
queryKey: ["masterData", "Product Category"],
|
||||
});
|
||||
showToast("Product Category successfully", "success");
|
||||
if (onSuccessCallback) onSuccessCallback(data);
|
||||
},
|
||||
onError: (error) => {
|
||||
showToast(error.message || "Something went wrong", "error");
|
||||
},
|
||||
});
|
||||
};
|
||||
export const useUpdateProductCategory = (onSuccessCallback) => {
|
||||
const queryClient = useQueryClient();
|
||||
|
||||
return useMutation({
|
||||
mutationFn: async ({ id, payload }) => {
|
||||
const resp = await MasterRespository.updateProductCategory(id, payload);
|
||||
return resp.data;
|
||||
},
|
||||
onSuccess: (data) => {
|
||||
queryClient.invalidateQueries({
|
||||
queryKey: ["masterData", "Product Category"],
|
||||
});
|
||||
showToast("Product Category Updated successfully", "success");
|
||||
if (onSuccessCallback) onSuccessCallback(data);
|
||||
},
|
||||
onError: (error) => {
|
||||
showToast(error.message || "Something went wrong", "error");
|
||||
},
|
||||
});
|
||||
};
|
||||
|
||||
// ============================== Purchase Order Status =============================
|
||||
|
||||
export const useCreatePurhaseOrderStatus = (onSuccessCallback) => {
|
||||
|
||||
@ -199,7 +199,7 @@ const MasterPage = () => {
|
||||
</div>
|
||||
|
||||
{(selectedMaster === "Purchase Order Status" ||
|
||||
selectedMaster === "Requisition Status") && (
|
||||
selectedMaster === "Requisition Status" || selectedMaster === "Product Category") && (
|
||||
<div className="form-check form-switch d-flex align-items-center">
|
||||
<input
|
||||
className="form-check-input"
|
||||
|
||||
@ -64,6 +64,8 @@ export const MasterRespository = {
|
||||
api.delete(`/api/master/requisition-status/delete/${id}?isActive=${isActive}`),
|
||||
"Purchase Order Status": (id, isActive = false) =>
|
||||
api.delete(`/api/master/purchase-order-status/delete/${id}?isActive=${isActive}`),
|
||||
"Product Category": (id, isActive = false) =>
|
||||
api.delete(`/api/master/product-category/delete/${id}?isActive=${isActive}`),
|
||||
|
||||
|
||||
getWorkCategory: () => api.get(`/api/master/work-categories`),
|
||||
@ -152,6 +154,10 @@ export const MasterRespository = {
|
||||
createPurchaseOrderStatus: (data) => api.post(`/api/master/purchase-order-status/create`, data),
|
||||
updatePurchaseOrderStatus: (id, data) => api.put(`/api/master/purchase-order-status/edit/${id}`, data),
|
||||
|
||||
getProductCategory: (isActive = true) =>
|
||||
api.get(`/api/master/product-category/list?isActive=${isActive}`),
|
||||
createProductCategory: (data) => api.post(`/api/master/product-category/create`, data),
|
||||
updateProductCategory: (id, data) => api.put(`/api/master/product-category/edit/${id}`, data),
|
||||
|
||||
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user