Feature/wms 56 (#59)
* create warehouse * edit warehouse changes * Update: linted and formatted * add warehouse button * user access changes * basic table component changes * Updated: eslint errors * basic table component changes * update: linted * add New Product form api integrate * add Inventory changes * policies change * add validation for widget * Fixed: Image upload component * Updated: Custom styling inputs Co-authored-by: [Diksha] <[diksha39511@gmail.com]> Co-authored-by: Llewellyn Dsouza <lledsouza2209@gmail.com>
This commit is contained in:
@@ -7,8 +7,13 @@ import FleetIcon from 'assets/images/FleetIcon';
|
||||
import RawMaterialIcon from 'assets/images/RawMaterialIcon';
|
||||
import { Grid } from '@mui/material';
|
||||
import Tile from 'components/TileComponent';
|
||||
import MDButton from 'components/Button';
|
||||
import { useNavigate } from 'react-router-dom';
|
||||
|
||||
function SetupInventory()
|
||||
{
|
||||
const navigate = useNavigate();
|
||||
|
||||
function SetupInventory() {
|
||||
const tiles = [
|
||||
{
|
||||
name: 'Raw Material',
|
||||
@@ -38,7 +43,11 @@ function SetupInventory() {
|
||||
];
|
||||
return (
|
||||
<DashboardLayout>
|
||||
<DashboardNavbar />
|
||||
<DashboardNavbar>
|
||||
<MDButton sx={{ ml: 3 }} color="primary" onClick={() => navigate('/setup/inventory/inventory-new')}>
|
||||
+ Add new
|
||||
</MDButton>
|
||||
</DashboardNavbar>
|
||||
<MDBox px={2} py={3}>
|
||||
<Grid container spacing={2}>
|
||||
{tiles &&
|
||||
|
||||
Reference in New Issue
Block a user