Authored by maelk-liu

Update OfflineS.md

... ... @@ -1079,6 +1079,50 @@ code为200即为成功,否则是失败。
}
```
## 线下店购物车提交接口 ##
#### 说明
线下店购物车提交订单(app.Shopping.offlineSubmit)
#### 请求参数
| 参数名称 | 参数类型 | 可否为空 | 示例 | 默认值 | 备注 |
|:-------| -----:|-----:|-----:|-----:|----:|
|uid|int|否|3236556|0|用户id|
|cart_type|string|否|ordinary|ordinary|购物车类型|
|address_id|int|否|6258152||送货地址id|
|delivery_time|int|否|2||寄送时间类型|
|delivery_way|int|否|1||发货方式(1:普通,2顺丰,99免除运费)|
|invoices_title|string|是|""|""|发票抬头|
|invoices_type|int|是|""|""|发票类型 1纸质发票2电子发票|
|invoice_content|int|是|""|""|开票项:比如 服装,食品等|
|use_yoho_coin|double|是|1.00||使用的yoho币金额,单位元|
|use_red_envelopes|double|是|1.00||使用的红包,单位元|
|payment_id|int|否|15||支付id|
|payment_type|int|否|1||支付类型|
|remark|string|是|""|""|备注|
|coupon_code|string|是|""|""|优惠券码|
|product_sku_list|string|否|""|""|立即购买,优先|
|client_type|string|否|web|iphone|终端|
|receiverMobile|int|否|17798512064||收货人手机号码|
|shopping_key|string|否|Y123456|Y123456|手环编号|
### 响应
code为200即为成功,否则是失败。
响应JSON格式如下所示:
```json
{
"alg": "SALT_MD5",
"code": 200,
"data": {
"create_time": "2016-07-14 15:57:48",//订单创建时间
"order_amount": 1965,//订单金额
"order_code": 1613291832,//订单号
"pay_expire": "2016-07-14 17:57:48",//支付失效时间
"payment_status": 0//0 未支付,1已支付,只有0元订单才为1
},
"md5": "62723a6f81151e880b04a8480df4d2f9",
"message": "offline submit order"
}
```
... ...