Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
CmsPetrolPay
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
11
Issues
11
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Giang Tran
CmsPetrolPay
Commits
4c108e10
Commit
4c108e10
authored
Feb 22, 2024
by
tdgiang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update code
parent
f012418b
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
326 additions
and
269 deletions
+326
-269
Sidenav.jsx
src/app/components/Sidenav/Sidenav.jsx
+3
-3
navigations.js
src/app/navigations.js
+21
-23
Table.js
src/app/views/Company/Employee/Table.js
+38
-30
Table.js
src/app/views/Company/Function/Table.js
+38
-30
Table.js
src/app/views/Company/GroupRole/Table.js
+38
-31
Table.js
src/app/views/Company/Role/Table.js
+35
-30
Table.js
src/app/views/GasStation/Table.js
+38
-30
Table.js
src/app/views/Merchant/Table.js
+39
-30
Table.js
src/app/views/product/product/Table.js
+38
-31
Table.js
src/app/views/product/type/Table.js
+38
-31
No files found.
src/app/components/Sidenav/Sidenav.jsx
View file @
4c108e10
...
...
@@ -6,7 +6,7 @@ import clsx from 'clsx'
import
useSettings
from
'app/hooks/useSettings'
import
{
useSelector
}
from
'react-redux'
import
useAuth
from
'app/hooks/useAuth'
import
{
navigationsAdmin
}
from
'app/navigations'
import
{
navigationsAdmin
,
navigations
}
from
'app/navigations'
const
useStyles
=
makeStyles
(({
palette
,
...
theme
})
=>
({
scrollable
:
{
...
...
@@ -32,7 +32,7 @@ const Sidenav = ({ children }) => {
const
classes
=
useStyles
()
const
{
settings
,
updateSettings
}
=
useSettings
()
const
[
navigationUser
,
setNavigationUser
]
=
useState
([])
let
navigation
=
useSelector
(({
navigations
})
=>
navigations
)
//
let navigation = useSelector(({ navigations }) => navigations)
const
{
user
}
=
useAuth
()
useEffect
(()
=>
{
getNavigationUser
()
...
...
@@ -47,7 +47,7 @@ const Sidenav = ({ children }) => {
console
.
log
(
"user"
,
user
.
user_permissions
)
if
(
user
.
user_permissions
?.
length
>
0
)
{
const
newList
=
navigation
.
map
((
item
)
=>
{
const
newList
=
navigation
s
.
map
((
item
)
=>
{
//level 2
if
(
item
.
children
)
{
let
flag
=
false
;
...
...
src/app/navigations.js
View file @
4c108e10
import
{
authRoles
}
from
'./auth/authRoles'
export
const
navigations
=
[
{
name
:
'Dashboard'
,
...
...
@@ -14,36 +12,36 @@ export const navigations = [
path
:
'/merchant'
,
icon
:
'apartment'
,
id
:
'MERCHANT'
,
hide
:
fals
e
,
hide
:
tru
e
,
},
{
name
:
'Quản lý cây xăng'
,
path
:
'/gas-station'
,
icon
:
'local_gas_station'
,
id
:
'GAS
_
STATION'
,
hide
:
fals
e
,
id
:
'GAS
-
STATION'
,
hide
:
tru
e
,
},
{
name
:
'Quản lý sản phẩm'
,
icon
:
'wb_iridescent'
,
hide
:
fals
e
,
hide
:
tru
e
,
children
:
[
{
name
:
'Sản phẩm'
,
path
:
'/product'
,
iconText
:
'EM'
,
//icon: 'group',
hide
:
fals
e
,
id
:
'
EMPLOYEE
'
,
hide
:
tru
e
,
id
:
'
PRODUCT
'
,
},
{
name
:
'Loại sản phẩm'
,
iconText
:
'FN'
,
path
:
'/product-type'
,
hide
:
fals
e
,
id
:
'
FUNCTION
'
,
hide
:
tru
e
,
id
:
'
PRODUCT-TYPE
'
,
},
],
},
...
...
@@ -51,72 +49,72 @@ export const navigations = [
name
:
'Quản lý giao dịch'
,
path
:
'/transations'
,
icon
:
'receipt_long'
,
id
:
'
DASHBOARD
'
,
hide
:
fals
e
,
id
:
'
TRANSATIONS
'
,
hide
:
tru
e
,
},
{
name
:
'Quản lý thu phí'
,
path
:
'/list-fee'
,
icon
:
'diamond'
,
id
:
'
DASHBOARD
'
,
hide
:
fals
e
,
id
:
'
LIST-FEE
'
,
hide
:
tru
e
,
},
{
name
:
'Quản lý hệ thống'
,
icon
:
'wb_iridescent'
,
hide
:
fals
e
,
hide
:
tru
e
,
children
:
[
{
name
:
'Nhân viên'
,
path
:
'/employee'
,
iconText
:
'EM'
,
//icon: 'group',
hide
:
fals
e
,
hide
:
tru
e
,
id
:
'EMPLOYEE'
,
},
{
name
:
'Chức năng'
,
iconText
:
'FN'
,
path
:
'/function'
,
hide
:
fals
e
,
hide
:
tru
e
,
id
:
'FUNCTION'
,
},
{
name
:
'Hành động'
,
iconText
:
'RO'
,
path
:
'/role'
,
hide
:
fals
e
,
hide
:
tru
e
,
id
:
'ROLE'
,
},
{
name
:
'Nhóm quyền'
,
iconText
:
'GR'
,
path
:
'/group-role'
,
hide
:
fals
e
,
id
:
'GROUP
_
ROLE'
,
hide
:
tru
e
,
id
:
'GROUP
-
ROLE'
,
},
{
name
:
'Log login,logout'
,
iconText
:
'NO'
,
path
:
'/system/log-auth'
,
hide
:
fals
e
,
hide
:
tru
e
,
id
:
'LOG_AUTH'
,
},
{
name
:
'Log Hành động'
,
iconText
:
'SM'
,
path
:
'/system/log-action'
,
hide
:
fals
e
,
hide
:
tru
e
,
id
:
'LOG_ACTION'
,
},
{
name
:
'Log Api'
,
iconText
:
'SM'
,
path
:
'/system/log-api'
,
hide
:
fals
e
,
hide
:
tru
e
,
id
:
'LOG_API'
,
},
],
...
...
src/app/views/Company/Employee/Table.js
View file @
4c108e10
...
...
@@ -116,15 +116,16 @@ function TableList(props) {
{
column
.
label
}
<
/TableCell
>
))}
<
TableCell
style
=
{{
backgroundColor
:
colors
.
headerTable
,
width
:
125
,
}}
>
Tra
̣
ng
tha
́
i
<
/TableCell
>
{
checkRole
(
user
,
'/employee/changeStatus'
)
&&
(
<
TableCell
style
=
{{
backgroundColor
:
colors
.
headerTable
,
width
:
125
,
}}
>
Tra
̣
ng
tha
́
i
<
/TableCell
>
)}
<
TableCell
style
=
{{
...
...
@@ -169,27 +170,34 @@ function TableList(props) {
)
})}
<
TableCell
className
=
{
classes
.
border
}
>
<
Select
variant
=
{
'outlined'
}
labelId
=
"demo-simple-select-placeholder-label-label"
id
=
"demo-simple-select-placeholder-label"
onChange
=
{(
e
)
=>
handeChangeActive
(
row
.
id
,
e
.
target
.
value
)
}
displayEmpty
defaultValue
=
{
row
.
status
}
className
=
{
classes
.
formControl
}
>
<
MenuItem
value
=
{
1
}
>
Ho
ạ
t
độ
ng
<
/MenuItem
>
<
MenuItem
value
=
{
2
}
>
Kho
́
a
<
/MenuItem
>
<
/Select
>
<
/TableCell
>
{
checkRole
(
user
,
'/employee/changeStatus'
)
&&
(
<
TableCell
className
=
{
classes
.
border
}
>
<
Select
variant
=
{
'outlined'
}
labelId
=
"demo-simple-select-placeholder-label-label"
id
=
"demo-simple-select-placeholder-label"
onChange
=
{(
e
)
=>
handeChangeActive
(
row
.
id
,
e
.
target
.
value
)
}
displayEmpty
defaultValue
=
{
row
.
status
}
className
=
{
classes
.
formControl
}
>
<
MenuItem
value
=
{
1
}
>
Ho
ạ
t
độ
ng
<
/MenuItem
>
<
MenuItem
value
=
{
2
}
>
Kho
́
a
<
/MenuItem
>
<
/Select
>
<
/TableCell
>
)}
<
TableCell
>
{
checkRole
(
user
,
'/employee/delete'
)
?
(
<
Tooltip
title
=
"Xoá"
>
...
...
src/app/views/Company/Function/Table.js
View file @
4c108e10
...
...
@@ -123,15 +123,16 @@ function TableList(props) {
{
column
.
label
}
<
/TableCell
>
))}
<
TableCell
style
=
{{
backgroundColor
:
colors
.
headerTable
,
width
:
125
,
}}
>
Tra
̣
ng
tha
́
i
<
/TableCell
>
{
checkRole
(
user
,
'/function/changeStatus'
)
&&
(
<
TableCell
style
=
{{
backgroundColor
:
colors
.
headerTable
,
width
:
125
,
}}
>
Tra
̣
ng
tha
́
i
<
/TableCell
>
)}
<
TableCell
style
=
{{
...
...
@@ -176,27 +177,34 @@ function TableList(props) {
)
})}
<
TableCell
className
=
{
classes
.
border
}
>
<
Select
variant
=
{
'outlined'
}
labelId
=
"demo-simple-select-placeholder-label-label"
id
=
"demo-simple-select-placeholder-label"
onChange
=
{(
e
)
=>
handeChangeActive
(
row
.
id
,
e
.
target
.
value
)
}
displayEmpty
defaultValue
=
{
row
.
status
}
className
=
{
classes
.
formControl
}
>
<
MenuItem
value
=
{
1
}
>
Ho
ạ
t
độ
ng
<
/MenuItem
>
<
MenuItem
value
=
{
2
}
>
Kho
́
a
<
/MenuItem
>
<
/Select
>
<
/TableCell
>
{
checkRole
(
user
,
'/function/changeStatus'
)
&&
(
<
TableCell
className
=
{
classes
.
border
}
>
<
Select
variant
=
{
'outlined'
}
labelId
=
"demo-simple-select-placeholder-label-label"
id
=
"demo-simple-select-placeholder-label"
onChange
=
{(
e
)
=>
handeChangeActive
(
row
.
id
,
e
.
target
.
value
)
}
displayEmpty
defaultValue
=
{
row
.
status
}
className
=
{
classes
.
formControl
}
>
<
MenuItem
value
=
{
1
}
>
Ho
ạ
t
độ
ng
<
/MenuItem
>
<
MenuItem
value
=
{
2
}
>
Kho
́
a
<
/MenuItem
>
<
/Select
>
<
/TableCell
>
)}
<
TableCell
>
{
checkRole
(
user
,
'/function/delete'
)
?
(
<
Tooltip
title
=
"Xoá"
>
...
...
src/app/views/Company/GroupRole/Table.js
View file @
4c108e10
...
...
@@ -117,15 +117,16 @@ function TableList(props) {
<
/TableCell
>
))}
<
TableCell
style
=
{{
backgroundColor
:
colors
.
headerTable
,
width
:
125
,
}}
>
Tra
̣
ng
tha
́
i
<
/TableCell
>
{
checkRole
(
user
,
'/group-role/changeStatus'
)
&&
(
<
TableCell
style
=
{{
backgroundColor
:
colors
.
headerTable
,
width
:
125
,
}}
>
Tra
̣
ng
tha
́
i
<
/TableCell
>
)}
<
TableCell
style
=
{{
textAlign
:
'center'
,
...
...
@@ -168,28 +169,34 @@ function TableList(props) {
<
/TableCell
>
)
})}
<
TableCell
className
=
{
classes
.
border
}
>
<
Select
variant
=
{
'outlined'
}
labelId
=
"demo-simple-select-placeholder-label-label"
id
=
"demo-simple-select-placeholder-label"
onChange
=
{(
e
)
=>
handeChangeActive
(
row
.
id
,
e
.
target
.
value
)
}
displayEmpty
defaultValue
=
{
row
.
status
}
className
=
{
classes
.
formControl
}
>
<
MenuItem
value
=
{
1
}
>
Ho
ạ
t
độ
ng
<
/MenuItem
>
<
MenuItem
value
=
{
2
}
>
Kho
́
a
<
/MenuItem
>
<
/Select
>
<
/TableCell
>
{
checkRole
(
user
,
'/group-role/changeStatus'
)
&&
(
<
TableCell
className
=
{
classes
.
border
}
>
<
Select
variant
=
{
'outlined'
}
labelId
=
"demo-simple-select-placeholder-label-label"
id
=
"demo-simple-select-placeholder-label"
onChange
=
{(
e
)
=>
handeChangeActive
(
row
.
id
,
e
.
target
.
value
)
}
displayEmpty
defaultValue
=
{
row
.
status
}
className
=
{
classes
.
formControl
}
>
<
MenuItem
value
=
{
1
}
>
Ho
ạ
t
độ
ng
<
/MenuItem
>
<
MenuItem
value
=
{
2
}
>
Kho
́
a
<
/MenuItem
>
<
/Select
>
<
/TableCell
>
)}
<
TableCell
>
{
checkRole
(
user
,
...
...
src/app/views/Company/Role/Table.js
View file @
4c108e10
...
...
@@ -130,15 +130,16 @@ function TableList(props) {
{
column
.
label
}
<
/TableCell
>
))}
<
TableCell
style
=
{{
backgroundColor
:
colors
.
headerTable
,
width
:
125
,
}}
>
Tra
̣
ng
tha
́
i
<
/TableCell
>
{
checkRole
(
user
,
'/role/changeStatus'
)
&&
(
<
TableCell
style
=
{{
backgroundColor
:
colors
.
headerTable
,
width
:
125
,
}}
>
Tra
̣
ng
tha
́
i
<
/TableCell
>
)}
<
TableCell
style
=
{{
...
...
@@ -183,27 +184,31 @@ function TableList(props) {
)
})}
<
TableCell
className
=
{
classes
.
border
}
>
<
Select
variant
=
{
'outlined'
}
labelId
=
"demo-simple-select-placeholder-label-label"
id
=
"demo-simple-select-placeholder-label"
onChange
=
{(
e
)
=>
handeChangeActive
(
row
.
id
,
e
.
target
.
value
)
}
displayEmpty
defaultValue
=
{
row
.
status
}
className
=
{
classes
.
formControl
}
>
<
MenuItem
value
=
{
1
}
>
Ho
ạ
t
độ
ng
<
/MenuItem
>
<
MenuItem
value
=
{
2
}
>
Kho
́
a
<
/MenuItem
>
<
/Select
>
<
/TableCell
>
{
checkRole
(
user
,
'/role/changeStatus'
)
&&
(
<
TableCell
className
=
{
classes
.
border
}
>
<
Select
variant
=
{
'outlined'
}
labelId
=
"demo-simple-select-placeholder-label-label"
id
=
"demo-simple-select-placeholder-label"
onChange
=
{(
e
)
=>
handeChangeActive
(
row
.
id
,
e
.
target
.
value
)
}
displayEmpty
defaultValue
=
{
row
.
status
}
className
=
{
classes
.
formControl
}
>
<
MenuItem
value
=
{
1
}
>
Ho
ạ
t
độ
ng
<
/MenuItem
>
<
MenuItem
value
=
{
2
}
>
Kho
́
a
<
/MenuItem
>
<
/Select
>
<
/TableCell
>
)}
<
TableCell
>
{
checkRole
(
user
,
'/role/delete'
)
?
(
<
Tooltip
title
=
"Xoá"
>
...
...
src/app/views/GasStation/Table.js
View file @
4c108e10
...
...
@@ -135,15 +135,16 @@ function TableList(props) {
{
column
.
label
}
<
/TableCell
>
))}
<
TableCell
style
=
{{
backgroundColor
:
colors
.
headerTable
,
width
:
125
,
}}
>
Tra
̣
ng
tha
́
i
<
/TableCell
>
{
checkRole
(
user
,
'/gas-station/changeStatus'
)
&&
(
<
TableCell
style
=
{{
backgroundColor
:
colors
.
headerTable
,
width
:
125
,
}}
>
Tra
̣
ng
tha
́
i
<
/TableCell
>
)}
<
TableCell
style
=
{{
...
...
@@ -188,27 +189,34 @@ function TableList(props) {
)
})}
<
TableCell
className
=
{
classes
.
border
}
>
<
Select
variant
=
{
'outlined'
}
labelId
=
"demo-simple-select-placeholder-label-label"
id
=
"demo-simple-select-placeholder-label"
onChange
=
{(
e
)
=>
handeChangeActive
(
row
.
id
,
e
.
target
.
value
)
}
displayEmpty
defaultValue
=
{
row
.
status
}
className
=
{
classes
.
formControl
}
>
<
MenuItem
value
=
{
1
}
>
Ho
ạ
t
độ
ng
<
/MenuItem
>
<
MenuItem
value
=
{
2
}
>
Kho
́
a
<
/MenuItem
>
<
/Select
>
<
/TableCell
>
{
checkRole
(
user
,
'/gas-station/changeStatus'
)
&&
(
<
TableCell
className
=
{
classes
.
border
}
>
<
Select
variant
=
{
'outlined'
}
labelId
=
"demo-simple-select-placeholder-label-label"
id
=
"demo-simple-select-placeholder-label"
onChange
=
{(
e
)
=>
handeChangeActive
(
row
.
id
,
e
.
target
.
value
)
}
displayEmpty
defaultValue
=
{
row
.
status
}
className
=
{
classes
.
formControl
}
>
<
MenuItem
value
=
{
1
}
>
Ho
ạ
t
độ
ng
<
/MenuItem
>
<
MenuItem
value
=
{
2
}
>
Kho
́
a
<
/MenuItem
>
<
/Select
>
<
/TableCell
>
)}
<
TableCell
>
{
checkRole
(
user
,
...
...
src/app/views/Merchant/Table.js
View file @
4c108e10
...
...
@@ -135,15 +135,16 @@ function TableList(props) {
{
column
.
label
}
<
/TableCell
>
))}
<
TableCell
style
=
{{
backgroundColor
:
colors
.
headerTable
,
width
:
125
,
}}
>
Tra
̣
ng
tha
́
i
<
/TableCell
>
{
checkRole
(
user
,
'/merchant/changeStatus'
)
&&
(
<
TableCell
style
=
{{
backgroundColor
:
colors
.
headerTable
,
width
:
125
,
}}
>
Tra
̣
ng
tha
́
i
<
/TableCell
>
)}
<
TableCell
style
=
{{
...
...
@@ -188,27 +189,35 @@ function TableList(props) {
)
})}
<
TableCell
className
=
{
classes
.
border
}
>
<
Select
variant
=
{
'outlined'
}
labelId
=
"demo-simple-select-placeholder-label-label"
id
=
"demo-simple-select-placeholder-label"
onChange
=
{(
e
)
=>
handeChangeActive
(
row
.
id
,
e
.
target
.
value
)
}
displayEmpty
defaultValue
=
{
row
.
status
}
className
=
{
classes
.
formControl
}
>
<
MenuItem
value
=
{
1
}
>
Ho
ạ
t
độ
ng
<
/MenuItem
>
<
MenuItem
value
=
{
2
}
>
Kho
́
a
<
/MenuItem
>
<
/Select
>
<
/TableCell
>
{
checkRole
(
user
,
'/merchant/changeStatus'
)
&&
(
<
TableCell
className
=
{
classes
.
border
}
>
<
Select
variant
=
{
'outlined'
}
labelId
=
"demo-simple-select-placeholder-label-label"
id
=
"demo-simple-select-placeholder-label"
onChange
=
{(
e
)
=>
handeChangeActive
(
row
.
id
,
e
.
target
.
value
)
}
displayEmpty
defaultValue
=
{
row
.
status
}
className
=
{
classes
.
formControl
}
>
<
MenuItem
value
=
{
1
}
>
Ho
ạ
t
độ
ng
<
/MenuItem
>
<
MenuItem
value
=
{
2
}
>
Kho
́
a
<
/MenuItem
>
<
/Select
>
<
/TableCell
>
)}
<
TableCell
>
{
checkRole
(
user
,
'/merchant/delete'
)
?
(
<
Tooltip
title
=
"Xoá"
>
...
...
src/app/views/product/product/Table.js
View file @
4c108e10
...
...
@@ -115,15 +115,16 @@ function TableList(props) {
{
column
.
label
}
<
/TableCell
>
))}
<
TableCell
style
=
{{
backgroundColor
:
colors
.
headerTable
,
width
:
125
,
}}
>
Tra
̣
ng
tha
́
i
<
/TableCell
>
{
checkRole
(
user
,
'/product/changeStatus'
)
&&
(
<
TableCell
style
=
{{
backgroundColor
:
colors
.
headerTable
,
width
:
125
,
}}
>
Tra
̣
ng
tha
́
i
<
/TableCell
>
)}
<
TableCell
style
=
{{
...
...
@@ -167,28 +168,34 @@ function TableList(props) {
<
/TableCell
>
)
})}
<
TableCell
className
=
{
classes
.
border
}
>
<
Select
variant
=
{
'outlined'
}
labelId
=
"demo-simple-select-placeholder-label-label"
id
=
"demo-simple-select-placeholder-label"
onChange
=
{(
e
)
=>
handeChangeActive
(
row
.
id
,
e
.
target
.
value
)
}
displayEmpty
defaultValue
=
{
row
.
status
}
className
=
{
classes
.
formControl
}
>
<
MenuItem
value
=
{
1
}
>
Ho
ạ
t
độ
ng
<
/MenuItem
>
<
MenuItem
value
=
{
2
}
>
Kho
́
a
<
/MenuItem
>
<
/Select
>
<
/TableCell
>
{
checkRole
(
user
,
'/product/changeStatus'
)
&&
(
<
TableCell
className
=
{
classes
.
border
}
>
<
Select
variant
=
{
'outlined'
}
labelId
=
"demo-simple-select-placeholder-label-label"
id
=
"demo-simple-select-placeholder-label"
onChange
=
{(
e
)
=>
handeChangeActive
(
row
.
id
,
e
.
target
.
value
)
}
displayEmpty
defaultValue
=
{
row
.
status
}
className
=
{
classes
.
formControl
}
>
<
MenuItem
value
=
{
1
}
>
Ho
ạ
t
độ
ng
<
/MenuItem
>
<
MenuItem
value
=
{
2
}
>
Kho
́
a
<
/MenuItem
>
<
/Select
>
<
/TableCell
>
)}
<
TableCell
>
{
checkRole
(
user
,
'/product/delete'
)
?
(
<
Tooltip
title
=
"Xoá"
>
...
...
src/app/views/product/type/Table.js
View file @
4c108e10
...
...
@@ -110,15 +110,16 @@ function TableList(props) {
{
column
.
label
}
<
/TableCell
>
))}
<
TableCell
style
=
{{
backgroundColor
:
colors
.
headerTable
,
width
:
125
,
}}
>
Tra
̣
ng
tha
́
i
<
/TableCell
>
{
checkRole
(
user
,
'/product-type/changeStatus'
)
&&
(
<
TableCell
style
=
{{
backgroundColor
:
colors
.
headerTable
,
width
:
125
,
}}
>
Tra
̣
ng
tha
́
i
<
/TableCell
>
)}
<
TableCell
style
=
{{
...
...
@@ -162,28 +163,34 @@ function TableList(props) {
<
/TableCell
>
)
})}
<
TableCell
className
=
{
classes
.
border
}
>
<
Select
variant
=
{
'outlined'
}
labelId
=
"demo-simple-select-placeholder-label-label"
id
=
"demo-simple-select-placeholder-label"
onChange
=
{(
e
)
=>
handeChangeActive
(
row
.
id
,
e
.
target
.
value
)
}
displayEmpty
defaultValue
=
{
row
.
status
}
className
=
{
classes
.
formControl
}
>
<
MenuItem
value
=
{
1
}
>
Ho
ạ
t
độ
ng
<
/MenuItem
>
<
MenuItem
value
=
{
2
}
>
Kho
́
a
<
/MenuItem
>
<
/Select
>
<
/TableCell
>
{
checkRole
(
user
,
'/product-type/changeStatus'
)
&&
(
<
TableCell
className
=
{
classes
.
border
}
>
<
Select
variant
=
{
'outlined'
}
labelId
=
"demo-simple-select-placeholder-label-label"
id
=
"demo-simple-select-placeholder-label"
onChange
=
{(
e
)
=>
handeChangeActive
(
row
.
id
,
e
.
target
.
value
)
}
displayEmpty
defaultValue
=
{
row
.
status
}
className
=
{
classes
.
formControl
}
>
<
MenuItem
value
=
{
1
}
>
Ho
ạ
t
độ
ng
<
/MenuItem
>
<
MenuItem
value
=
{
2
}
>
Kho
́
a
<
/MenuItem
>
<
/Select
>
<
/TableCell
>
)}
<
TableCell
>
{
checkRole
(
user
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment