Commit 46937536 by 王栋源

Merge branch 'center-channel' of gitlab.gongsibao.com:jiangyong/zhichan into center-channel

parents f7de7454 2f1550c2
...@@ -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 "CommomSearchbyFilingno": //根据申请号查询聚合 case "CommomSearchbyInventor"://根据发明人查询聚合
case "CommomSearchbyPubno": //根据公开号查询聚合 case "CommomSearchbyFilingno"://根据申请号查询聚合
case "CommomSearchbyInventor": //根据发明人查询聚合 case "CommomSearchbyPubno"://根据公开号查询聚合
opResult = await this.patentSve.opReqResult(pobj, req); opResult = await this.patentSve.opReqResult(pobj, req);
break; break;
default: default:
......
...@@ -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;
......
...@@ -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 {
......
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