@@ -399,6 +399,12 @@ namespace Hotline.Api.Controllers
{
model.TelNo = model.CPN;
}
+ //判断是否是内部通话(目前分机都为4位)
+ if (model.CPN.Length==4 && model.CDPN.Length ==4) //是内部通话
+ {
+ model.TelNo = model.CDPN;//如果是内部通话 响应分机为被叫号码
+ }
+
//获取关联 工单或是回访
var order = await _orderRepository.GetAsync(x => x.CallId == model.CallAccept, HttpContext.RequestAborted);