完善财务对账渠道与日期展示

This commit is contained in:
czl231
2026-08-17 01:37:00 +08:00
parent a6560f99b6
commit e9db59509c
5 changed files with 31 additions and 1 deletions

View File

@@ -869,7 +869,17 @@ export const resources: ResourceUiDefinition[] = [
},
}), f('period_start', { required: true }), f('period_end', { required: true })]),
define('fin_reconciliation', '财务对账', 'readonly', [
f('reconciliation_status'), f('channel'), f('bill_date'), f('difference_amount'),
f('reconciliation_status'),
f('channel', {
type: 'select',
options: [
{ label: '余额支付', value: 'wallet' },
{ label: '支付宝', value: 'alipay' },
{ label: '微信支付', value: 'wechat' },
],
unknownValueLabel: '未知对账渠道',
}),
f('bill_date'), f('difference_amount'),
]),
define('cms_content', '内容', 'writable', [f('content_type', { required: true }), f('title', { required: true }), f('body', { required: true }), f('version_no'), f('publish_status')]),
define('cs_ticket', '客服工单', 'writable', [relation('user_account_identity', '/user_account', true), f('ticket_no', { required: true }), f('category', { required: true }), f('priority', { required: true })]),