You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
1.4 KiB
Markdown

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# 1.call-client转移功能修修改
- 转移功能只能窗口和业务二选一,不能同时选择。
- 点击确认转移后,调用/api/queue/caller/call-terminal/transfer接口请求参数如下
{
"windowUid": 0,
"empUid": 0,
"ticketUid": 0,
"targetWindowUid": 0,
"resumeToken": "string",
"targetPosition": 0,
"rank": 0,
"rankUserName": "string",
"rankUserPhone": "string",
"idCard": "string",
"phone": "string",
"serviceUrl": "string",
"forward": true,
"read": true,
"customText": "string",
"pauseReason": "string",
"driver": "string",
"clients": [
{
"address": "string",
"driver": "string",
"com": 0,
"serial": 0,
"ip": "string",
"port": "string",
"param": "string"
}
]
}
# 2.call-client异常中断处理
- 点击呼叫或开始之后票号是否有缓存为防止异常中断的情况点击呼叫或开始之后需要将票号缓存起来在异常中断重新登录并跳转到mainview之后先查看是否缓存了票号有则弹出原生提示框提示是否继续办理异常中断的号码如果点击是则继续根据缓存的票号状态进行流程如果点击否则开始正常的流程。
# 3.修改1中的接口参数
- targetPosition不用理会新增targetBusinessUid参数按窗口转移使用targetWindowUid传窗口uid同时targetBusinessUid传null反之按业务转移使用targetBusinessUid传业务id同时targetWindowUid传null。