Wire DocumentNumberSequence allocator, ledger-based subsidiary/detail reports, and posted-voucher reopen flow without mock ops forms. Co-authored-by: Cursor <cursoragent@cursor.com>
24 lines
959 B
TypeScript
24 lines
959 B
TypeScript
"use client";
|
|
import { SpecializedOpsPage } from "@/components/accounting/SpecializedOpsPage";
|
|
export default function Page() {
|
|
return (
|
|
<SpecializedOpsPage
|
|
title="مقایسه عملکرد"
|
|
description="فرم تخصصی بودجه متصل به API عملیاتی حسابداری."
|
|
module="budget"
|
|
docType="performance"
|
|
createLabel="مقایسه جدید"
|
|
fields={[
|
|
{ key: "period_label", label: "دوره", kind: "text" },
|
|
{ key: "budget_type", label: "نوع", kind: "select", options: [
|
|
{ value: "performance", label: "مقایسه عملکرد" },
|
|
{ value: "operating", label: "عملیاتی" },
|
|
{ value: "capital", label: "سرمایهای" },
|
|
]},
|
|
{ key: "amount", label: "مبلغ", kind: "money" },
|
|
{ key: "baseline_amount", label: "مبلغ مبنا", kind: "money", required: false },
|
|
]}
|
|
/>
|
|
);
|
|
}
|