简要描述:
- 返回用户发票信息
请求域名:
请求URL:
GET:route=order.rise.get-data
参数:
参数名 | 是否必须 | 类型 | 说明 |
---|---|---|---|
order_id | 是 | int | 订单id |
返回示例:
正确时返回:
{
"result": 1,
"msg": "ok",
"data": {
"call":'小小',
"order_sn": 'SH20170302032407269208',
"invoice_type": 1,
"state": 1,
}
}
错误时返回:
- 未找到数据
{
"result": 0,
"msg": "未找到数据",
"data": [ ]
}
返回参数说明:
参数名 | 类型 | 说明 |
---|---|---|
id | int | 订单 ID |
order_sn | string | 订单号 |
call | string | 发票抬头 |
invoice_type | int | 发票类型(0:电子发票,1:纸质发票) |
state | int | 发票状态(0:未开,1:已开) |