Initial import of AbelBirdNest Stock

This commit is contained in:
2026-05-16 18:25:51 +07:00
commit 14bb9bf744
472 changed files with 70671 additions and 0 deletions

View File

@ -0,0 +1,17 @@
import { AppShell } from "@/components/layout/app-shell";
import { SalesAllocationClient } from "@/features/sales-allocation/components/sales-allocation-client";
import { getAppSettings } from "@/lib/app-settings";
export default async function SalesPage() {
const settings = await getAppSettings();
return (
<AppShell
pathname="/sales-allocation"
title="Alokasi Penjualan"
description="Pesanan penjualan akan mengambil stok dari satu atau banyak lot, lalu menghitung biaya total berdasarkan alokasi aktual."
>
<SalesAllocationClient currencyCode={settings.currency_code} />
</AppShell>
);
}