Goods receipts and warehouse receipts now capture party vs warehouse separately; purchase returns link to invoices and reduce AP. Co-authored-by: Cursor <cursoragent@cursor.com>
19 lines
582 B
TypeScript
19 lines
582 B
TypeScript
"use client";
|
|
|
|
import { OperationalDocumentPage } from "@/components/accounting/OperationalDocumentPage";
|
|
|
|
export default function Page() {
|
|
return (
|
|
<OperationalDocumentPage
|
|
title="رسید ورود و خروج"
|
|
description="طرف حساب و انبار جداگانه مشخص میشوند — ورود یا خروج کالا به/از انبار."
|
|
createLabel="رسید جدید"
|
|
module="inventory"
|
|
docType="receipt_issue"
|
|
partyLabel="طرف حساب"
|
|
kind="receipt"
|
|
enableWarehouseContext
|
|
/>
|
|
);
|
|
}
|