Commit c433b93d by linboxuan

lin pannong

parent 39f9b570
...@@ -188,7 +188,7 @@ class utils360Sve extends AppServiceBase { ...@@ -188,7 +188,7 @@ class utils360Sve extends AppServiceBase {
clientIp: req.client_ip || "", clientIp: req.client_ip || "",
optitle: "服务单处理反馈接收接口" optitle: "服务单处理反馈接收接口"
}); });
return result; return system.getResultSuccess(result);
case "accountingInfo": case "accountingInfo":
var url = settings.pannongUrl() + "pas-api/gsb/service/accountingInfo"; var url = settings.pannongUrl() + "pas-api/gsb/service/accountingInfo";
var result = await this.restPostUrl(obj, url); var result = await this.restPostUrl(obj, url);
...@@ -198,7 +198,7 @@ class utils360Sve extends AppServiceBase { ...@@ -198,7 +198,7 @@ class utils360Sve extends AppServiceBase {
clientIp: req.client_ip || "", clientIp: req.client_ip || "",
optitle: "回传会计信息" optitle: "回传会计信息"
}); });
return result; return system.getResultSuccess(result);
case "booksInfo": case "booksInfo":
var url = settings.pannongUrl() + "pas-api/gsb/service/booksInfo"; var url = settings.pannongUrl() + "pas-api/gsb/service/booksInfo";
var result = await this.restPostUrl(obj, url); var result = await this.restPostUrl(obj, url);
...@@ -208,7 +208,7 @@ class utils360Sve extends AppServiceBase { ...@@ -208,7 +208,7 @@ class utils360Sve extends AppServiceBase {
clientIp: req.client_ip || "", clientIp: req.client_ip || "",
optitle: "帐套信息接受接口" optitle: "帐套信息接受接口"
}); });
return result; return system.getResultSuccess(result);
default: default:
return system.getResult(null, "actionType参数错误"); return system.getResult(null, "actionType参数错误");
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment