This commit is contained in:
2024-07-02 08:46:35 +07:00
parent 740eae1a58
commit bb57d7f69a

View File

@@ -60,6 +60,7 @@ import Label from '@/components/Label';
import DialogUpdateStatus from '@/components/DialogUpdateStatus'; import DialogUpdateStatus from '@/components/DialogUpdateStatus';
import {Dialog, DialogTitle, DialogContent, DialogActions } from '@mui/material'; import {Dialog, DialogTitle, DialogContent, DialogActions } from '@mui/material';
import CloseIcon from '@mui/icons-material/Close'; import CloseIcon from '@mui/icons-material/Close';
import { fNumber } from '@/utils/formatNumber';
export default function CorporatePlanList() { export default function CorporatePlanList() {
@@ -478,7 +479,7 @@ export default function CorporatePlanList() {
<TableCell align="left">{row.code}</TableCell> <TableCell align="left">{row.code}</TableCell>
<TableCell align="left">{row.type}</TableCell> <TableCell align="left">{row.type}</TableCell>
<TableCell align="left">{row.limit_rules}</TableCell> <TableCell align="left">{row.limit_rules ? fNumber(row.limit_rules) : row.limit_rules}</TableCell>
<TableCell align="center"> <TableCell align="center">
{row.active == 1 ? {row.active == 1 ?