contract_management/json/order_payments_edit.json
yumoqing 3772f0f6fb feat(contract): 增强合同管理模块功能
- 添加增强的合同核心功能
- 实现合同里程碑管理
- 实现合同版本控制
- 添加订单和支付管理功能
- 完整的数据库模型和API接口
- 包含测试用例
2026-04-16 14:34:37 +08:00

29 lines
837 B
JSON

{
"tblname": "order_payments",
"alias": "order_payments_edit",
"title": "编辑付款记录",
"params": {
"formfields": {
"exclouded": ["id", "order_id", "confirmed_by", "created_at", "updated_at"],
"alters": {
"status": {
"uitype": "code",
"data": [
{"value": "pending", "text": "待确认"},
{"value": "confirmed", "text": "已确认"},
{"value": "rejected", "text": "已拒绝"}
]
},
"payment_method": {
"uitype": "code",
"data": [
{"value": "bank_transfer", "text": "银行转账"},
{"value": "check", "text": "支票"},
{"value": "cash", "text": "现金"},
{"value": "online_payment", "text": "在线支付"}
]
}
}
}
}
}