6 lines
483 B
Plaintext
6 lines
483 B
Plaintext
# voucher_instance_delete.dspy — 实例删除(已使用禁删保审计;未使用删除回吐发行额度)
|
|
r = await delete_voucher_instance(request, params_kw)
|
|
if r.get('success'):
|
|
return {"widgettype": "Message", "options": {"title": "Success", "message": r.get('message') or 'ok', "timeout": 3, "cwidth": 16, "cheight": 9}}
|
|
return {"widgettype": "Error", "options": {"title": "Error", "message": r.get('message') or 'failed', "timeout": 3, "cwidth": 16, "cheight": 9}}
|