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

30 lines
832 B
JSON

{
"tblname": "orders",
"alias": "orders_list",
"title": "订单管理",
"params": {
"sortby": ["created_at desc"],
"browserfields": {
"exclouded": ["id", "contract_id", "customer_id", "owner_id", "org_id"],
"alters": {
"order_type": {
"uitype": "code",
"data": [
{"value": "advance", "text": "预付款"},
{"value": "progress", "text": "进度款"},
{"value": "final", "text": "尾款"},
{"value": "manual", "text": "手动订单"}
]
},
"status": {
"uitype": "code",
"data": [
{"value": "active", "text": "激活"},
{"value": "completed", "text": "已完成"},
{"value": "cancelled", "text": "已取消"}
]
}
}
}
}
}