Wire DocumentNumberSequence allocator, ledger-based subsidiary/detail reports, and posted-voucher reopen flow without mock ops forms. Co-authored-by: Cursor <cursoragent@cursor.com>
18 lines
448 B
TypeScript
18 lines
448 B
TypeScript
"use client";
|
|
|
|
import { OperationalDocumentPage } from "@/components/accounting/OperationalDocumentPage";
|
|
|
|
export default function Page() {
|
|
return (
|
|
<OperationalDocumentPage
|
|
title="رسید کالا"
|
|
createLabel="رسید کالای جدید"
|
|
module="purchase"
|
|
docType="goods_receipt"
|
|
partyLabel="تأمینکننده"
|
|
kind="receipt"
|
|
enableAccountingPost="purchase"
|
|
/>
|
|
);
|
|
}
|