merge: POP 재고관리 전면 구현 (feature→staging)

This commit is contained in:
SeongHyun Kim
2026-04-10 18:48:52 +09:00
17 changed files with 4181 additions and 706 deletions

View File

@@ -0,0 +1,12 @@
"use client";
import { PopShell } from "@/components/pop/hardcoded";
import { AdjustHistory } from "@/components/pop/hardcoded/inventory/AdjustHistory";
export default function AdjustHistoryPage() {
return (
<PopShell showBanner={false} title="조정이력" fullBleed showBack>
<AdjustHistory />
</PopShell>
);
}

View File

@@ -5,7 +5,7 @@ import { InOutHistory } from "@/components/pop/hardcoded/inventory";
export default function InOutHistoryPage() {
return (
<PopShell showBanner={false} title="입출고관리">
<PopShell showBanner={false} title="입출고관리" fullBleed>
<InOutHistory />
</PopShell>
);