| GET,POST | /problem/HandleProblem | 处理问题件 |
|---|
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| ID | body | int | No | 主键 |
| RouteID | body | string | No | 路线编号 |
| ProblemID | body | string | No | 问题件编号 |
| PrepareID | body | string | No | 路线编号 |
| YBookingNumber | body | string | No | 原商品订单号 |
| NBookingNumber | body | string | No | 新商品订单号 |
| ProblemType | body | string | No | 问题件类型(0:重新下单,没有原订单号 1:重新下单,之前订单作废 2:保留原单,创建新的订单 3:保留原单,修改原单箱数 4:合并订单,绑定新的订单 4:合并订单,绑定新的订单) |
| ProblemNumber | body | int | No | 问题件箱数 |
| ProblemCube | body | float | No | 问题件立方 |
| ProblemWeight | body | float | No | 问题件重量 |
| Remarks | body | string | No | 备注 |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| IsOK | form | bool | Yes | 是否成功 |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| ErrorCode | form | int | Yes | 返回编码,200之外的值都表示有错误 |
| ErrorMsg | form | string | Yes | 返回的消息 |
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /jsv/reply/HandleProblemRequest HTTP/1.1
Host: bookinglogin.hart-worldwide.com
Content-Type: text/jsv
Content-Length: length
{
ID: 0,
RouteID: String,
ProblemID: String,
PrepareID: String,
YBookingNumber: String,
NBookingNumber: String,
ProblemType: String,
ProblemNumber: 0,
ProblemCube: 0,
ProblemWeight: 0,
Remarks: String
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
{
IsOK: False,
ErrorCode: 0,
ErrorMsg: String
}