|
@@ -270,6 +270,7 @@ public class GRPCController extends BaseController {
|
|
|
if(!Objects.isNull(reportDate) && module != 1){
|
|
|
//智能工单需要传入一个时间的参数
|
|
|
try {
|
|
|
+ outputStream = response.getOutputStream();
|
|
|
outputStream.write(CHAT_ERROR_MSG.getBytes());
|
|
|
outputStream.flush();
|
|
|
} catch (IOException e) {
|
|
@@ -294,6 +295,7 @@ public class GRPCController extends BaseController {
|
|
|
if(CollectionUtils.isEmpty(tXinyiDailiesNow) || CollectionUtils.isEmpty(tXinyiDailiesBefore)){
|
|
|
//没有查询到数据
|
|
|
try {
|
|
|
+ outputStream = response.getOutputStream();
|
|
|
outputStream.write(CHAT_GONGDAN_ERROR_MSG.getBytes());
|
|
|
outputStream.flush();
|
|
|
} catch (IOException e) {
|