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
46937536
Commit
46937536
authored
Sep 15, 2020
by
王栋源
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'center-channel' of gitlab.gongsibao.com:jiangyong/zhichan into center-channel
parents
f7de7454
2f1550c2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
25 additions
and
15 deletions
+25
-15
center-channel/app/base/api/impl/action/patentQuery.js
+15
-15
center-channel/app/base/api/impl/opreceive/need.js
+3
-0
center-channel/app/base/service/impl/utilsSve/utilsNeedSve.js
+7
-0
No files found.
center-channel/app/base/api/impl/action/patentQuery.js
View file @
46937536
...
@@ -31,21 +31,21 @@ class PatentQueryAPI extends WEBBase {
...
@@ -31,21 +31,21 @@ class PatentQueryAPI extends WEBBase {
case
"test"
:
//测试
case
"test"
:
//测试
opResult
=
system
.
getResultSuccess
(
null
,
"测试成功"
);
opResult
=
system
.
getResultSuccess
(
null
,
"测试成功"
);
break
;
break
;
case
"CommomSearchbyApplicant"
:
//根据申请人查询聚合
case
"CommomSearchbyApplicant"
:
//根据申请人查询聚合
case
"paCountByApplicantName"
:
//根据申请人获取专利量
case
"paCountByApplicantName"
:
//根据申请人获取专利量
case
"paShortListByApplicantName"
:
//根据申请人获取专利详情列表
case
"paShortListByApplicantName"
:
//根据申请人获取专利详情列表
case
"paDetailsBypubNo"
:
//根据公开或授权号获取专利详情列表
case
"paDetailsBypubNo"
:
//根据公开或授权号获取专利详情列表
case
"paDetailsByfilingNo"
:
//根据申请号获取专利详情列表
case
"paDetailsByfilingNo"
:
//根据申请号获取专利详情列表
case
"softwareCountByAuthor"
:
//根据公司名称得到软著量
case
"softwareCountByAuthor"
:
//根据公司名称得到软著量
case
"softwareListByAuthor"
:
//根据公司名称得到软著详情
case
"softwareListByAuthor"
:
//根据公司名称得到软著详情
case
"softwareDetailsByregNum"
:
//根据登记号获取软著详情
case
"softwareDetailsByregNum"
:
//根据登记号获取软著详情
case
"worksCountByAuthor"
:
//根据公司名称得到著作权量
case
"worksCountByAuthor"
:
//根据公司名称得到著作权量
case
"worksListByAuthor"
:
//根据公司名称得到著作权详情
case
"worksListByAuthor"
:
//根据公司名称得到著作权详情
case
"worksDetailsByregNum"
:
//根据登记号获取著作权详情
case
"worksDetailsByregNum"
:
//根据登记号获取著作权详情
case
"CommomSearchbyTitle"
:
//根据标题查询聚合
case
"CommomSearchbyTitle"
:
//根据标题查询聚合
case
"CommomSearchby
Filingno"
:
//根据申请号
查询聚合
case
"CommomSearchby
Inventor"
:
//根据发明人
查询聚合
case
"CommomSearchby
Pubno"
:
//根据公开
号查询聚合
case
"CommomSearchby
Filingno"
:
//根据申请
号查询聚合
case
"CommomSearchby
Inventor"
:
//根据发明人
查询聚合
case
"CommomSearchby
Pubno"
:
//根据公开号
查询聚合
opResult
=
await
this
.
patentSve
.
opReqResult
(
pobj
,
req
);
opResult
=
await
this
.
patentSve
.
opReqResult
(
pobj
,
req
);
break
;
break
;
default
:
default
:
...
...
center-channel/app/base/api/impl/opreceive/need.js
View file @
46937536
...
@@ -85,6 +85,9 @@ class Need extends APIBase {
...
@@ -85,6 +85,9 @@ class Need extends APIBase {
case
"confirmIcpIntention"
:
// 2020 0827 lin 新增 4.3 用户需求确认
case
"confirmIcpIntention"
:
// 2020 0827 lin 新增 4.3 用户需求确认
opResult
=
await
this
.
utilsNeedSve
.
confirmIcpIntention
(
pobj
,
pobj
.
actionBody
);
opResult
=
await
this
.
utilsNeedSve
.
confirmIcpIntention
(
pobj
,
pobj
.
actionBody
);
break
;
break
;
case
"needBatchUpload"
:
// 2020 0827 lin 新增 4.3 用户需求确认
opResult
=
await
this
.
utilsNeedSve
.
needBatchUpload
(
pobj
,
pobj
.
actionBody
);
break
;
case
"testsymq"
:
case
"testsymq"
:
opResult
=
await
this
.
utilsNeedSve
.
testsymq
(
pobj
);
opResult
=
await
this
.
utilsNeedSve
.
testsymq
(
pobj
);
break
;
break
;
...
...
center-channel/app/base/service/impl/utilsSve/utilsNeedSve.js
View file @
46937536
...
@@ -613,6 +613,13 @@ class UtilsNeedService extends AppServiceBase {
...
@@ -613,6 +613,13 @@ class UtilsNeedService extends AppServiceBase {
}
}
}
}
}
}
// 2020 0914 lin 新增 刷单一条龙功能
async
needBatchUpload
(
pobj
,
actionBody
)
{
for
(
var
i
=
0
;
i
<
actionBody
.
demands
;
i
++
)
{
}
}
async
testsymq
(
pobj
)
{
async
testsymq
(
pobj
)
{
var
a
=
null
;
var
a
=
null
;
try
{
try
{
...
...
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