Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Z
zhichan
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
蒋勇
zhichan
Commits
f738b05e
Commit
f738b05e
authored
Mar 22, 2021
by
宋毅
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'center-channel' of gitlab.gongsibao.com:jiangyong/zhichan into center-channel
parents
635f5f65
18dac646
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
527 additions
and
33 deletions
+527
-33
center-channel/app/base/api/impl/opreceive/need.js
+10
-0
center-channel/app/base/api/impl/tm/consultation.js
+93
-0
center-channel/app/base/api/impl/tm/feedback.js
+68
-0
center-channel/app/base/api/impl/tm/status.js
+68
-0
center-channel/app/base/api/impl/tm/tmcase.js
+83
-0
center-channel/app/base/service/app.base.js
+0
-0
center-channel/app/base/service/impl/common/baseCenterOrderSve.js
+5
-1
center-channel/app/base/service/impl/utilsSve/utilsNeedSve.js
+120
-0
center-channel/app/base/service/impl/utilsSve/utilsPushSve.js
+22
-0
center-channel/app/base/service/impl/utilsSve/utilsTmOrderCallSve.js
+2
-2
center-channel/app/base/utils/dingClient.js
+50
-29
center-channel/app/config/businessConfig.js
+6
-1
No files found.
center-channel/app/base/api/impl/opreceive/need.js
View file @
f738b05e
...
...
@@ -130,6 +130,16 @@ class Need extends APIBase {
case
"getymicpProduce"
:
//获取易名的icp产品信息
opResult
=
await
this
.
centerorderSve
.
getymicpProduce
(
pobj
);
break
;
//百度商标接入
case
"submitTmNeed"
:
//提交需求
opResult
=
await
this
.
utilsNeedSve
.
submitTmNeed
(
pobj
,
pobj
.
actionBody
);
break
;
case
"tmFeedbackSubmit"
:
//商标用户反馈
opResult
=
await
this
.
utilsNeedSve
.
tmFeedbackSubmit
(
pobj
);
break
;
case
"tmStatusNotify"
:
//商标状态通知
opResult
=
await
this
.
utilsNeedSve
.
tmStatusNotify
(
pobj
);
break
;
default
:
opResult
=
system
.
getResult
(
null
,
"action_type参数错误"
);
break
;
...
...
center-channel/app/base/api/impl/tm/consultation.js
0 → 100644
View file @
f738b05e
var
APIBase
=
require
(
"../../api.base"
);
var
system
=
require
(
"../../../system"
);
var
settings
=
require
(
"../../../../config/settings"
);
const
uuidv4
=
require
(
'uuid/v4'
);
/**
* 商标需求
* 庄冰 2021.03.17
*/
class
Consultation
extends
APIBase
{
constructor
()
{
super
();
this
.
gatewaypushlogSve
=
system
.
getObject
(
"service.common.gatewaypushlogSve"
);
}
getUUID
()
{
var
uuid
=
uuidv4
();
var
u
=
uuid
.
replace
(
/
\-
/g
,
""
);
return
u
;
}
getResultSuccess
(
requestId
)
{
return
{
"status"
:
0
,
"msg"
:
"success"
,
"data"
:
null
,
"requestId"
:
requestId
};
}
getResultFail
(
errmsg
)
{
var
self
=
this
;
return
{
"status"
:
-
1
,
"msg"
:
errmsg
,
"requestId"
:
self
.
getUUID
(),
"data"
:
null
,
"bizmsg"
:
"empty"
};
}
//需求提交
async
submit
(
pobj
,
obj
,
req
)
{
var
self
=
this
;
if
(
!
pobj
.
appInfo
||
!
pobj
.
appInfo
.
uapp_key
||
!
pobj
.
appInfo
.
uapp_secret
){
return
self
.
getResultFail
(
"未知应用或应用未启用"
);
}
if
(
!
pobj
.
intentionBizId
)
{
return
self
.
getResultFail
(
"intentionBizId不能为空"
);
}
if
(
!
pobj
.
phone
)
{
return
self
.
getResultFail
(
"phone不能为空"
);
}
if
(
!
pobj
.
consultType
)
{
return
self
.
getResultFail
(
"consultType不能为空"
);
}
pobj
.
type
=
pobj
.
consultType
;
pobj
.
mobile
=
pobj
.
phone
;
pobj
.
action_type
=
"submitTmNeed"
;
var
param
=
{
requestId
:
req
.
requestId
||
self
.
getUUID
(),
requestUrl
:
pobj
.
appInfo
.
app_code
+
"/tm/consultation/submit"
,
requestjson
:
JSON
.
stringify
(
pobj
),
//请求地址
pushUrl
:
"/action/intentionapi/springBoard"
,
//调用地址
pushActionType
:
"submitTmNeed"
,
//调用参数
pushtimes
:
0
,
//推送次数
pushStatus
:
"wts"
,
//推送状态
}
await
self
.
gatewaypushlogSve
.
create
(
param
);
return
self
.
getResultSuccess
(
param
.
requestId
);
}
/**
* 需求关闭CloseTradeMarkProduct
* @param {*} pobj
* @param {*} obj
* @param {*} req
*/
async
close
(
pobj
,
obj
,
req
){
if
(
!
pobj
.
IntentionBizId
)
{
return
self
.
getResultFail
(
"IntentionBizId不能为空"
);
}
var
reqUrl
=
settings
.
centerOrderUrl
()
+
"action/opNeed/springBoard"
;
var
reqObj
=
{
actionType
:
"opNeedClose"
,
actionBody
:{
needNo
:
pobj
.
IntentionBizId
},
appInfo
:
pobj
.
appInfo
}
var
result
=
await
this
.
utilsNeedSve
.
restPostUrl
(
reqObj
,
reqUrl
);
return
result
;
}
}
module
.
exports
=
Consultation
;
\ No newline at end of file
center-channel/app/base/api/impl/tm/feedback.js
0 → 100644
View file @
f738b05e
var
APIBase
=
require
(
"../../api.base"
);
var
system
=
require
(
"../../../system"
);
var
settings
=
require
(
"../../../../config/settings"
);
const
uuidv4
=
require
(
'uuid/v4'
);
/**
* 商标通知接口
* 庄冰 2021.03.17
*/
class
Feedback
extends
APIBase
{
constructor
()
{
super
();
this
.
gatewaypushlogSve
=
system
.
getObject
(
"service.common.gatewaypushlogSve"
);
}
getUUID
()
{
var
uuid
=
uuidv4
();
var
u
=
uuid
.
replace
(
/
\-
/g
,
""
);
return
u
;
}
getResultSuccess
(
requestId
)
{
return
{
"status"
:
0
,
"msg"
:
"success"
,
"data"
:
null
,
"requestId"
:
requestId
};
}
getResultFail
(
errmsg
)
{
var
self
=
this
;
return
{
"status"
:
-
1
,
"msg"
:
errmsg
,
"requestId"
:
self
.
getUUID
(),
"data"
:
null
,
"bizmsg"
:
"empty"
};
}
//需求反馈
async
submit
(
pobj
,
obj
,
req
)
{
var
self
=
this
;
if
(
!
pobj
.
appInfo
||
!
pobj
.
appInfo
.
uapp_key
||
!
pobj
.
appInfo
.
uapp_secret
){
return
self
.
getResultFail
(
"未知应用或应用未启用"
);
}
if
(
!
pobj
.
intentionBizId
)
{
return
self
.
getResultFail
(
"intentionBizId不能为空"
);
}
if
(
!
pobj
.
description
)
{
return
self
.
getResultFail
(
"description不能为空"
);
}
pobj
.
action_type
=
"tmFeedbackSubmit"
;
var
param
=
{
requestId
:
req
.
requestId
||
self
.
getUUID
(),
requestUrl
:
pobj
.
appInfo
.
app_code
+
"/tm/feedback/submit"
,
requestjson
:
JSON
.
stringify
(
pobj
),
//请求地址
pushUrl
:
"/action/intentionapi/springBoard"
,
//调用地址
pushActionType
:
"tmFeedbackSubmit"
,
//调用参数
pushtimes
:
0
,
//推送次数
pushStatus
:
"wts"
,
//推送状态
}
await
self
.
gatewaypushlogSve
.
create
(
param
);
return
self
.
getResultSuccess
(
param
.
requestId
);
}
}
module
.
exports
=
Feedback
;
\ No newline at end of file
center-channel/app/base/api/impl/tm/status.js
0 → 100644
View file @
f738b05e
var
APIBase
=
require
(
"../../api.base"
);
var
system
=
require
(
"../../../system"
);
var
settings
=
require
(
"../../../../config/settings"
);
const
uuidv4
=
require
(
'uuid/v4'
);
/**
* tm通知接口
* 庄冰 2021.03.18
*/
class
Order
extends
APIBase
{
constructor
()
{
super
();
this
.
gatewaypushlogSve
=
system
.
getObject
(
"service.common.gatewaypushlogSve"
);
}
getUUID
()
{
var
uuid
=
uuidv4
();
var
u
=
uuid
.
replace
(
/
\-
/g
,
""
);
return
u
;
}
getResultSuccess
(
requestId
)
{
return
{
"status"
:
0
,
"msg"
:
"success"
,
"data"
:
null
,
"requestId"
:
requestId
};
}
getResultFail
(
errmsg
)
{
var
self
=
this
;
return
{
"status"
:
-
1
,
"msg"
:
errmsg
,
"requestId"
:
self
.
getUUID
(),
"data"
:
null
,
"bizmsg"
:
"empty"
};
}
//状态变更
async
notify
(
pobj
,
obj
,
req
)
{
var
self
=
this
;
if
(
!
pobj
.
appInfo
||
!
pobj
.
appInfo
.
uapp_key
||
!
pobj
.
appInfo
.
uapp_secret
){
return
self
.
getResultFail
(
"未知应用或应用未启用"
);
}
if
(
!
pobj
.
bizId
)
{
return
self
.
getResultFail
(
"bizId不能为空"
);
}
if
(
!
pobj
.
status
)
{
return
self
.
getResultFail
(
"status不能为空"
);
}
pobj
.
action_type
=
"tmStatusNotify"
;
var
param
=
{
requestId
:
req
.
requestId
||
self
.
getUUID
(),
requestUrl
:
pobj
.
appInfo
.
app_code
+
"/tm/status/notify"
,
requestjson
:
JSON
.
stringify
(
pobj
),
//请求地址
pushUrl
:
"/action/intentionapi/springBoard"
,
//调用地址
pushActionType
:
"tmStatusNotify"
,
//调用参数
pushtimes
:
0
,
//推送次数
pushStatus
:
"wts"
,
//推送状态
}
await
self
.
gatewaypushlogSve
.
create
(
param
);
return
self
.
getResultSuccess
(
param
.
requestId
);
}
}
module
.
exports
=
Order
;
\ No newline at end of file
center-channel/app/base/api/impl/tm/tmcase.js
0 → 100644
View file @
f738b05e
var
APIBase
=
require
(
"../../api.base"
);
var
system
=
require
(
"../../../system"
);
var
settings
=
require
(
"../../../../config/settings"
);
const
uuidv4
=
require
(
'uuid/v4'
);
/**
* 商标方案信息(接收fqboss推送的商标方案信息,并推送至渠道)
* 庄冰 2021.03.18
*/
class
Tmcase
extends
APIBase
{
constructor
()
{
super
();
this
.
utilsNeedSve
=
system
.
getObject
(
"service.utilsSve.utilsNeedSve"
);
this
.
baseUrl
=
settings
.
centerOrderUrl
()
+
"notifyaction/opNeedSolution/"
}
async
updateTmStatus
(
pobj
,
qobj
,
req
)
{
var
reqUrl
=
this
.
baseUrl
+
"updateTmStatus"
;
var
result
=
await
this
.
utilsNeedSve
.
restPostUrl
(
pobj
,
reqUrl
);
return
result
;
}
//接收辅助、担保商标注册信息
async
nbtzreceiveAssistTmData
(
pobj
,
qobj
,
req
)
{
var
reqUrl
=
this
.
baseUrl
+
"nbtzreceiveAssistTmData"
;
var
result
=
await
this
.
utilsNeedSve
.
restPostUrl
(
pobj
,
reqUrl
);
if
(
result
&&
result
.
status
==
0
){
await
this
.
pushData2Platform
()
}
return
result
;
}
//接收辅助、担保商标注册修改信息
async
nbtzreceiveEditAssistTmData
(
pobj
,
qobj
,
req
)
{
var
reqUrl
=
this
.
baseUrl
+
"nbtzreceiveEditAssistTmData"
;
var
result
=
await
this
.
utilsNeedSve
.
restPostUrl
(
pobj
,
reqUrl
);
return
result
;
}
//提交方案确认
async
submitTmConfirm
(
pobj
,
qobj
,
req
)
{
if
(
!
pobj
.
IntentionBizId
)
{
return
self
.
getResultFail
(
"IntentionBizId不能为空"
);
}
var
reqUrl
=
this
.
baseUrl
+
"nbtzreceiveEditAssistTmData"
;
var
result
=
await
this
.
utilsNeedSve
.
restPostUrl
(
pobj
,
reqUrl
);
return
result
;
}
/**
* 关闭注册⽅案
* @param {*} pobj
* @param {*} obj
* @param {*} req
*/
async
closeSolution
(
pobj
,
obj
,
req
){
if
(
!
pobj
.
BizId
)
{
return
self
.
getResultFail
(
"BizId不能为空"
);
}
if
(
!
pobj
.
IntentionBizId
)
{
return
self
.
getResultFail
(
"IntentionBizId不能为空"
);
}
var
reqUrl
=
this
.
baseUrl
+
"closeSolution"
;
var
result
=
await
this
.
utilsNeedSve
.
restPostUrl
(
pobj
,
reqUrl
);
return
result
;
}
/**
* 推送数据至平台方(百度、阿里)
* needSolution 需求方案
* appInfo app
* opflag 操作标志:QueryTradeIntentionUserList:查询需求列表,SaveTradeMarkProductSolution:提交注册⽅案-商标信息
* SaveTradeMarkMaterialDetail:补全注册⽅案-申请⼈信息 ConfirmTradeIntention:确认注册⽅案
*
*/
async
pushData2Platform
(
needSolution
,
appInfo
,
opflag
){
if
(
appInfo
.
uapp_id
==
18
){
//阿里云商机
}
if
(
appInfo
.
uapp_id
==
44
){
//百度云商机
}
}
}
module
.
exports
=
Tmcase
;
\ No newline at end of file
center-channel/app/base/service/app.base.js
View file @
f738b05e
This diff is collapsed.
Click to expand it.
center-channel/app/base/service/impl/common/baseCenterOrderSve.js
View file @
f738b05e
...
...
@@ -801,7 +801,11 @@ class BaseCenterOrderService extends AppServiceBase {
var
pushObj
=
{
BizId
:
res
.
data
.
BizId
,
OfficialFileURL
:
res
.
data
.
OfficialFileURL
,
ApplicationStatus
:
res
.
data
.
ApplicationStatus
ApplicationStatus
:
res
.
data
.
ApplicationStatus
,
//2021-3-18 addNew
CertificateNumber
:
res
.
data
.
CertificateNumber
||
""
,
//证书编号
CertificateStartTime
:
res
.
data
.
CertificateStartTime
||
""
,
//证书有效期 开始时间
CertificateEndTime
:
res
.
data
.
CertificateEndTime
||
""
//证书有效期 结束时间
};
//推送状态变更
var
ali
=
await
this
.
aliclient
.
reqbyget
({
action
:
"AcceptPartnerNotification"
,
reqbody
:
pushObj
,
apiVersion
:
"2019-05-08"
});
...
...
center-channel/app/base/service/impl/utilsSve/utilsNeedSve.js
View file @
f738b05e
...
...
@@ -123,6 +123,85 @@ class UtilsNeedService extends AppServiceBase {
return
result
;
}
/**
* 提交商标需求,对接百度云商标
* @param {*} pobj
* @param {*} actionBody
*/
async
submitTmNeed
(
pobj
,
actionBody
)
{
if
(
!
actionBody
.
type
&&
actionBody
.
consultType
)
actionBody
.
type
=
actionBody
.
consultType
if
(
!
actionBody
.
intentionBizId
)
{
return
system
.
getResult
(
null
,
"actionBody.intentionBizId can not be empty,100380"
);
}
var
sobj
=
pobj
;
sobj
.
actionType
=
"getProductTypeInfo"
;
var
url
=
settings
.
centerAppUrl
()
+
"action/opProduct/springBoard"
;
var
rtn
=
await
this
.
execClient
.
execPost
(
sobj
,
url
);
if
(
!
rtn
||
!
rtn
.
stdout
)
{
return
system
.
getResultFail
(
-
5015
,
"需求类型查询失败"
);
}
var
data
=
JSON
.
parse
(
rtn
.
stdout
);
if
(
data
.
status
!=
0
)
{
return
system
.
getResultFail
(
-
5015
,
"需求类型查询失败"
);
}
pobj
.
actionBody
.
type_code
=
data
.
data
.
type_code
;
pobj
.
actionBody
.
type_name
=
data
.
data
.
type_name
;
pobj
.
actionBody
.
channel_type_code
=
data
.
data
.
channel_type_code
;
pobj
.
actionBody
.
channel_type_name
=
data
.
data
.
channel_type_name
;
pobj
.
actionBody
.
type
=
pobj
.
actionBody
.
channel_type_code
;
pobj
.
actionBody
.
phone
=
pobj
.
actionBody
.
phone
||
pobj
.
actionBody
.
mobile
;
pobj
.
actionBody
.
appName
=
pobj
.
appInfo
.
app_name
;
pobj
.
actionBody
.
idempotentId
=
pobj
.
actionBody
.
intentionBizId
;
pobj
.
actionBody
.
idempotentSourceName
=
pobj
.
appInfo
.
app_name
;
if
(
pobj
.
actionBody
.
channel_type_code
==
5
)
{
pobj
.
actionBody
.
type
=
"ali.icp"
;
pobj
.
actionBody
.
idempotentSource
=
"icp_ali"
;
}
else
if
(
pobj
.
actionBody
.
channel_type_code
==
7
)
{
pobj
.
actionBody
.
type
=
"ali.edi"
;
pobj
.
actionBody
.
idempotentSource
=
"edi_ali"
;
}
else
if
(
pobj
.
actionBody
.
channel_type_code
==
"tmjy"
)
{
pobj
.
actionBody
.
type
=
"ali.tmd"
;
pobj
.
actionBody
.
idempotentSource
=
"tmd_ali"
;
}
else
if
(
pobj
.
actionBody
.
channel_type_code
==
1
)
{
pobj
.
actionBody
.
type
=
"ali.tmd"
;
pobj
.
actionBody
.
idempotentSource
=
"tmd_ali"
;
}
else
if
(
pobj
.
actionBody
.
channel_type_code
==
2
)
{
pobj
.
actionBody
.
type
=
"ali.tm"
;
pobj
.
actionBody
.
idempotentSource
=
"tm_ali"
;
}
else
if
(
pobj
.
actionBody
.
channel_type_code
==
'esp.companyreg'
){
pobj
.
actionBody
.
type
=
"ali.ic"
;
pobj
.
actionBody
.
idempotentSource
=
"ic_ali"
;
}
else
if
(
pobj
.
actionBody
.
channel_type_code
==
'esp.companyreg_cloud'
){
pobj
.
actionBody
.
type
=
"ali.ic"
;
pobj
.
actionBody
.
idempotentSource
=
"ic_ali"
;
}
if
(
pobj
.
appInfo
.
uapp_id
==
'44'
){
//百度云
if
(
pobj
.
actionBody
.
channel_type_code
==
1
)
{
pobj
.
actionBody
.
type
=
"baidu.tmd"
;
pobj
.
actionBody
.
idempotentSource
=
"tmd_baidu"
;
}
else
if
(
pobj
.
actionBody
.
channel_type_code
==
2
)
{
pobj
.
actionBody
.
type
=
"baidu.tm"
;
pobj
.
actionBody
.
idempotentSource
=
"tm_baidu"
;
}
}
if
(
pobj
.
actionBody
.
description
&&
pobj
.
actionBody
.
description
.
indexOf
(
"备#"
)
<
0
)
{
pobj
.
actionBody
.
level
=
"A"
;
}
else
{
pobj
.
actionBody
.
level
=
"C"
}
if
(
pobj
.
actionBody
.
phone
==
"17319425791"
)
{
pobj
.
actionBody
.
level
=
"F"
;
}
pobj
.
actionType
=
"submitNeed"
;
var
reqUrl
=
this
.
centerOrderUrl
+
"action/need/springBoard"
;
var
result
=
await
this
.
restPostUrl
(
pobj
,
reqUrl
);
if
(
result
.
status
==
0
)
{
this
.
utilsPushSve
.
business2Fq
(
pobj
,
"pushNeedTMBusiness"
);
}
return
result
;
}
//调用center-order icp需求反馈
async
reqCenterOrderQcApi
(
pobj
,
reqUrl
)
{
...
...
@@ -157,6 +236,47 @@ class UtilsNeedService extends AppServiceBase {
return
data
;
}
//商标需求反馈
async
tmFeedbackSubmit
(
pobj
)
{
var
url
=
this
.
centerOrderUrl
+
"action/qcapi/springBoard"
;
var
self
=
this
;
pobj
.
actionType
=
"receiveIcpFeedback"
;
if
(
pobj
.
actionBody
&&
pobj
.
actionBody
.
intentionStatus
)
{
pobj
.
intentionStatus
=
pobj
.
actionBody
.
intentionStatus
;
}
var
rtn
=
await
this
.
execClient
.
execPost
(
pobj
,
url
);
var
data
=
JSON
.
parse
(
rtn
.
stdout
);
if
(
data
.
data
&&
(
data
.
data
.
channelTypeCode
==
1
||
data
.
data
.
channelTypeCode
==
2
))
{
//商标
pobj
.
actionBody
.
status
=
"888"
this
.
execPostUrl
({
"actionProcess"
:
"AliTm"
,
"appCode"
:
"100099"
,
"sign"
:
await
this
.
getFQbossSign
(
pobj
.
actionBody
),
actionBody
:
pobj
.
actionBody
},
settings
.
fqbossTmUrl
())
self
.
utilsPushSve
.
business2Fq
(
pobj
,
"pushTMFeedback"
);
}
return
data
;
}
//商标状态通知
async
tmStatusNotify
(
pobj
)
{
var
self
=
this
;
// 引用属性,channel依赖bizId order依赖intentionBizId
pobj
.
intentionBizId
=
pobj
.
bizId
var
sobj
=
{
"actionType"
:
"getItemByChannelSolutionNo"
,
"actionBody"
:
pobj
}
var
result
=
this
.
getItemByChannelSolutionNo
(
sobj
,
sobj
.
actionBody
);
if
(
result
.
status
==
0
)
{
let
pushres
=
await
this
.
execPostUrl
({
"actionProcess"
:
"AliTm"
,
"appCode"
:
"100099"
,
"sign"
:
await
this
.
getFQbossSign
(
pobj
),
actionBody
:
pobj
},
settings
.
fqbossTmUrl
())
console
.
log
(
"推送fqboos----->"
,
pushres
)
return
this
.
getResult
(
result
.
requestId
,
pushres
.
message
);
}
return
this
.
getResult
(
result
.
requestId
)
}
/**
* 提交需求-----del
* @param {*} pobj
...
...
center-channel/app/base/service/impl/utilsSve/utilsPushSve.js
View file @
f738b05e
...
...
@@ -76,6 +76,28 @@ class UtilsPushService extends AppServiceBase {
return
system
.
getResult
(
null
,
"push Fail,interface_info data is empty"
);
}
async
business2Fq
(
pobj
,
opType
)
{
//供业务调用,在代码中调用,不在db中做配置进行调用
pobj
.
actionType
=
"getAppInterface"
;
var
reqUrl
=
settings
.
centerAppUrl
()
+
"action/opProduct/springBoard"
;
var
productItemInterfaceResult
=
await
this
.
restPostUrl
(
pobj
,
reqUrl
);
pobj
.
interface_info
=
productItemInterfaceResult
.
data
;
//日志记录
this
.
logCtl
.
info
({
appid
:
pobj
.
appInfo
?
pobj
.
appInfo
.
uapp_id
||
""
:
""
,
appkey
:
pobj
.
appInfo
?
pobj
.
appInfo
.
uapp_key
||
""
:
""
,
requestId
:
pobj
.
requestId
||
""
,
op
:
"service/impl/utilsSve/utilsPushSve.js/service/app.base.js/business2Fq"
,
content
:
JSON
.
stringify
(
pobj
),
resultInfo
:
productItemInterfaceResult
.
data
?
JSON
.
stringify
(
productItemInterfaceResult
.
data
)
:
"接口数据为空"
,
optitle
:
pobj
.
opType
+
"推送蜂擎获取的接口信息->business2Fq"
,
});
if
(
pobj
.
interface_info
)
{
await
this
.
pushBusInfo
(
pobj
,
opType
,
1
);
return
system
.
getResultSuccess
();
}
return
system
.
getResult
(
null
,
"push Fail,interface_info data is empty"
);
}
async
pushBusInfo
(
pobj
,
opType
,
isDelProductInfo
)
{
//推送业务总入口,不在db中做配置进行调用
console
.
log
(
JSON
.
stringify
(
pobj
),
".......pushBusInfo........................."
+
opType
);
var
interface_list
=
pobj
.
interface_info
?
pobj
.
interface_info
:
pobj
.
actionBody
.
product_info
.
interface_info
;
...
...
center-channel/app/base/service/impl/utilsSve/utilsTmOrderCallSve.js
View file @
f738b05e
...
...
@@ -140,8 +140,8 @@ class UtilsTmOrderCallService extends AppServiceBase {
}
var
getjsonurl
=
settings
.
tmtransactionUrl
()
+
"/tmtransaction/action/trademarktransaction/springBoard"
var
jsonurl
=
await
this
.
restPostUrl
(
obj
,
getjsonurl
);
if
(
!
jsonurl
){
console
.
log
(
jsonurl
);
if
(
!
jsonurl
||
!
jsonurl
.
data
){
console
.
log
(
`createjsonfile返回错误,返回值:
${
jsonurl
}
`
);
return
system
.
getResultSuccess
();
}
var
upobj
=
{
...
...
center-channel/app/base/utils/dingClient.js
View file @
f738b05e
const
system
=
require
(
"../system"
);
class
dingClient
{
constructor
()
{
this
.
execClient
=
system
.
getObject
(
'util.execClient'
);
this
.
gatewayurl
=
"https://oapi.dingtalk.com/robot/send?access_token=2f1ada261ea84f6c621db487ac18d11eba8984202bd82adda8810770a8240572"
}
//推送峰擎异常提醒
async
gatewayPushError
(
err
)
{
if
(
process
.
env
.
APP_ENV
===
"prod"
)
{
let
c
=
`注意提醒:阿里->推送峰擎异常,老板们加油,加油,加油 !!!
${
JSON
.
stringify
(
err
)}
`
let
t
=
new
Date
().
toLocaleString
()
this
.
execClient
.
execPost
({
"msgtype"
:
"text"
,
"text"
:
{
"content"
:
t
+
c
}
},
this
.
gatewayurl
).
catch
(
alierr
=>
{
console
.
log
(
alierr
)
});
constructor
()
{
this
.
execClient
=
system
.
getObject
(
'util.execClient'
);
this
.
gatewayurl
=
"https://oapi.dingtalk.com/robot/send?access_token=2f1ada261ea84f6c621db487ac18d11eba8984202bd82adda8810770a8240572"
this
.
businessToFqUrl
=
"https://oapi.dingtalk.com/robot/send?access_token=9e215f0f1d77980ee6b39e88a82a7c6e5d290775f76d9a8346e97697f8df9788"
}
//推送峰擎异常提醒
async
gatewayPushError
(
err
)
{
if
(
process
.
env
.
APP_ENV
===
"prod"
)
{
let
c
=
`注意提醒:阿里->推送峰擎异常,老板们加油,加油,加油 !!!
${
JSON
.
stringify
(
err
)}
`
let
t
=
new
Date
().
toLocaleString
()
this
.
execClient
.
execPost
({
"msgtype"
:
"text"
,
"text"
:
{
"content"
:
t
+
c
}
},
this
.
gatewayurl
).
catch
(
alierr
=>
{
console
.
log
(
alierr
)
});
}
}
}
//渠道钉钉提醒
async
gatewayPushByChannel
(
orderNo
,
appInfo
){
let
gatewayUrl
=
setttings
.
dingRobotUrl
(
appInfo
.
uapp_id
);
if
(
settings
.
env
!=
"dev"
&&
gatewayUrl
)
{
let
c
=
`注意提醒:
${
appInfo
.
app_name
}
->有订单待处理,订单号
${
orderNo
}
,老板们加油,加油,加油 !!!`
let
t
=
new
Date
().
toLocaleString
()
this
.
execClient
.
execPost
({
"msgtype"
:
"text"
,
"text"
:
{
"content"
:
t
+
c
}
},
gatewayUrl
).
catch
(
err
=>
{
console
.
log
(
err
)
});
//渠道钉钉提醒
async
gatewayPushByChannel
(
orderNo
,
appInfo
)
{
let
gatewayUrl
=
setttings
.
dingRobotUrl
(
appInfo
.
uapp_id
);
if
(
settings
.
env
!=
"dev"
&&
gatewayUrl
)
{
let
c
=
`注意提醒:
${
appInfo
.
app_name
}
->有订单待处理,订单号
${
orderNo
}
,老板们加油,加油,加油 !!!`
let
t
=
new
Date
().
toLocaleString
()
this
.
execClient
.
execPost
({
"msgtype"
:
"text"
,
"text"
:
{
"content"
:
t
+
c
}
},
gatewayUrl
).
catch
(
err
=>
{
console
.
log
(
err
)
});
}
}
//渠道订单到峰擎--sku没有查询到
async
businessPushFqByChannel
(
params
)
{
if
(
process
.
env
.
APP_ENV
!=
"dev"
)
{
let
c
=
`注意提醒:
${
appInfo
.
app_name
}
->有订单待处理,渠道下sku查询不到,参数:
${
JSON
.
stringify
(
params
)}
,老板们加油,加油,加油 !!!`
let
t
=
new
Date
().
toLocaleString
()
this
.
execClient
.
execPost
({
"msgtype"
:
"text"
,
"text"
:
{
"content"
:
t
+
c
},
at
:
{
atMobiles
:
[
"13051727697"
,
"13453222948"
,
"18201231253"
]
//孟令强、王斌、郭峰
},
},
this
.
businessToFqUrl
).
catch
(
err
=>
{
console
.
log
(
err
)
});
}
}
}
}
module
.
exports
=
dingClient
;
center-channel/app/config/businessConfig.js
View file @
f738b05e
...
...
@@ -48,7 +48,12 @@ module.exports = {
"/api/ic/feedback/submit"
,
"/api/ic/order/notify"
,
"/api/ic/order/close"
,
"/api/ic/tool/icname"
"/api/ic/tool/icname"
,
"/api/tm/consultation/submit"
,
"/api/tm/feedback/submit"
,
"/api/tm/status/notify"
,
"/api/tm/tmcase/nbtzreceiveAssistTmData"
,
"/api/tm/tmcase/nbtzreceiveEditAssistTmData"
]
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment