获取订单详情
#### 简要描述:
- 获取订单详情,根据订单id
#### 接口版本:
|版本号|制定人|制定日期|修订日期|
|:---- |:---|:----- |----- |
|1.0.0 |张玉龙 |2020-12-24 |2020-12-24 |
#### 请求URL:
- http://ip:port/semi-api/order/getOrderRecordById
#### 请求方式:
- GET
#### 请求头:
|参数名|是否必须|类型|说明|
|:---- |:---|:----- |----- |
|Content-Type |是 |string |请求类型: application/json |
#### 请求示例:
```json
?id=1000018
```
#### 请求参数:
|参数名|是否必须|类型|说明|
|:---- |:---|:----- |----- |
|id|是 |string |主键 |
#### 返回示例:
**正确时返回:**
```json
{
"msg": "操作成功",
"code": 200,
"data": {
"claimNo": "",
"costPrice": 0,
"count": 1,
"createTime": "2020-12-09 10:10:03",
"dealerCode": "2033814563300001",
"dealerName": "",
"deliveryAddress": "北京市xxx区xxx街道xxx号",
"discountRate": 0,
"id": 1000018,
"logisticsFees": 0,
"logisticsPaymentMethod": "",
"modeDespatch": "快递",
"operatingPersonnel": "user",
"operatorMobile": "13789898882",
"operatorName": "测试经营",
"orderStatus": "101",
"orderType": "101",
"page": 1,
"payNumber": "",
"payStatus": "101",
"productCode": "PW1005",
"productEnglishName": "dianguanghui5",
"productLine": "电光系列5",
"productName": "电光灰灰灰5",
"productNo": "200000424214142",
"productPrice": 0,
"productSpecification": "100*200",
"recordNumber": "2034410482400001",
"rows": 10,
"storageWarehouse": "北京库房",
"trackingNumber": "",
"transactionPrice": 0,
"unitMeasurement": "卷",
"updateTime": "2020-12-09 10:10:03",
"warehouseLocation": ""
}
}
```
**错误时返回:**
```json
{
"msg": "请求失败",
"code": -200,
"data": {}
}
```
#### 返回参数(通用参数)说明:
|参数名|是否必须|类型|说明|
|:---- |:---|:----- |----- |
|code|是 |string | 200 成功 其他失败 |
|msg|是 |string |成功或失败消息内容 |
|data|是 |string | 真实参数 |
#### 返回参数(data)说明:
| 参数名称 | 参数类型 | 示例值 | 备注 |
| ------------ | ------------ | ------------ | ------------ |
|claimNo|string|| 理赔编码|
|costPrice|number|0|产品成本价格 |
|count|number|2|数量 |
|createTime|string|2020-12-09 10:10:46| 创建时间|
|dealerCode|string|2033814563300001|经销商编号 |
|dealerName|string|| 经销商名称|
|deliveryAddress|string|北京市xxx区xxx街道xxx号|收货地址 |
|discountRate|number|0| 折扣率|
|id|number|1000019|主键|
|inventoryId|string|| 库存产品id|
|logisticsFees|number|0|物流费用|
|logisticsPaymentMethod|string||物流支付方式 |
|modeDespatch|string|快递| 方式发货|
|operatingPersonnel|string|user|操作人员 |
|operatorMobile|string|13789898882|经营人电话 |
|operatorName|string|测试经营|经营人姓名 |
|orderStatus|string|102| 订单状态 <br>101:未审批<br>102:未处理(未发货)<br>103:已发货<br>|
|orderType|string|101|订单类型<br> 101 经销商订单 <br>102 内部订购 <br>103 索赔订单 |
|payNumber|string||支付流水号 |
|payStatus|string|101|支付状态 <br>101 未支付 <br>102 支付成功 <br>103 支付失败 <br>104 支付成功已退款 |
|productCode|string|PW1005|产品编码 |
|productEnglishName|string|dianguanghui5|产品英文名 |
|productLine|string|电光系列5|产品系列 |
|productName|string|电光灰灰灰5| 产品名称|
|productNo|string|200000424214142| |产品唯一编码
|productPrice|number|0|产品价格 |
|productSpecification|string|100*200|产品规格 |
|recordNumber|string|2034410979600002| 订单编号|
|storageWarehouse|string|北京库房|发货库房 |
|trackingNumber|string||快递单号 |
|transactionPrice|number|0|成交价格 |
|unitMeasurement|string|卷|产品计量单位 |
|updateTime|string|2020-12-09 10:10:46|更新时间 |
|warehouseLocation|string||库房位置 |