voucher/json/voucher_instance_list.json

133 lines
3.9 KiB
JSON

{
"tblname": "voucher_instance",
"alias": "voucher_instance_list",
"title": "代金券实例",
"params": {
"sortby": [
"issued_at desc"
],
"browserfields": {
"exclouded": [
"id",
"template_id"
],
"alters": {
"status": {
"uitype": "code",
"data": [
{
"value": "unused",
"text": "未使用"
},
{
"value": "used",
"text": "已使用"
},
{
"value": "expired",
"text": "已过期"
},
{
"value": "void",
"text": "已作废"
}
]
},
"source": {
"uitype": "code",
"data": [
{
"value": "manual",
"text": "手动发放"
},
{
"value": "register",
"text": "注册赠券"
},
{
"value": "promo",
"text": "促销活动"
}
]
}
}
},
"editexclouded": [
"id",
"code",
"status",
"face_value",
"actual_deducted",
"valid_from",
"valid_to",
"issued_at",
"used_at",
"order_id",
"created_at",
"updated_at"
],
"data_filter": {
"AND": [
{
"field": "customer_id",
"op": "=",
"var": "customer_id"
},
{
"field": "status",
"op": "=",
"var": "status"
}
]
},
"filter_labels": {
"customer_id": "客户机构",
"status": "状态"
},
"editable": {
"new_data_url": "{{entire_url('../api/instance/voucher_issue.dspy')}}",
"update_data_url": "{{entire_url('../api/instance/voucher_instance_update.dspy')}}",
"delete_data_url": "{{entire_url('../api/instance/voucher_instance_delete.dspy')}}"
},
"toolbar": {
"tools": [
{
"name": "invalidate",
"label": "作废",
"selected_row": true
}
]
},
"binds": [
{
"wid": "self",
"event": "invalidate",
"actiontype": "urlwidget",
"target": "PopupWindow",
"popup_options": {
"title": "作废代金券",
"width": "40%",
"height": "46%",
"archor": "cc",
"resizable": true,
"dismiss_events": [
"cancel",
"submited"
]
},
"options": {
"url": "{{entire_url('/voucher/invalidate_form.ui')}}"
}
}
],
"subtables": [
{
"field": "instance_id",
"title": "使用记录",
"url": "{{entire_url('../voucher_usage_log_list')}}",
"subtable": "voucher_usage_log"
}
]
}
}