Wire DocumentNumberSequence allocator, ledger-based subsidiary/detail reports, and posted-voucher reopen flow without mock ops forms. Co-authored-by: Cursor <cursoragent@cursor.com>
19 lines
744 B
TypeScript
19 lines
744 B
TypeScript
"use client";
|
|
import { SpecializedOpsPage } from "@/components/accounting/SpecializedOpsPage";
|
|
export default function Page() {
|
|
return (
|
|
<SpecializedOpsPage
|
|
title="پشتیبانگیری"
|
|
description="پشتیبانگیری — پارامترهای مستأجر در لایه عملیاتی حسابداری."
|
|
module="settings"
|
|
docType="backup"
|
|
createLabel="ثبت پشتیبانگیری"
|
|
fields={[
|
|
{ key: "setting_key", label: "کلید تنظیم", kind: "text" },
|
|
{ key: "setting_value", label: "مقدار", kind: "text" },
|
|
{ key: "amount", label: "مقدار عددی (اختیاری)", kind: "money", required: false },
|
|
]}
|
|
/>
|
|
);
|
|
}
|