- supplier_resource_price_list.json重写为规范格式(tblname+params) - 3个新CRUD dspy(create/update/delete) - load_path.py LOGINED+OPERATOR注册完整路径
26 lines
1005 B
JSON
26 lines
1005 B
JSON
{
|
|
"tblname": "supplier_resource_price",
|
|
"alias": "supplier_resource_price_list",
|
|
"title": "供应商资源定价管理",
|
|
"params": {
|
|
"sortby": ["effective_date desc", "created_at desc"],
|
|
"data_filter": {
|
|
"fields": [
|
|
{"field": "supplier_org_id", "title": "供应商", "uitype": "code"},
|
|
{"field": "resource_type", "title": "资源类型", "uitype": "code"},
|
|
{"field": "status", "title": "状态", "uitype": "code"}
|
|
]
|
|
},
|
|
"browserfields": {
|
|
"exclouded": [],
|
|
"alters": {}
|
|
},
|
|
"editexclouded": ["id", "created_at", "updated_at"],
|
|
"editable": {
|
|
"new_data_url": "{{entire_url('../api/supplier_resource_price_create.dspy')}}",
|
|
"update_data_url": "{{entire_url('../api/supplier_resource_price_update.dspy')}}",
|
|
"delete_data_url": "{{entire_url('../api/supplier_resource_price_delete.dspy')}}"
|
|
}
|
|
}
|
|
}
|