Commit b33aba45 by linboxuan

add writeCommunicationLog notes

parent 0ccaddcd
...@@ -182,6 +182,7 @@ class NeedinfoService extends ServiceBase { ...@@ -182,6 +182,7 @@ class NeedinfoService extends ServiceBase {
if(!needRes) { if(!needRes) {
return system.getResult("没有这个需求单"); return system.getResult("没有这个需求单");
} }
// 有需求单但没有沟通记录 直接set
if(!needRes.followContent) { if(!needRes.followContent) {
var sql = "update n_need_info set followContent=JSON_OBJECT(:followContent) where channelNeedNo=:BizId" var sql = "update n_need_info set followContent=JSON_OBJECT(:followContent) where channelNeedNo=:BizId"
var paramWhere = { var paramWhere = {
...@@ -193,6 +194,7 @@ class NeedinfoService extends ServiceBase { ...@@ -193,6 +194,7 @@ class NeedinfoService extends ServiceBase {
return system.getResultSuccess(); return system.getResultSuccess();
} }
return system.getResult("添加记录失败"); return system.getResult("添加记录失败");
// 有需求单有沟通记录 json_array_append
} else { } else {
var sql = "update n_need_info set followContent=json_array_append(followContent, '$', JSON_OBJECT(:Note)) where channelNeedNo=:BizId" var sql = "update n_need_info set followContent=json_array_append(followContent, '$', JSON_OBJECT(:Note)) where channelNeedNo=:BizId"
// var sql = "update n_need_info set followContent=json_array_append(followContent, '$', "+ "\"" + JSON.stringify(actionBody.Note) + "\""+") where channelNeedNo="+ "\"" +actionBody.BizId +"\"" +" " // var sql = "update n_need_info set followContent=json_array_append(followContent, '$', "+ "\"" + JSON.stringify(actionBody.Note) + "\""+") where channelNeedNo="+ "\"" +actionBody.BizId +"\"" +" "
......
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