Skip to content
This repository was archived by the owner on Sep 8, 2025. It is now read-only.

Commit ad73d1c

Browse files
committed
add
1 parent 526dffe commit ad73d1c

File tree

9 files changed

+441
-357
lines changed

9 files changed

+441
-357
lines changed

client/package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,10 @@
3838
"core-js": "^3.37.1",
3939
"dompurify": "^3.1.7",
4040
"esbuild": "^0.25.0",
41+
"express": "^5.1.0",
4142
"formik": "^2.4.6",
4243
"js-cookie": "^3.0.5",
44+
"multer": "^1.4.5-lts.2",
4345
"prop-types": "^15.8.1",
4446
"react": "^18.3.1",
4547
"react-data-table-component": "^7.6.2",
@@ -67,6 +69,6 @@
6769
"postcss": "^8.4.38",
6870
"prettier": "3.3.2",
6971
"sass": "^1.77.5",
70-
"vite": "^6.2.0"
72+
"vite": "^6.3.4"
7173
}
7274
}

client/src/_nav.js

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ import {
1818
faBoxes,
1919
faCog,
2020
faUserCog,
21+
faUser,
22+
faAddressBook,
2123
} from '@fortawesome/free-solid-svg-icons'
2224

2325
const _nav = [
@@ -114,6 +116,13 @@ const _nav = [
114116
role_exclude: ['vendor', 'user', 'staff'],
115117
icon: <FontAwesomeIcon icon={faChartBar} className="nav-icon" />,
116118
},
119+
{
120+
component: CNavItem,
121+
name: 'Creat Vendor Profile',
122+
to: '/vendor/CreateVendorProfile',
123+
role_exclude: ['vendor', 'user'],
124+
icon: <FontAwesomeIcon icon={faUser} className="nav-icon" />,
125+
},
117126
{
118127
component: CNavTitle,
119128
name: 'VENDOR MANAGEMENT',
@@ -154,6 +163,13 @@ const _nav = [
154163
role_exclude: ['user', 'staff'],
155164
icon: <FontAwesomeIcon icon={faComments} className="nav-icon" />,
156165
},
166+
{
167+
component: CNavItem,
168+
name: 'Vendor List',
169+
to: '/Procurement/VendorList',
170+
role_exclude: ['vendor'],
171+
icon: <FontAwesomeIcon icon={faAddressBook} className="nav-icon" />,
172+
},
157173
// {
158174
// component: CNavTitle,
159175
// name: 'LOGISTICS',

0 commit comments

Comments
 (0)