|
|
@@ -2,7 +2,7 @@ import moment from "moment";
|
|
|
import { Button, Table } from "reactstrap";
|
|
|
import Link from "next/link";
|
|
|
|
|
|
-function TableSanksi({ listData, to, linkName, toKeberatan }) {
|
|
|
+function TableSanksi({ listData, to, linkName, toKeberatan, toJwbBanding, toJwbKeberatan, toPerbaikan, toJwbBanding2, toCabutSanksi, toJwbCabutSanksi }) {
|
|
|
return (
|
|
|
<div className="card b">
|
|
|
<div className="card-body card-over">
|
|
|
@@ -44,7 +44,7 @@ function TableSanksi({ listData, to, linkName, toKeberatan }) {
|
|
|
</td>
|
|
|
{/* <td>{moment(data.createdAt).format("DD MMMM YYYY")}</td> */}
|
|
|
<td>{data.is_pengajuan_keberatan === true || data.is_pengajuan_keberatan === false ? <div className="badge badge-green">{data.last_step}</div> : <div className="badge badge-red">Belum Diperiksa</div>}</td>
|
|
|
- <td>{data.pengajuan?.keberatan ?
|
|
|
+ {/* <td>{data.pengajuan?.keberatan ?
|
|
|
<Link href={{ pathname: toKeberatan, query: { id: data._id } }}>
|
|
|
<Button className="btn-login" color >
|
|
|
<span className="font-color-white">
|
|
|
@@ -59,10 +59,103 @@ function TableSanksi({ listData, to, linkName, toKeberatan }) {
|
|
|
</span>
|
|
|
</Button>
|
|
|
</Link>
|
|
|
-
|
|
|
}
|
|
|
+ </td> */}
|
|
|
+ <td>
|
|
|
+ {data.last_step === "Permohonan Keberatan" && (
|
|
|
+
|
|
|
+ <Link href={{ pathname: toKeberatan, query: { id: data._id } }}>
|
|
|
+ <Button className="btn-login" color >
|
|
|
+ <span className="font-color-white">
|
|
|
+ {linkName}
|
|
|
+ </span>
|
|
|
+ </Button>
|
|
|
+ </Link>
|
|
|
+
|
|
|
+ )}
|
|
|
+ {data.last_step === "Jawaban Atas Permohonan Keberatan" && (
|
|
|
+
|
|
|
+ <Link href={{ pathname: toJwbKeberatan, query: { id: data._id } }}>
|
|
|
+ <Button className="btn-login" color >
|
|
|
+ <span className="font-color-white">
|
|
|
+ {linkName}
|
|
|
+ </span>
|
|
|
+ </Button>
|
|
|
+ </Link>
|
|
|
+
|
|
|
+ )}
|
|
|
+ {data.last_step === "Jawaban Atas Permohonan Banding" && (
|
|
|
+
|
|
|
+ <Link href={{ pathname: toJwbBanding, query: { id: data._id } }}>
|
|
|
+ <Button className="btn-login" color >
|
|
|
+ <span className="font-color-white">
|
|
|
+ {linkName}
|
|
|
+ </span>
|
|
|
+ </Button>
|
|
|
+ </Link>
|
|
|
+
|
|
|
+ )}
|
|
|
+ {data.last_step === "Permohonan Banding" && (
|
|
|
+
|
|
|
+ <Link href={{ pathname: toJwbBanding2, query: { id: data._id } }}>
|
|
|
+ <Button className="btn-login" color >
|
|
|
+ <span className="font-color-white">
|
|
|
+ {linkName}
|
|
|
+ </span>
|
|
|
+ </Button>
|
|
|
+ </Link>
|
|
|
+
|
|
|
+ )}
|
|
|
+ {data.last_step === "Permohonan Pencabutan Sanksi" && (
|
|
|
|
|
|
+ <Link href={{ pathname: toCabutSanksi, query: { id: data._id } }}>
|
|
|
+ <Button className="btn-login" color >
|
|
|
+ <span className="font-color-white">
|
|
|
+ {linkName}
|
|
|
+ </span>
|
|
|
+ </Button>
|
|
|
+ </Link>
|
|
|
+
|
|
|
+ )}
|
|
|
+ {data.last_step === "Jawaban Atas Permohonan Pencabutan Sanksi" && (
|
|
|
+
|
|
|
+ <Link href={{ pathname: toJwbCabutSanksi, query: { id: data._id } }}>
|
|
|
+ <Button className="btn-login" color >
|
|
|
+ <span className="font-color-white">
|
|
|
+ {linkName}
|
|
|
+ </span>
|
|
|
+ </Button>
|
|
|
+ </Link>
|
|
|
+
|
|
|
+ )}
|
|
|
+
|
|
|
+
|
|
|
+ {data.last_step === "Dokumen Perbaikan" && (
|
|
|
+
|
|
|
+ <Link href={{ pathname: toPerbaikan, query: { id: data._id } }}>
|
|
|
+ <Button className="btn-login" color >
|
|
|
+ <span className="font-color-white">
|
|
|
+ {linkName}
|
|
|
+ </span>
|
|
|
+ </Button>
|
|
|
+ </Link>
|
|
|
+
|
|
|
+ )}
|
|
|
+ {data.last_step ? (
|
|
|
+
|
|
|
+ ""
|
|
|
+
|
|
|
+ ) : (
|
|
|
+ <Link href={{ pathname: to, query: { id: data._id } }}>
|
|
|
+ <Button className="btn-login" color >
|
|
|
+ <span className="font-color-white">
|
|
|
+ {linkName}
|
|
|
+ </span>
|
|
|
+ </Button>
|
|
|
+ </Link>
|
|
|
+ )}
|
|
|
</td>
|
|
|
+
|
|
|
</tr>
|
|
|
);
|
|
|
})}
|