TorbatYar/frontend/app/accounting/purchase/requests/page.tsx
Mortezakoohjani 7953e47f8b Ship accounting UX: Rial integers, auto doc numbers, reverse-and-edit, real reports, customers nav.
Wire DocumentNumberSequence allocator, ledger-based subsidiary/detail reports, and posted-voucher reopen flow without mock ops forms.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-26 15:52:06 +03:30

17 lines
413 B
TypeScript

"use client";
import { OperationalDocumentPage } from "@/components/accounting/OperationalDocumentPage";
export default function Page() {
return (
<OperationalDocumentPage
title="درخواست خرید"
createLabel="درخواست خرید جدید"
module="purchase"
docType="request"
partyLabel="تأمین‌کننده"
kind="request"
/>
);
}