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
38ee957b
Commit
38ee957b
authored
Mar 17, 2020
by
庄冰
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ic2
parent
de29e016
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
127 additions
and
1 deletions
+127
-1
center-channel/app/base/service/impl/common/centerorderSve.js
+1
-0
center-channel/app/front/entry/public/apidoc/platform/icbcOrder.md
+126
-1
No files found.
center-channel/app/base/service/impl/common/centerorderSve.js
View file @
38ee957b
...
...
@@ -52,6 +52,7 @@ class CenterorderService{
solutionBizId
:
res
.
data
.
channelNeedNo
,
note
:
pobj
.
actionBody
.
note
||
""
};
// var pushRes = await this.aliclient.reqbyget({action:"",reqbody:pushObj});
return
system
.
getResultSuccess
();
}
return
res
;
}
...
...
center-channel/app/front/entry/public/apidoc/platform/icbcOrder.md
View file @
38ee957b
<a
name=
"menu"
href=
"/doc"
>
返回主目录
</a>
1.
[
获取工商订单交付流程信息
](
#getIcbcOrderDeliveryFlowInfo
)
1.
[
提交公司注册方案
](
#submitProgramme
)
1.
[
根据需求产看方案详情
](
#getProgrammeInfoByNeedNo
)
1.
[
服务商方案作废
](
#abolishProgramme
)
## **<a name="getIcbcOrderDeliveryFlowInfo"> 获取工商订单交付流程信息</a>**
[
返回到目录
](
#menu
)
...
...
@@ -48,3 +50,126 @@
}
```
## **<a name="submitProgramme"> 提交公司注册方案</a>**
[
返回到目录
](
#menu
)
##### URL
[
/web/action/icapi/springBoard
]
#### 参数格式 `JSON`
#### HTTP请求方式 `POST`
#### 请求头中需要增加userpin(用户登录后的凭证)的值
#### 渠道执行的类型 actionType:submitProgramme
```
javascript
{
"actionType"
:
"submitProgramme"
,
"actionBody"
:{
"needNo"
:
"N202002141324bupnr8L"
,
"solutionContent"
:{
"bizType"
:
"companyreg"
,
"notes"
:
"方案备注"
,
"solution"
:{
//公司注册方案
"entName"
:
"公司名称"
,
"province"
:
"省"
,
"city"
:
"市"
,
"taxpayerType"
:
"纳税人类型"
,
"entNature"
:
"公司性质"
,
"organizationType"
:
"组织类型"
,
"industry"
:
"行业"
,
"businessScope"
:
"经营范围"
,
//云上公司注册方案
"regPark"
:
"注册园区"
,
"regType"
:
"注册类型"
,
"productType"
:
"产品类型"
}
}
}
}
```
#### 返回结果
```
javascript
{
"status"
:
0
,
// 0为成功,否则失败
"msg"
:
"success"
,
"data"
:
null
,
"requestId"
:
"a277fb799d9f4dda9053fb8830f9d252"
}
```
## **<a name="getProgrammeInfoByNeedNo"> 根据需求产看方案详情</a>**
[
返回到目录
](
#menu
)
##### URL
[
/web/action/icapi/springBoard
]
#### 参数格式 `JSON`
#### HTTP请求方式 `POST`
#### 请求头中需要增加userpin(用户登录后的凭证)的值
#### 渠道执行的类型 actionType:getProgrammeInfoByNeedNo
```
javascript
{
"actionType"
:
"getProgrammeInfoByNeedNo"
,
"actionBody"
:{
"needNo"
:
"N202002141324bupnr8L"
}
}
```
#### 返回结果
```
javascript
{
"status"
:
0
,
"msg"
:
"success"
,
"data"
:[
{
"needNo"
:
"N202002141324bupnr8L"
,
"solutionNo"
:
"NS202003161734ay0SzH"
,
"orderNo"
:
null
,
"solutionContent"
:{
"bizType"
:
"companyreg"
,
"solution"
:{
}
},
"status"
:
"yzf"
,
"statusName"
:
"已作废"
}
],
"requestId"
:
"4302ecc284e747a990e4ad61d8236b60"
}
```
## **<a name="abolishProgramme"> 服务商方案作废</a>**
[
返回到目录
](
#menu
)
##### URL
[
/web/action/icapi/springBoard
]
#### 参数格式 `JSON`
#### HTTP请求方式 `POST`
#### 请求头中需要增加userpin(用户登录后的凭证)的值
#### 渠道执行的类型 actionType:abolishProgramme
```
javascript
{
"actionType"
:
"abolishProgramme"
,
"actionBody"
:{
"solutionNo"
:
"NS202003161734ay0SzH"
}
}
```
#### 返回结果
```
javascript
{
"status"
:
0
,
// 0为成功,否则失败
"msg"
:
"success"
,
"data"
:
null
,
"requestId"
:
"a277fb799d9f4dda9053fb8830f9d252"
}
```
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