feat/FE/US-34/TASK-54-51-slicing-ui-client-side-validation-stock-adjustment

This commit is contained in:
randy-ar
2025-10-11 02:03:10 +07:00
parent 94a5ce5604
commit aa7b6581d9
12 changed files with 1094 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
import InventoryAdjustmentForm from "@/components/pages/inventory/adjustment/form/InventoryAdjustmentForm";
const CreateInventoryAdjustment = () => {
return (
<section className="w-full p-4 flex flex-row justify-center">
<InventoryAdjustmentForm/>
</section>
);
}
export default CreateInventoryAdjustment;
@@ -0,0 +1,11 @@
import InventoryAdjustmentForm from "@/components/pages/inventory/adjustment/form/InventoryAdjustmentForm";
const DetailInventoryAdjustment = () => {
return (
<section>
<InventoryAdjustmentForm/>
</section>
);
}
export default DetailInventoryAdjustment;
+12
View File
@@ -0,0 +1,12 @@
import InventoryAdjustmentForm from '@/components/pages/inventory/adjustment/form/InventoryAdjustmentForm';
import InventoryAdjustmentTable from '@/components/pages/inventory/adjustment/InventoryAdjustmentTable';
const InventoryAdjustment = () => {
return (
<section className='w-full p-4'>
<InventoryAdjustmentTable />
</section>
);
};
export default InventoryAdjustment;