TorbatYar/frontend/app/accounting/budget/operational/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

24 lines
992 B
TypeScript

"use client";
import { SpecializedOpsPage } from "@/components/accounting/SpecializedOpsPage";
export default function Page() {
return (
<SpecializedOpsPage
title="بودجه‌ریزی عملیاتی"
description="فرم تخصصی بودجه متصل به API عملیاتی حسابداری."
module="budget"
docType="operational"
createLabel="بودجه عملیاتی جدید"
fields={[
{ key: "period_label", label: "دوره", kind: "text" },
{ key: "budget_type", label: "نوع", kind: "select", options: [
{ value: "operating", label: "بودجه‌ریزی عملیاتی" },
{ value: "operating", label: "عملیاتی" },
{ value: "capital", label: "سرمایه‌ای" },
]},
{ key: "amount", label: "مبلغ", kind: "money" },
{ key: "baseline_amount", label: "مبلغ مبنا", kind: "money", required: false },
]}
/>
);
}