Alur pembayaran donasi
# feat - Tampilan invoce - Proses acc admin - Transaksi berhasil # Issue: Hitungan progres masih salah
This commit is contained in:
@@ -4,14 +4,16 @@ import { getToken_UserId } from "@/app_modules/fun/get_user_token";
|
||||
|
||||
export default async function Page() {
|
||||
const authorId = await getToken_UserId();
|
||||
const listPublish = await Donasi_getByStatus(authorId, "1")
|
||||
const listReview = await Donasi_getByStatus(authorId, "2");
|
||||
const listDraft = await Donasi_getByStatus(authorId, "3");
|
||||
const listReject = await Donasi_getByStatus(authorId, "4")
|
||||
|
||||
|
||||
// console.log(listReview)
|
||||
|
||||
return (
|
||||
<>
|
||||
<PostingDonasi listReview={listReview} listDraft={listDraft} />
|
||||
<PostingDonasi listPublish={listPublish} listReview={listReview} listDraft={listDraft} listReject={listReject} />
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user