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

36 lines
988 B
JSON

{
"tblname": "contract_milestones",
"alias": "contract_milestones_list",
"title": "合同里程碑管理",
"params": {
"sortby": ["planned_date asc"],
"browserfields": {
"exclouded": ["id", "contract_id", "updated_at"],
"alters": {
"milestone_type": {
"uitype": "code",
"data": [
{"value": "payment", "text": "付款"},
{"value": "delivery", "text": "交付"},
{"value": "acceptance", "text": "验收"}
]
},
"status": {
"uitype": "code",
"data": [
{"value": "pending", "text": "待处理"},
{"value": "completed", "text": "已完成"},
{"value": "overdue", "text": "已逾期"}
]
},
"reminder_sent": {
"uitype": "code",
"data": [
{"value": "1", "text": "已发送"},
{"value": "0", "text": "未发送"}
]
}
}
}
}
}