Update mobile purchase flow and locale formatting

This commit is contained in:
2026-05-20 15:49:21 +07:00
parent 8e8912ed5b
commit a9202c390b
18 changed files with 496 additions and 523 deletions

View File

@ -1,14 +1,17 @@
import { AppShell } from "@/components/layout/app-shell";
import { LotMixingClient } from "@/features/lot-transformations/components/lot-mixing-client";
import { getAppSettings } from "@/lib/app-settings";
export default async function SortingPage() {
const settings = await getAppSettings();
return (
<AppShell
pathname="/sorting"
title="Mixing Lot / Ubah Grade"
description="Campurkan beberapa lot aktif menjadi lot hasil baru dengan grade baru, lalu simpan jejak input-output secara penuh."
>
<LotMixingClient />
<LotMixingClient currencyCode={settings.currency_code} />
</AppShell>
);
}