diff --git a/htmlweb/web/backstage/oa/ocr/information/add.html b/htmlweb/web/backstage/oa/ocr/information/add.html
index 86474eef..20922583 100644
--- a/htmlweb/web/backstage/oa/ocr/information/add.html
+++ b/htmlweb/web/backstage/oa/ocr/information/add.html
@@ -36,9 +36,9 @@
diff --git a/htmlweb/web/backstage/oa/ocr/information/edit.html b/htmlweb/web/backstage/oa/ocr/information/edit.html
index e3aa7210..e12306f0 100644
--- a/htmlweb/web/backstage/oa/ocr/information/edit.html
+++ b/htmlweb/web/backstage/oa/ocr/information/edit.html
@@ -37,9 +37,9 @@
diff --git a/htmlweb/web/backstage/oa/ocr/information/list.html b/htmlweb/web/backstage/oa/ocr/information/list.html
index 9b3c45ed..2ee64d19 100644
--- a/htmlweb/web/backstage/oa/ocr/information/list.html
+++ b/htmlweb/web/backstage/oa/ocr/information/list.html
@@ -21,9 +21,9 @@
@@ -70,7 +70,7 @@
$("#_mybutton").append(' ');
}
});
- _tableListPost = $('#Post_list').bootstrapTable({
+ _tableListCommontword = $('#Post_list').bootstrapTable({
url: '${ctx}/ocr/field/page',
pagination: true, //是否显示分页(*)
pageNumber:1, //初始化加载第一页,默认第一页
@@ -101,13 +101,13 @@
formatter:function(value,oData,index) {
var listOperation = "";
if(oData.reviewType == 0){
- listOperation = "终审";
+ listOperation = "任务终审";
}
else if(oData.reviewType == 1) {
- listOperation = "工单";
+ listOperation = "图鉴审批";
}
else if(oData.reviewType == 2) {
- listOperation = "一审二审";
+ listOperation = "任务审核";
}
else{
listOperation = "审核填报";
diff --git a/htmlweb/web/backstage/oa/ocr/picturelog/list.html b/htmlweb/web/backstage/oa/ocr/picturelog/list.html
index a8dbdf89..eb1a2584 100644
--- a/htmlweb/web/backstage/oa/ocr/picturelog/list.html
+++ b/htmlweb/web/backstage/oa/ocr/picturelog/list.html
@@ -69,7 +69,7 @@
$("#_mybutton").append(' ');
}
});
- _tableListPost = $('#Post_list').bootstrapTable({
+ _tableListCommontword = $('#Post_list').bootstrapTable({
url: '${ctx}/ocr/picturelog/page',
pagination: true, //是否显示分页(*)
pageNumber:1, //初始化加载第一页,默认第一页
@@ -88,8 +88,6 @@
callStatus: $("#callStatus").val(),
callTimeStart: params.callTimeStart,
callTimeEnd: params.callTimeEnd,
- //search_callStatus:'{"value":"' + $("#search_callStatus").val() + '","op":"equal","type":"string"}',
- //search_callTime:'{"value":"' + $("#search_callTime").val() + '","op":"equal","type":"string"}',
};
},
responseHandler:function(res){
diff --git a/jyjz-system/jyjz-system-oa/src/main/java/cn/jyjz/xiaoyao/ocr/util/ImageClassUtil.java b/jyjz-system/jyjz-system-oa/src/main/java/cn/jyjz/xiaoyao/ocr/util/ImageClassUtil.java
index 0f2cc342..73f2d956 100644
--- a/jyjz-system/jyjz-system-oa/src/main/java/cn/jyjz/xiaoyao/ocr/util/ImageClassUtil.java
+++ b/jyjz-system/jyjz-system-oa/src/main/java/cn/jyjz/xiaoyao/ocr/util/ImageClassUtil.java
@@ -95,15 +95,15 @@ public class ImageClassUtil {
JSONObject jsonObjectSimi = JSON.parseObject(responseDataVi);
if (null != jsonObjectSimi && jsonObjectSimi.getString("code").equals("0") && jsonObjectSimi.get("data") != null && jsonObjectSimi.getJSONArray("data").size() > 0) {
ocrPictureLog.setCallStatus("1");
- ocrPictureLog.setCallMsg("req:"+jsonObjectVi.toJSONString()+"\nrep:"+responseDataVi);
+ ocrPictureLog.setCallMsg("请求信息:"+jsonObjectVi.toJSONString()+"\n响应信息:"+responseDataVi);
} else {
ocrPictureLog.setCallStatus("2");
- ocrPictureLog.setCallMsg("req:"+jsonObjectVi.toJSONString()+"\nrep:"+responseDataVi);
+ ocrPictureLog.setCallMsg("请求信息:"+jsonObjectVi.toJSONString()+"\n响应信息:"+responseDataVi);
}
} catch (Exception e) {
logger.error("classify={}", e);
ocrPictureLog.setCallStatus("3");
- ocrPictureLog.setCallMsg("req:"+jsonObjectVi.toJSONString()+"\nrep:"+responseDataVi+"Exception:"+e.getMessage());
+ ocrPictureLog.setCallMsg("请求信息:"+jsonObjectVi.toJSONString()+"\n响应信息:"+responseDataVi+"Exception:"+e.getMessage());
} finally {
ApplicationContext applicationContext = SpringUtil.getApplicationContext();
OcrPictureLogService ocrPictureLogService = applicationContext.getBean(OcrPictureLogService.class);