fix: Admin

Deskripsi:
- Penambahan field nama rekening di db bank
- Optimalisasi event
## No Issue
This commit is contained in:
2024-09-03 10:10:31 +08:00
parent 8a018462c7
commit 74108c3096
117 changed files with 2976 additions and 1144 deletions

View File

@@ -0,0 +1,28 @@
import { MainColor } from "@/app_modules/_global/color/color_pallet";
import { Text } from "@mantine/core";
export default function ComponentGlobal_TampilanRupiah({
nominal,
color,
fontSize,
}: {
nominal: number;
color?: string;
fontSize?: number;
}) {
return (
<>
<Text
fz={fontSize ? fontSize : "md"}
style={{
color: color ? color : "black",
}}
>
Rp.{" "}
{new Intl.NumberFormat("id-ID", { maximumFractionDigits: 10 }).format(
nominal
)}
</Text>
</>
);
}

View File

@@ -0,0 +1,3 @@
import ComponentGlobal_TampilanRupiah from "./comp_tampilan_rupiah";
export { ComponentGlobal_TampilanRupiah };