voucher/json/voucher_template_list.json

108 lines
3.1 KiB
JSON

{
"tblname": "voucher_template",
"alias": "voucher_template_list",
"title": "代金券模板",
"params": {
"sortby": [
"created_at desc"
],
"browserfields": {
"exclouded": [
"id",
"org_id",
"created_by"
],
"alters": {
"status": {
"uitype": "code",
"data": [
{
"value": "draft",
"text": "草稿"
},
{
"value": "active",
"text": "启用"
},
{
"value": "inactive",
"text": "停用"
}
]
}
}
},
"editexclouded": [
"id",
"code",
"issued_count",
"org_id",
"created_by",
"created_at",
"updated_at"
],
"data_filter": {
"AND": [
{
"field": "name",
"op": "LIKE",
"var": "name"
},
{
"field": "status",
"op": "=",
"var": "status"
}
]
},
"filter_labels": {
"name": "模板名称",
"status": "状态"
},
"editable": {
"new_data_url": "{{entire_url('../api/template/voucher_template_create.dspy')}}",
"update_data_url": "{{entire_url('../api/template/voucher_template_update.dspy')}}",
"delete_data_url": "{{entire_url('../api/template/voucher_template_delete.dspy')}}"
},
"toolbar": {
"tools": [
{
"name": "issue_from_tpl",
"label": "发券",
"selected_row": true
}
]
},
"binds": [
{
"wid": "self",
"event": "issue_from_tpl",
"actiontype": "urlwidget",
"target": "PopupWindow",
"popup_options": {
"title": "按此模板发券",
"width": "46%",
"height": "60%",
"archor": "cc",
"resizable": true,
"dismiss_events": [
"cancel",
"submited"
]
},
"options": {
"url": "{{entire_url('/voucher/issue_form.ui')}}"
}
}
],
"subtables": [
{
"field": "template_id",
"title": "规则配置",
"url": "{{entire_url('../voucher_rule_list')}}",
"subtable": "voucher_rule"
}
]
}
}