deskripsi:
- fix api job
This commit is contained in:
2025-02-20 10:20:54 +08:00
parent d474d7611b
commit 57d04450e1
15 changed files with 373 additions and 115 deletions

View File

@@ -2,11 +2,10 @@ import { Job_Arsip } from "@/app_modules/job";
import { job_getAllArsipById } from "@/app_modules/job/fun/get/get_all_arsip";
export default async function Page() {
const dataJob = await job_getAllArsipById({ page: 1 });
return (
<>
<Job_Arsip dataJob={dataJob as any} />
<Job_Arsip />
</>
);
}

View File

@@ -1,13 +1,9 @@
import { Job_Status } from "@/app_modules/job";
import { job_funGetAllByStatusId } from "@/app_modules/job/fun";
import { job_funGetMasterStatus } from "@/app_modules/job/fun/get/get_master_status";
export default async function Page() {
return (
<>
<Job_Status/>
<Job_Status />
</>
);
}