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
530503f2
Commit
530503f2
authored
Apr 29, 2020
by
孙亚楠
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dd
parent
d16db55d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
114 additions
and
1 deletions
+114
-1
xgg-deliver/app/front/entry/public/apidoc/invoice/invoice.md
+114
-1
No files found.
xgg-deliver/app/front/entry/public/apidoc/invoice/invoice.md
View file @
530503f2
...
@@ -9,7 +9,8 @@
...
@@ -9,7 +9,8 @@
1.
[
审核失败
](
#deliverReject
)
1.
[
审核失败
](
#deliverReject
)
1.
[
交付商交付
](
#delivered
)
1.
[
交付商交付
](
#delivered
)
1.
[
查询详细信息
](
#invoice
)
1.
[
查询详细信息
](
#invoice
)
1.
[
发票开具
](
#deliveryAcceptance
)
1.
[
客户交付
](
#deliveryCustomer
)
## **<a name="processList"> 业务进度字典 </a>**
## **<a name="processList"> 业务进度字典 </a>**
[
返回到目录
](
#menu
)
[
返回到目录
](
#menu
)
##### URL
##### URL
...
@@ -545,4 +546,115 @@ status == 2020时,显示客户交付按钮
...
@@ -545,4 +546,115 @@ status == 2020时,显示客户交付按钮
"requestid"
:
"f6ed725fb64748c9a95227a7c6052942"
"requestid"
:
"f6ed725fb64748c9a95227a7c6052942"
}
}
```
## **<a name="deliveryAcceptance"> 发票开具 </a>**
[
返回到目录
](
#menu
)
##### URL
[
/web/invoice/invoiceCtl/handleStatus
]
#### 参数格式 `JSON`
#### HTTP请求方式 `POST`
#### 请求参数
#### 示例
#### 示例
```
javascript
{
"invoice_id"
:
"11855693476003245"
,
//发票ID
"status"
:
"2020"
,
//业务状态
"province"
:
"上海市"
,
//省份
"invoice_type"
:
"10"
,
//发票类型
"invoice_join"
:
"10"
,
//发票联次
"invoice_no"
:
"17485952652"
,
//发票编号
"invoice_number"
:
"NO 02995608"
,
//发票号码
"invoice_time"
:
"2020-03-10 00:00:00"
,
//开票时间
"merchant_name"
:
"汉唐信通(北京)科技有限公司"
,
//销售方名称
"merchant_credit_code"
:
"911101083066224948"
,
//销售方统一社会信用代码
"merchant_addr"
:
"北京市海淀区北清路164号17-27号院813号"
,
//销售方地址
"merchant_mobile"
:
"010-8492****"
,
//销售方电话
"merchant_bank"
:
"工商银行海淀区北清路支行"
,
//销售方银行
"merchant_account"
:
"gongsibao"
,
//销售方账户
"businessmen_credit_code"
:
"91110105MA00723E4F"
,
//购买方统一社会信用代码
"businessmen_name"
:
"北京创知厚德科技有限公司"
,
//购买方名称
"businessmen_addr"
:
"北京市朝阳区创远路36号院10号楼1层102"
,
//购买方地址
"businessmen_mobile"
:
"1331112****"
,
//购买方电话
"businessmen_bank"
:
"工商银行朝阳支行"
,
//购买方银行
"businessmen_account"
:
"chuangzhihoude"
,
//购买方账户
"summary"
:[
//摘要
{
"summaryType"
:
"企业管理服务"
,
"summaryInfo"
:
"市场推广"
,
"category"
:
"xxxxx"
,
"unit"
:
"元(人民币)"
,
"number"
:
"1000"
,
"unitPrice"
:
"100"
,
"amount"
:
"100000"
,
"taxRate"
:
"3%"
,
"taxAmount"
:
"3000"
}
]
}
```
#### 返回结果
| 参数名|数据类型| 说明 |
|---|:---:|---|
| status | Number | 状态码 |
| msg | String | 提示信息 |
| data | JSON | 返回值 |
#### 示例
```
javascript
{
"status"
:
0
,
"msg"
:
"操作成功"
,
"data"
:
"success"
,
"bizmsg"
:
"empty"
,
"requestid"
:
"f6ed725fb64748c9a95227a7c6052942"
}
```
## **<a name="deliveryCustomer"> 客户交付 </a>**
[
返回到目录
](
#menu
)
##### URL
[
/web/invoice/invoiceCtl/handleStatus
]
#### 参数格式 `JSON`
#### HTTP请求方式 `POST`
#### 请求参数
#### 示例
#### 示例
```
javascript
{
"invoice_id"
:
"11855693476003245"
,
"status"
:
"2030"
,
"deliver_mail_no"
:
"sf78946234"
//快递单号
}
```
#### 返回结果
| 参数名|数据类型| 说明 |
|---|:---:|---|
| status | Number | 状态码 |
| msg | String | 提示信息 |
| data | JSON | 返回值 |
#### 示例
```
javascript
{
"status"
:
0
,
"msg"
:
"操作成功"
,
"data"
:
"success"
,
"bizmsg"
:
"empty"
,
"requestid"
:
"f6ed725fb64748c9a95227a7c6052942"
}
```
```
\ No newline at end of file
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